Skip to content

Instantly share code, notes, and snippets.

@calcio
Last active May 22, 2021 18:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save calcio/845f80e1d0eb94bdf469bb0cf145e96d to your computer and use it in GitHub Desktop.
Save calcio/845f80e1d0eb94bdf469bb0cf145e96d to your computer and use it in GitHub Desktop.
vitrine\modules\admin\models\UserSearch.php
<?php
namespace app\modules\admin\models;
use Yii;
use yii\base\Model;
use yii\data\ActiveDataProvider;
use app\modules\admin\models\User;
/**
* UserSearch represents the model behind the search form about `app\modules\admin\models\User`.
*/
class UserSearch extends User
{
/**
* @inheritdoc
*/
public function rules()
{
return [
[['id', 'status', 'created_at', 'updated_at'], 'integer'],
[['username', 'authKey', 'passwordHash', 'passwordResetToken', 'email'], '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 = User::find();
// add conditions that should always apply here
$dataProvider = new ActiveDataProvider([
'query' => $query,
'pagination' => [
'pageSize' => 150,
]
]);
$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,
'status' => $this->status,
//faz tratamento nos atributos, transformando de Timestamp para o tipo date
'FROM_UNIXTIME(created_at, \'%d/%m/%Y\')' => $this->created_at,
'FROM_UNIXTIME(updated_at, \'%d/%m/%Y\')' => $this->updated_at
]);
$query->andFilterWhere(['like', 'username', $this->username]);
return $dataProvider;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment