db\ActiveRecordInterface link()

link() public abstract method Establishes the relationship between two records. The relationship is established by setting the foreign key value(s) in one record to be the corresponding primary key value(s) in the other record. The record with the foreign key will be saved into database without performing validation. If the relationship involves a junction table, a new row will be inserted into the junction table which contains the primary key values from both records. This method requires

grid\GridView renderTableFooter()

renderTableFooter() public method Renders the table footer. public string renderTableFooter ( )return string The rendering result.

grid\GridView $filterPosition

$filterPosition public property Whether the filters should be displayed in the grid view. Valid values include: FILTER_POS_HEADER: the filters will be displayed on top of each column's header cell. FILTER_POS_BODY: the filters will be displayed right below each column's header cell. FILTER_POS_FOOTER: the filters will be displayed below each column's footer cell. public string $filterPosition = self::FILTER_POS_BODY

jui\Selectable $options

$options public property The HTML attributes for the widget container tag. The following special options are recognized: tag: string, defaults to "ul", the tag name of the container tag of this widget. See also yii\helpers\Html::renderTagAttributes() for details on how attributes are being rendered. public array $options = []

redis\ActiveRecord insert()

insert() public method Inserts the record into the database using the attribute values of this record. Usage example: $customer = new Customer; $customer->name = $name; $customer->email = $email; $customer->insert(); public boolean insert ( $runValidation = true, $attributes = null )$runValidation boolean Whether to perform validation (calling \yii\redis\Model::validate()) before saving the record. Defaults to true. If the validation fails, the record will not be saved to the d

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().