PHP code example of pentium10 / yii-remember-filters-gridview
1. Go to this page and download the library: Download pentium10/yii-remember-filters-gridview library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
pentium10 / yii-remember-filters-gridview example snippets
public function behaviors() {
return array(
'ERememberFiltersBehavior' => array(
'class' => 'application.components.ERememberFiltersBehavior',
'defaults'=>array(), /* optional line */
'defaultStickOnClear'=>false /* optional line */
),
);
}
public function actionAdmin()
{
$model=new Company('search');
$model->unsetAttributes(); // clear any default values
if(isset($_GET['Company']))
$model->attributes=$_GET['Company'];
$this->render('admin',array(
'model'=>$model,
));
}
public function actionAdmin()
{
$model=new Company('search');
$this->render('admin',array(
'model'=>$model,
));
}
public function actionAdmin()
{
$model=new Company('search');
$model->setRememberScenario('scene1');
$this->render('admin',array(
'model'=>$model,
));
}