| Current Path : /home/users/unlimited/www/facebook.codeskitter.site/api/v2/endpoints/ |
| Current File : /home/users/unlimited/www/facebook.codeskitter.site/api/v2/endpoints/get-products.php |
<?php
// +------------------------------------------------------------------------+
// | @author Deen Doughouz (DoughouzForest)
// | @author_url 1: http://www.wowonder.com
// | @author_url 2: http://codecanyon.net/user/doughouzforest
// | @author_email: wowondersocial@gmail.com
// +------------------------------------------------------------------------+
// | WoWonder - The Ultimate Social Networking Platform
// | Copyright (c) 2018 WoWonder. All rights reserved.
// +------------------------------------------------------------------------+
$products = array();
$options['limit'] = (!empty($_POST['limit'])) ? (int) $_POST['limit'] : 35;
$options['user_id'] = (!empty($_POST['user_id'])) ? (int) $_POST['user_id'] : 0;
$options['after_id'] = (!empty($_POST['offset'])) ? (int) $_POST['offset'] : 0;
$options['c_id'] = (!empty($_POST['category_id'])) ? (int) $_POST['category_id'] : 0;
$options['keyword'] = (!empty($_POST['keyword'])) ? $_POST['keyword'] : '';
$options['length'] = (!empty($_POST['distance'])) ? $_POST['distance'] : '';
$get_products = Wo_GetProducts($options);
foreach ($get_products as $key => $product) {
foreach ($non_allowed as $key => $value) {
unset($product['seller'][$value]);
}
if (!empty($product['post_id']) && !empty($product['images'])) {
$products[] = $product;
}
}
$response_data = array(
'api_status' => 200,
'products' => $products
);