public function actionLog($id = null) { $request = new LogmanRequests(); foreach (Yii::$app->request->post() as $id => $data) { if ($id != 'data' && $id != 'source') { $request->{$id} = $data; } } $request->save(); $tag = Yii::$app->request->post('tag'); switch (Yii::$app->request->post('source')) { case 0: $this->logTrace($tag); break; case 1: $this->logException($tag); break; } }
/** * Creates data provider instance with search query applied * * @param array $params * * @return ActiveDataProvider */ public function search($params) { $query = LogmanRequests::find(); // add conditions that should always apply here $dataProvider = new ActiveDataProvider(['query' => $query]); $this->load($params); if (!$this->validate()) { // uncomment the following line if you do not want to return any records when validation fails // $query->where('0=1'); return $dataProvider; } // grid filtering conditions $query->andFilterWhere(['id' => $this->id, 'time' => $this->time, 'status' => $this->status, 'user_id' => $this->user_id]); $query->andFilterWhere(['like', 'tag', $this->tag])->andFilterWhere(['like', 'url', $this->url])->andFilterWhere(['like', 'site', $this->site])->andFilterWhere(['like', 'method', $this->method])->andFilterWhere(['like', 'user_ip', $this->user_ip]); return $dataProvider; }
/** * @return \yii\db\ActiveQuery */ public function getRequestTag() { return $this->hasOne(LogmanRequests::className(), ['tag' => 'request_tag']); }
/** * Finds the LogmanRequests model based on its primary key value. * If the model is not found, a 404 HTTP exception will be thrown. * @param integer $id * @return LogmanRequests the loaded model * @throws NotFoundHttpException if the model cannot be found */ protected function findModel($id) { if (($model = LogmanRequests::findOne($id)) !== null) { return $model; } else { throw new NotFoundHttpException('The requested page does not exist.'); } }