UPGRADE NOTE: Do not edit or add to this file if you wish to upgrade AbanteCart to newer versions in the future. If you wish to customize AbanteCart for your needs please refer to http://www.AbanteCart.com for more information. ------------------------------------------------------------------------------*/ if (! defined ( 'DIR_CORE' ) || !IS_ADMIN) { header ( 'Location: static_pages/' ); } class ControllerResponsesReviewCategory extends AController { private $error = array(); public function main() { //init controller data $this->extensions->hk_InitData($this,__FUNCTION__); $this->loadModel('catalog/product'); if (isset($this->request->get['category_id'])) { $category_id = $this->request->get['category_id']; } else { $category_id = 0; } $product_data = array(); $results = $this->model_catalog_product->getProductsByCategoryId($category_id); if ($results) { foreach ($results as $result) { $product_data[] = array( 'product_id' => $result['product_id'], 'name' => $result['name'] ); } } else { $product_data[] = array( 'product_id' => 0, 'name' => $this->language->get('text_none') ); } //update controller data $this->extensions->hk_UpdateData($this,__FUNCTION__); $this->load->library('json'); $this->response->setOutput(AJson::encode($product_data)); } }