Example #1
2
 public function run()
 {
     $id = Yii::app()->request->getParam('id');
     $type = Yii::app()->request->getParam('type');
     $userId = Yii::app()->request->getParam('userId');
     $hub = Yii::app()->request->getParam('hub');
     $startTime = Yii::app()->request->getParam('startTime');
     $endTime = Yii::app()->request->getParam('endTime');
     $room = Yii::app()->request->getParam('room');
     $data = array('type' => $type, 'userId' => $userId, 'hubId' => $hub, 'startTime' => $startTime, 'endTime' => $endTime, 'conferenceroomId' => $room);
     $proxy = new BReservation();
     $dc = new BConference();
     $dp = new BHub();
     if (Yii::app()->request->isAjaxRequest) {
         $result = $proxy->updateReservation($data, $id);
         echo CJSON::encode($result);
     } else {
         $result = $proxy->getReservationInfo($id);
         $hub = $dp->getHubList($start, 10);
         $room = $dc->getRoomList($start, 10);
         if ($result['code'] == 200) {
             $this->controller->render('edit', array('data' => $result['data'], 'hub' => $hub['data'], 'room' => $room['data']));
         } else {
             throw new CHttpException($result['code'], $result['message']);
         }
     }
 }
Example #2
0
 public function run()
 {
     $id = Yii::app()->request->getParam('id');
     $name = Yii::app()->request->getParam('name');
     $email = Yii::app()->request->getParam('email');
     $phone = Yii::app()->request->getParam('phone');
     $website = Yii::app()->request->getParam('website');
     $logo = Yii::app()->request->getParam('logo');
     $background = Yii::app()->request->getParam('background');
     $location = Yii::app()->request->getParam('location');
     $hub = Yii::app()->request->getParam('hub');
     $service = Yii::app()->request->getParam('service');
     $facebook = Yii::app()->request->getParam('facebook');
     $linkedin = Yii::app()->request->getParam('linkedin');
     $introduction = Yii::app()->request->getParam('content');
     $data = array('name' => $name, 'email' => $email, 'phone' => $phone, 'website' => $website, 'logo' => $logo, 'background' => $background, 'location' => $location, 'hubId' => $hub, 'serviceid' => $service, 'facebookid' => $facebook, 'linkedinid' => $linkedin, 'introduction' => $introduction);
     $proxy = new BCompany();
     $dp = new BHub();
     $dc = Service::model()->findAll('status!=0');
     if (Yii::app()->request->isAjaxRequest) {
         $result = $proxy->updateCompany($data, $id);
         echo CJSON::encode($result);
     } else {
         $result = $proxy->getCompanyInfo($id);
         $hub = $dp->getHubList($start, 10);
         if ($result['code'] == 200) {
             $this->controller->render('edit', array('data' => $result['data'], 'hub' => $hub['data'], 'service' => $dc));
         } else {
             throw new CHttpException($result['code'], $result['message']);
         }
     }
 }
Example #3
0
 public function run()
 {
     $start = Yii::app()->request->getParam('start');
     $dp = new BHub();
     $dc = Service::model()->findAll('status!=0');
     $hub = $dp->getHubList($start, 10);
     $this->controller->render('edit', array('hub' => $hub['data'], 'service' => $dc));
 }
Example #4
0
 public function run()
 {
     $start = Yii::app()->request->getParam('start');
     $proxy = new BConference();
     $dp = new BHub();
     $result = $proxy->getRoomList($start, 10);
     $hub = $dp->getHubList($start, 10);
     $this->controller->render('edit', array('room' => $result['data'], 'hub' => $hub['data']));
 }