Update API

This commit is contained in:
Hoang Huu 2019-10-02 14:36:24 +07:00
parent 916f3709a7
commit 79165222ac

@ -271,7 +271,18 @@ class Property_Api extends Base_Api {
$data = opalesetate_property( $property_info->ID );
$gallery = $data->get_gallery();
$gallery_count = $data->get_gallery_count();
$property['info']['gallery'] = $gallery_count ? $gallery : [];
$gallery_data = [];
if ( $gallery_count ) {
foreach ( $gallery as $id => $url ) {
$gallery_data[] = [
'id' => $id,
'url' => $url,
];
}
}
$property['info']['gallery'] = $gallery_data;
$property['info']['price'] = opalestate_price_format( $data->get_price() );
$property['info']['map'] = $data->get_map();
$property['info']['address'] = $data->get_address();