Exemple #1
0
 public function add($post)
 {
     $model = new Letters();
     $model->setAttributes($post);
     if (isset($post['signed_recieve'])) {
         $model->signed_recieve = strtotime($post['signed_recieve']);
     }
     if (isset($post['signed_date'])) {
         $model->signed_date = strtotime($post['signed_date']);
     }
     if ($model->save(FALSE)) {
         return TRUE;
     }
     return FALSE;
 }
	/**
	 * Creates a new model.
	 * If creation is successful, the browser will be redirected to the 'view' page.
	 */
	public function actionCreate()
	{
		$model=new Letters;

		// Uncomment the following line if AJAX validation is needed
		// $this->performAjaxValidation($model);

		if(isset($_POST['Letters']))
		{
			$model->attributes=$_POST['Letters'];
			if($model->save())
				$this->redirect(array('view','id'=>$model->id));
		}

		$this->render('create',array(
			'model'=>$model,
		));
	}