Example #1
0
 public function validateStructID($attribute, $params)
 {
     $tree = Yii::$app->settings->get('staff.tree');
     $struct = Structure::find()->where(['id' => $this->{$attribute}, 'tree' => $tree])->one();
     if ($struct) {
         $this->orgid = $struct->tree;
     } else {
         $this->addError('structid', Module::t('staff', 'Structure not found'));
     }
 }
Example #2
0
 /**
  * Finds the Structure model based on its primary key value.
  * If the model is not found, a 404 HTTP exception will be thrown.
  * @param integer $id
  * @return Structure the loaded model
  * @throws NotFoundHttpException if the model cannot be found
  */
 protected function findModel($id)
 {
     if (($model = Structure::findOne($id)) !== null) {
         return $model;
     } else {
         throw new NotFoundHttpException('The requested page does not exist.');
     }
 }
Example #3
0
 /**
  * Finds the Structure model based on its primary key value.
  * If the model is not found, a 404 HTTP exception will be thrown.
  * @param integer $id
  * @return Structure the loaded model
  * @throws NotFoundHttpException if the model cannot be found
  */
 protected function findStructure($id)
 {
     if (($model = Structure::findOne($id)) !== null) {
         if ($model->tree == Yii::$app->settings->get('staff.tree')) {
             return $model;
         }
     }
     throw new NotFoundHttpException('The requested page does not exist.');
 }