web\Request setQueryParams()

setQueryParams() public method Sets the request $queryString parameters. See also: getQueryParam() getQueryParams() public void setQueryParams ( $values )$values array The request query parameters (name-value pairs)

smarty\ViewRenderer __call()

__call() public method Mechanism to pass a widget's tag name to the callback function. Using a magic function call would not be necessary if Smarty would support closures. Smarty closure support is announced for 3.2, until its release magic function calls are used to pass the tag name to the callback. public string __call ( $method, $args )$method string $args array throws yii\base\InvalidConfigException throws BadMethodCallException

validators\FileValidator $maxSize

$maxSize public property The maximum number of bytes required for the uploaded file. Defaults to null, meaning no limit. Note, the size limit is also affected by upload_max_filesize and post_max_size INI setting and the 'MAX_FILE_SIZE' hidden field value. See getSizeLimit() for details. See also: http://php.net/manual/en/ini.core.php#ini.upload-max-filesize http://php.net/post-max-size getSizeLimit() $tooBig for the customized message for a file that is too big. public integer $maxSize =

db\Migration truncateTable()

truncateTable() public method Builds and executes a SQL statement for truncating a DB table. public void truncateTable ( $table )$table string The table to be truncated. The name will be properly quoted by the method.

base\View EVENT_END_PAGE

EVENT_END_PAGE event of type yii\base\Event An event that is triggered by endPage().

bootstrap\Carousel $items

$items public property List of slides in the carousel. Each array element represents a single slide with the following structure: [ // required, slide content (HTML), such as an image tag 'content' => '<img src="http://twitter.github.io/bootstrap/assets/img/bootstrap-mdo-sfmoma-01.jpg"/>', // optional, the caption (HTML) of the slide 'caption' => '<h4>This is title</h4><p>This is the caption text</p>', // optional the HTML attributes o

jui\Widget $clientOptions

$clientOptions public property The options for the underlying jQuery UI widget. Please refer to the corresponding jQuery UI widget Web page for possible options. For example, this page shows how to use the "Accordion" widget and the supported options (e.g. "header"). public array $clientOptions = []

web\ViewAction $viewPrefix

$viewPrefix public property A string to be prefixed to the user-specified view name to form a complete view name. For example, if a user requests for tutorial/chap1, the corresponding view name will be pages/tutorial/chap1, assuming the prefix is pages. The actual view file is determined by yii\base\View::findViewFile(). See also yii\base\View::findViewFile(). public string $viewPrefix = 'pages'

i18n\Formatter createNumberFormatter()

createNumberFormatter() protected method Creates a number formatter based on the given type and format. You may override this method to create a number formatter based on patterns. protected \NumberFormatter createNumberFormatter ( $style, $decimals = null, $options = [], $textOptions = [] )$style integer The type of the number formatter. Values: NumberFormatter::DECIMAL, ::CURRENCY, ::PERCENT, ::SCIENTIFIC, ::SPELLOUT, ::ORDINAL ::DURATION, ::PATTERN_RULEBASED, ::DEFAULT_STYLE, ::IGNORE

redis\ActiveQuery scalar()

scalar() public method Returns the query result as a scalar value. The value returned will be the specified attribute in the first record of the query results. public string scalar ( $attribute, $db = null )$attribute string Name of the attribute to select $db yii\redis\Connection The database connection used to execute the query. If this parameter is not given, the db application component will be used. return string The value of the specified attribute in the first record of the qu