%PDF- <> %âãÏÓ endobj 2 0 obj <> endobj 3 0 obj <>/ExtGState<>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI] >>/Annots[ 28 0 R 29 0 R] /MediaBox[ 0 0 595.5 842.25] /Contents 4 0 R/Group<>/Tabs/S>> endobj ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY>endobj 2 0 obj<>endobj 2 0 obj<>endobj 2 0 obj<>endobj 2 0 obj<> endobj 2 0 obj<>endobj 2 0 obj<>es 3 0 R>> endobj 2 0 obj<> ox[ 0.000000 0.000000 609.600000 935.600000]/Fi endobj 3 0 obj<> endobj 7 1 obj<>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI]>>/Subtype/Form>> stream
<?php
/**
* @package yii2-grid
* @author Kartik Visweswaran <kartikv2@gmail.com>
* @copyright Copyright © Kartik Visweswaran, Krajee.com, 2014 - 2023
* @version 3.5.1
*/
namespace kartik\grid;
/**
* This module allows global level configurations for the enhanced Krajee [[GridView]].
*
* Setup the module in your Yii configuration file with a name `gridview` as shown below. Refer the
* [yii2-grid documentation](http://demos.krajee.com/grid#module) for details on the gridview module
* configuration parameters supported.
*
* ```php
* 'modules' => [
* 'gridview' => [
* 'class' => 'kartik\grid\Module',
* 'downloadAction' => '/gridview/export/download' // your grid export download setting
* ]
* ]
* ```
*
* @author Kartik Visweswaran <kartikv2@gmail.com>
* @since 1.0
*/
class Module extends \kartik\base\Module
{
/**
* The module name for Krajee gridview
*/
const MODULE = "gridview";
/**
* @var string a random salt that will be used to generate a hash string for export configuration.
*/
public $exportEncryptSalt = 'SET_A_SALT_FOR_YII2_GRID';
/**
* @var string|array the action (url) used for downloading exported file
*/
public $downloadAction;
/**
* @inheritdoc
*/
protected $_msgCat = 'kvgrid';
}