Пример #1
0
 private function logException($tag)
 {
     $data = Yii::$app->request->post('data');
     $ex = new LogmanExceptions();
     $ex->tag = $tag;
     $ex->class = $data['class'];
     $ex->error_group = $data['error_group'];
     $ex->line_number = $data['line_number'];
     $ex->file_name = $data['file_name'];
     $ex->message = $data['message'];
     $ex->stack_trace = $data['stack_trace'];
     $ex->save();
 }
 /**
  * Creates data provider instance with search query applied
  *
  * @param array $params
  *
  * @return ActiveDataProvider
  */
 public function search($params)
 {
     $query = LogmanExceptions::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, 'line_number' => $this->line_number]);
     $query->andFilterWhere(['like', 'tag', $this->tag])->andFilterWhere(['like', 'class', $this->class])->andFilterWhere(['like', 'error_group', $this->error_group])->andFilterWhere(['like', 'file_name', $this->file_name])->andFilterWhere(['like', 'message', $this->message]);
     return $dataProvider;
 }
Пример #3
0
 /**
  * Finds the LogmanExceptions model based on its primary key value.
  * If the model is not found, a 404 HTTP exception will be thrown.
  * @param integer $id
  * @return LogmanExceptions the loaded model
  * @throws NotFoundHttpException if the model cannot be found
  */
 protected function findModel($id)
 {
     if (($model = LogmanExceptions::findOne($id)) !== null) {
         return $model;
     } else {
         throw new NotFoundHttpException('The requested page does not exist.');
     }
 }