data\Pagination getPageSize()

getPageSize() public method Returns the number of items per page. By default, this method will try to determine the page size by $pageSizeParam in $params. If the page size cannot be determined this way, $defaultPageSize will be returned. See also $pageSizeLimit. public integer getPageSize ( )return integer The number of items per page. If it is less than 1, it means the page size is infinite, and thus a single page contains all items.

i18n\PhpMessageSource $fileMap

$fileMap public property Mapping between message categories and the corresponding message file paths. The file paths are relative to $basePath. For example, [ 'core' => 'core.php', 'ext' => 'extensions.php', ] public array $fileMap = null

helpers\BaseFileHelper getMimeTypeByExtension()

getMimeTypeByExtension() public static method Determines the MIME type based on the extension name of the specified file. This method will use a local map between extension names and MIME types. public static string getMimeTypeByExtension ( $file, $magicFile = null )$file string The file name. $magicFile string The path (or alias) of the file that contains all available MIME type information. If this is not set, the file specified by $mimeMagicFile will be used. return string The MIM

gii\generators\model\Generator generateClassName()

generateClassName() protected method Generates a class name from the specified table name. protected string generateClassName ( $tableName, $useSchemaName = null )$tableName string The table name (which may contain schema prefix) $useSchemaName boolean Should schema name be included in the class name, if present return string The generated class name

mongodb\QueryBuilder dropIndexes()

dropIndexes() public method Generates drop indexes command. public array dropIndexes ( $collectionName, $index )$collectionName string Collection name $index string Index name or pattern, use * in order to drop all indexes. return array Command document.

gii\generators\model\Generator $queryNs

$queryNs public property public $queryNs = 'app\models'

sphinx\gii\model\Generator $indexName

$indexName public property public $indexName = null

web\Request setBodyParams()

setBodyParams() public method Sets the request body parameters. See also: getBodyParam() getBodyParams() public void setBodyParams ( $values )$values array The request body parameters (name-value pairs)

db\sqlite\QueryBuilder $typeMap

$typeMap public property Mapping from abstract column types (keys) to physical column types (values). public array $typeMap = [\yii\db\sqlite\Schema::TYPE_PK => 'integer PRIMARY KEY AUTOINCREMENT NOT NULL', \yii\db\sqlite\Schema::TYPE_UPK => 'integer UNSIGNED PRIMARY KEY AUTOINCREMENT NOT NULL', \yii\db\sqlite\Schema::TYPE_BIGPK => 'integer PRIMARY KEY AUTOINCREMENT NOT NULL', \yii\db\sqlite\Schema::TYPE_UBIGPK => 'integer UNSIGNED PRIMARY KEY AUTOINCREMENT NOT NULL', \yii\db\s

elasticsearch\Query postFilter()

postFilter() public method (available since version 2.0.5) Set the post_filter part of the search query. See also $postFilter. public $this postFilter ( $filter )$filter string|array return $this The query object itself