示例#1
0
 public static function create($name, $data)
 {
     $model = new SmsTemplates();
     $model->name = $name;
     $model->attributes = $data;
     return $model->save();
 }
 /**
  * Creates a new model.
  * If creation is successful, the browser will be redirected to the 'view' page.
  */
 public function actionCreate()
 {
     $model = new SmsTemplates();
     $model->created_by = Yii::app()->user->id;
     $model->created_at = date('Y-m-d H:i:s');
     // Uncomment the following line if AJAX validation is needed
     // $this->performAjaxValidation($model);
     if (isset($_POST['SmsTemplates'])) {
         $model->attributes = $_POST['SmsTemplates'];
         if ($model->save()) {
             $this->redirect(array('index'));
         }
     }
     $this->render('create', array('model' => $model));
 }