Пример #1
0
 public function getTables()
 {
     $this->autoRender = FALSE;
     $restId = parent::readCookie('cri');
     if (isset($restId) and $this->request->is('ajax')) {
         Log::debug('Ajax request hited for tables of restaurantId :-' . $restId);
         $rtableController = new RTablesController();
         $restaurantTables = $rtableController->getRtables($restId);
         $this->response->body(json_encode($restaurantTables));
     }
 }