コード例 #1
0
ファイル: AdminController.php プロジェクト: anton-itscript/WM
 public function actionForwardList()
 {
     $model = new MessageForwardingInfoForTcpServer(false, 'search');
     $model->unsetAttributes();
     // clear any default values
     $createModel = new MessageForwardingInfoForTcpServer(false, 'create');
     if (isset($_POST['MessageForwardingInfoForTcpServer'])) {
         $createModel->attributes = $_POST['MessageForwardingInfoForTcpServer'];
         if ($createModel->save()) {
             $this->redirect(array('admin/ForwardList'));
         }
     }
     $this->render('message_forwarding_list', array('model' => $model, 'createModel' => $createModel));
 }