Update search-form.php
This commit is contained in:
parent
6b3ad0b627
commit
18fe40583e
@ -135,7 +135,18 @@ class Opalestate_Search_Form_Api extends Opalestate_Base_API {
|
|||||||
'data' => Opalestate_Taxonomy_Amenities::get_list(),
|
'data' => Opalestate_Taxonomy_Amenities::get_list(),
|
||||||
];
|
];
|
||||||
|
|
||||||
$fields['info'] = OpalEstate_Search::get_setting_search_fields();
|
$info_fields = OpalEstate_Search::get_setting_search_fields();
|
||||||
|
$info = [];
|
||||||
|
if ( $info_fields ) {
|
||||||
|
foreach ( $info_fields as $field_key => $field_name ) {
|
||||||
|
$info[] = [
|
||||||
|
'key' => $field_key,
|
||||||
|
'name' => $field_name,
|
||||||
|
];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
$fields['info'] = $info;
|
||||||
$response['fields'] = $fields;
|
$response['fields'] = $fields;
|
||||||
|
|
||||||
return $this->get_response( 200, $response );
|
return $this->get_response( 200, $response );
|
||||||
|
Loading…
Reference in New Issue
Block a user