public static function getInstance()
 {
     if (!is_object(self::$_instance)) {
         //or if( is_null(self::$_instance) ) or if( self::$_instance == null )
         self::$_instance = new Admin_Model_FamousCuisines();
     }
     return self::$_instance;
 }
 public function productAjaxHandlerAction()
 {
     $this->_helper->layout()->disableLayout();
     $this->_helper->viewRenderer->setNoRender(true);
     $productsModel = Admin_Model_Products::getInstance();
     $hotelModel = Admin_Model_HotelDetails::getInstance();
     $catModel = Admin_Model_MenuCategory::getInstance();
     $CuisinesModel = Admin_Model_FamousCuisines::getInstance();
     if ($this->getRequest()->isPost()) {
         $method = $this->getRequest()->getParam('method');
         switch ($method) {
             case 'productstatuschange':
                 $productid = $this->getRequest()->getParam('productid');
                 $result = $productsModel->changeProductStatus($productid);
                 if ($result) {
                     echo $productid;
                     die;
                 } else {
                     echo "error";
                 }
                 break;
             case 'productdelete':
                 $productid = $this->getRequest()->getParam('productid');
                 $result = $productsModel->productDelete($productid);
                 if ($result) {
                     echo $result;
                 } else {
                     echo "error";
                 }
                 break;
             case 'getcuisines':
                 $val = $this->getRequest()->getParam('typevalue');
                 if ($val == 2) {
                     $result = $CuisinesModel->getCuisines();
                     if ($result) {
                         $arr['code'] = 200;
                         $arr['data'] = $result;
                         echo json_encode($arr, true);
                     } else {
                         $arr['code'] = 197;
                         $arr['data'] = null;
                         echo json_encode($arr, true);
                     }
                 } else {
                     $arr['code'] = 198;
                     $arr['message'] = 'param not passed';
                     echo json_encode($arr, true);
                 }
                 break;
             case 'getcategories':
                 $val = $this->getRequest()->getParam('typevalue');
                 if ($val == 1) {
                     $result = $catModel->selectAllCategorys();
                     if ($result) {
                         $arr['code'] = 200;
                         $arr['data'] = $result;
                         echo json_encode($arr, true);
                         die;
                     } else {
                         $arr['code'] = 197;
                         $arr['data'] = null;
                         echo json_encode($arr, true);
                         die;
                     }
                 } else {
                     $arr['code'] = 198;
                     $arr['message'] = 'param not passed';
                     echo json_encode($arr, true);
                     die;
                 }
                 break;
             case 'hotelsbasedonagent':
                 $hotelid = $this->getRequest()->getParam('hotel_id');
                 $result = $hotelModel->getAllHotelsBasedOnAgent($hotelid);
                 if ($result) {
                     $arr['code'] = 200;
                     $arr['data'] = $result;
                     echo json_encode($arr, true);
                 } else {
                     $arr['code'] = 197;
                     $arr['data'] = null;
                     echo json_encode($arr, true);
                 }
                 break;
         }
     }
 }
 public function dashboardAction()
 {
     $adminModel = Admin_Model_Users::getInstance();
     $result = $adminModel->getAdminDetails();
     // showing image
     if ($result) {
         $this->view->admindetails = $result;
     }
     $userModel = Admin_Model_Users::getInstance();
     $result = $userModel->getUserdetails();
     if ($result) {
         $this->view->userdetails = count($result);
     }
     $usertransactionModel = Admin_Model_UserTransactions::getInstance();
     $result1 = $usertransactionModel->getAllUsertransaction();
     if ($result1) {
         $this->view->usertransaction = count($result1);
     }
     $ordersModel = Admin_Model_Orders::getInstance();
     $result2 = $ordersModel->getAllHotelOrder();
     if ($result2) {
         $this->view->orderdetails = count($result2);
     }
     $ordersModel1 = Admin_Model_Orders::getInstance();
     $result21 = $ordersModel->getAllStoreOrder();
     if ($result21) {
         $this->view->storeorderdetails = count($result21);
     }
     $productsModel = Admin_Model_Products::getInstance();
     $result3 = $productsModel->getProductsdetails();
     if ($result3) {
         $this->view->productsdetails = count($result3);
     }
     $productsModel1 = Admin_Model_Products::getInstance();
     $result31 = $productsModel1->getAllStoreProductdetails();
     if ($result31) {
         $this->view->productsdetails = count($result31);
     }
     $agentsModel = Admin_Model_Agents::getInstance();
     $result4 = $agentsModel->getAgentsDetails();
     if ($result4) {
         $this->view->agentsdetails = count($result4);
     }
     $storeDetailsModel = Admin_Model_StoreDetails::getInstance();
     $result5 = $storeDetailsModel->getAllStore();
     if ($result5) {
         $this->view->storedetails = count($result5);
     }
     $hotelDetailsModel = Admin_Model_HotelDetails::getInstance();
     $result6 = $hotelDetailsModel->getAllHotels();
     if ($result6) {
         $this->view->hoteldetails = count($result6);
     }
     $agenttransactionModel = Admin_Model_AgentTransactions::getInstance();
     $result7 = $agenttransactionModel->getAllAgenttransaction();
     if ($result7) {
         $this->view->agenttransaction = count($result7);
     }
     $producttransactionModel = Admin_Model_ProductTransactions::getInstance();
     $result8 = $producttransactionModel->getAllProducttransaction();
     if ($result8) {
         $this->view->producttransaction = count($result8);
     }
     $storeCategoryDetailsModel = Admin_Model_StoreCategory::getInstance();
     $result9 = $storeCategoryDetailsModel->selectAllCategorys();
     if ($result9) {
         $this->view->storecategorydetails = count($result9);
     }
     $DeliveryGuysModel = Admin_Model_DeliveryGuys::getInstance();
     $result10 = $DeliveryGuysModel->getAllDeliveryGuys();
     if ($result10) {
         $this->view->DeliveryGuys = count($result10);
     }
     $NotificationModel = Admin_Model_Notification::getInstance();
     $result11 = $NotificationModel->getNotificationDetail();
     if ($result11) {
         $this->view->Notification = count($result11);
     }
     $ReviewsModel = Admin_Model_Reviews::getInstance();
     $result12 = $ReviewsModel->getAllHotelReviews();
     if ($result12) {
         $this->view->HotelReviews = count($result12);
     }
     $ReviewModel = Admin_Model_Reviews::getInstance();
     $result13 = $ReviewModel->getAllStoreReviews();
     if ($result13) {
         $this->view->StoreReviews = count($result13);
     }
     $locationsModel1 = Admin_Model_Location::getInstance();
     $result14 = $locationsModel1->getCountrys();
     if ($result14) {
         $this->view->CountryDetails = count($result14);
     }
     $locationsModel2 = Admin_Model_Location::getInstance();
     $result15 = $locationsModel2->getStates();
     if ($result15) {
         $this->view->StateDetails = count($result15);
     }
     $locationsModel3 = Admin_Model_Location::getInstance();
     $result16 = $locationsModel3->getCitys();
     if ($result16) {
         $this->view->CityDetails = count($result16);
     }
     $locationsModel4 = Admin_Model_Location::getInstance();
     $result17 = $locationsModel4->getLocations();
     if ($result17) {
         $this->view->LocationDetails = count($result17);
     }
     $cuisinesModel = Admin_Model_FamousCuisines::getInstance();
     $result18 = $cuisinesModel->getCuisines();
     if ($result18) {
         $this->view->CuisineDetails = count($result18);
     }
     $categoryModel = Admin_Model_MenuCategory::getInstance();
     $result19 = $categoryModel->selectAllCategorys();
     if ($result19) {
         $this->view->CategoryDetails = count($result19);
     }
     $objModelCoupons = Admin_Model_Coupons::getInstance();
     $allCoupons = $objModelCoupons->getCoupons();
     if ($allCoupons) {
         $this->view->allcoupons = count($allCoupons);
     }
     $objModelCouponUsers = Admin_Model_CouponUsers::getInstance();
     $couponsLog = $objModelCouponUsers->getCouponsLog();
     if ($couponsLog) {
         $this->view->couponsLog = count($couponsLog);
     }
 }
 public function editCuisinesAction()
 {
     $this->_helper->layout()->disableLayout();
     $this->_helper->viewRenderer->setNoRender(true);
     $cuisinesModel = Admin_Model_FamousCuisines::getInstance();
     if ($this->getRequest()->isPost()) {
         $data['Cuisine_name'] = $this->getRequest()->getPost('cuisine');
         $cuisine_id = $this->getRequest()->getPost('cuisine_id');
         $Cuisine_name = $this->getRequest()->getPost('cuisinebtn');
         if ($cuisine_id) {
             $result = $cuisinesModel->updateCuisines($data, $cuisine_id);
             if ($Cuisine_name == 'cuisine') {
                 if ($result) {
                     $this->redirect('/admin/cuisines-details');
                 } else {
                     $this->redirect('/admin/cuisines-details');
                 }
             }
         }
     }
 }