Esempio n. 1
0
 public function init()
 {
     set_time_limit(0);
     $config = ApiVisitorConfig::cache(1);
     foreach ($config as $k => $v) {
         if (!$v['range']) {
             $this->config[$k] = $v;
         }
     }
     parent::init();
 }
Esempio n. 2
0
 public function init()
 {
     set_time_limit(0);
     $config = ApiVisitorConfig::cache(1);
     //只要月更新的配置
     $this->config = [];
     foreach ($config as $k => $v) {
         if ($v['range']) {
             $this->config[$v['type']] = $v;
         }
     }
     parent::init();
 }
 /**
  * Creates data provider instance with search query applied
  *
  * @param array $params
  *
  * @return ActiveDataProvider
  */
 public function search($params)
 {
     $query = ApiVisitorConfig::find();
     $dataProvider = new ActiveDataProvider(['query' => $query, 'pagination' => ['pageSize' => 15]]);
     $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;
     }
     $query->andFilterWhere(['id' => $this->id, 'type' => $this->type, 'limit' => $this->limit, 'time' => $this->time, 'from' => $this->from, 'to' => $this->to, 'range' => $this->range]);
     $query->andFilterWhere(['like', 'name', $this->name])->andFilterWhere(['like', 'where', $this->where])->andFilterWhere(['like', 'order', $this->order])->andFilterWhere(['like', 'url', $this->url]);
     return $dataProvider;
 }
 /**
  * Finds the ApiVisitorConfig model based on its primary key value.
  * If the model is not found, a 404 HTTP exception will be thrown.
  * @param string $id
  * @return ApiVisitorConfig the loaded model
  * @throws NotFoundHttpException if the model cannot be found
  */
 protected function findModel($id)
 {
     if (($model = ApiVisitorConfig::findOne($id)) !== null) {
         return $model;
     } else {
         throw new NotFoundHttpException('The requested page does not exist.');
     }
 }