function get_dropdown_array($object, $label_field = 'name') { $ret = array(); foreach($object as $o) { $ret[$o->id] = $o->{$label_field}; } return $ret; }