document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. public function actionCreate()
  2. {
  3.     $model=new Page;
  4.     if(isset($_POST[\'Page\']))
  5.     {
  6.         $model->attributes=$_POST[\'Page\'];
  7.         if($model->save())
  8.         {
  9.             $this->redirect(array(\'view\',\'title\'=>$model->title));
  10.         }
  11.     }
  12.  
  13.     $this->render(\'create\',array(
  14.         \'model\'=>$model,
  15.     ));
  16. }
');