/** * Creates a new Structure model. * If creation is successful, the browser will be redirected to the 'view' page. * @return mixed */ public function actionStaffcreate() { $model = new Staff(); if ($model->load(Yii::$app->request->post()) && $model->save()) { return $this->redirect(['staffview', 'id' => $model->id]); } else { return $this->render('staffcreate', ['model' => $model]); } }
/** * Finds the Staff model based on its primary key value. * If the model is not found, a 404 HTTP exception will be thrown. * @param integer $id * @return Staff the loaded model * @throws NotFoundHttpException if the model cannot be found */ protected function findModel($id) { if (($model = Staff::findOne($id)) !== null) { return $model; } else { throw new NotFoundHttpException('The requested page does not exist.'); } }
/** * 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 findStaff($id) { if (($model = Staff::findOne($id)) !== null) { if ($model->orgid == Yii::$app->settings->get('staff.tree')) { return $model; } } throw new NotFoundHttpException('The requested page does not exist.'); }
/** * Displays a single Structure model. * @param integer $id * @return mixed */ public function actionView($id) { $model = $this->findModel($id); $staff = new ActiveDataProvider(['query' => Staff::find()->where(['structid' => $model->id])->orderBy(['ind' => 'ASC'])]); return $this->render('view', ['staff' => $staff, 'model' => $model]); }