Your IP : 216.73.216.79


Current Path : /var/www/html/helpdesk/models/
Upload File :
Current File : /var/www/html/helpdesk/models/LogSearch.php

<?php

namespace app\models;

use yii\base\Model;
use yii\data\ActiveDataProvider;
use app\models\Log;

/**
 * LogSearch represents the model behind the search form of `app\models\Log`.
 */
class LogSearch extends Log {

    /**
     * {@inheritdoc}
     */
    public function rules() {
        return [
            [['id', 'user_id', 'menu_id'], 'integer'],
            [['action_type', 'data_uuid', 'action_datetime'], 'safe'],
        ];
    }

    /**
     * {@inheritdoc}
     */
    public function scenarios() {
        // bypass scenarios() implementation in the parent class
        return Model::scenarios();
    }

    /**
     * Creates data provider instance with search query applied
     *
     * @param array $params
     *
     * @return ActiveDataProvider
     */
    public function search($params) {
        $query = Log::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,
            'user_id' => $this->user_id,
            'menu_id' => $this->menu_id,
            'action_datetime' => $this->action_datetime,
        ]);

        $query->andFilterWhere(['like', 'action_type', $this->action_type])
                ->andFilterWhere(['like', 'data_uuid', $this->data_uuid]);

        return $dataProvider;
    }

    public function log($params) {
        $query = Log::find();

        // add conditions that should always apply here
        $dataProvider = new ActiveDataProvider(['query' => $query, 'pagination' => ['pageSize' => 20,]]);
        $dataProvider->setSort(['defaultOrder' => ['action_datetime' => SORT_DESC]]);

        $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([
            'menu_id' => $this->menu_id,
            'data_uuid' => $this->data_uuid,
        ]);

        return $dataProvider;
    }

}