本文整理汇总了PHP中lukisongroup\hrd\models\Employe::validate方法的典型用法代码示例。如果您正苦于以下问题:PHP Employe::validate方法的具体用法?PHP Employe::validate怎么用?PHP Employe::validate使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类lukisongroup\hrd\models\Employe
的用法示例。
在下文中一共展示了Employe::validate方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: actionCreate
/**
* ACTION CREATE note | $id=PrimaryKey -> TRIGER FROM VIEW -ptr.nov-
*/
public function actionCreate()
{
$model = new Employe();
if ($model->load(Yii::$app->request->post())) {
$upload_file = $model->uploadImage();
$data_base64 = $upload_file != '' ? $this->saveimage(file_get_contents($upload_file->tempName)) : '';
//call function saveimage using base64
$model->IMG_BASE64 = $data_base64;
// var_dump($model->validate());
if ($model->validate()) {
if ($model->save()) {
$model->CREATED_BY = Yii::$app->user->identity->username;
$model->save();
if ($upload_file !== false) {
$path = $model->getUploadedFile();
$upload_file->saveAs($path);
}
// print_r($model->save());
// die();
//return $this->redirect(['view', 'id' => $model->EMP_ID]);
return $this->redirect(['index', 'id' => $model->EMP_ID]);
}
}
} else {
//$js='$("#create-emp").modal("show")';
//$this->getView()->registerJs($js);
//return $this->render('create', [
//return $this->renderAjax('create', [
return $this->renderAjax('_form', ['model' => $model]);
}
}