console\Markdown renderEmph()

renderEmph() protected method Renders empathized elements. protected string renderEmph ( $element )$element array

helpers\BaseFormatConverter convertDatePhpToJui()

convertDatePhpToJui() public static method Converts a date format pattern from [php date() function format][] to [jQuery UI date format][]. The conversion is limited to date patterns that do not use escaped characters. Patterns like jS \o\f F Y which will result in a date like 1st of December 2014 may not be converted correctly because of the use of escaped characters. Pattern constructs that are not supported by the jQuery UI format will be removed. public static string convertDatePhpToJ

BaseYii t()

t() public static method Translates a message to the specified language. This is a shortcut method of yii\i18n\I18N::translate(). The translation will be conducted according to the message category and the target language will be used. You can add parameters to a translation message that will be substituted with the corresponding value after translation. The format for this is to use curly brackets around the parameter name as you can see in the following example: $username = 'Alexander'; e

db\Query andHaving()

andHaving() public method Adds an additional HAVING condition to the existing one. The new condition and the existing one will be joined using the 'AND' operator. See also: having() orHaving() public $this andHaving ( $condition, $params = [] )$condition string|array|yii\db\Expression The new HAVING condition. Please refer to where() on how to specify this parameter. $params array The parameters (name => value) to be bound to the query. return $this The query object itself

validators\NumberValidator clientValidateAttribute()

clientValidateAttribute() public method Returns the JavaScript needed for performing client-side validation. You may override this method to return the JavaScript validation code if the validator can support client-side validation. The following JavaScript variables are predefined and can be used in the validation code: attribute: an object describing the the attribute being validated. value: the value being validated. messages: an array used to hold the validation error messages for the

validators\IpValidator setRanges()

setRanges() public method Set the IPv4 or IPv6 ranges that are allowed or forbidden. The following preparation tasks are performed: Recursively substitutes aliases (described in $networks) with their values. Removes duplicates public void setRanges ( $ranges )$ranges array The IPv4 or IPv6 ranges that are allowed or forbidden. When the array is empty, or the option not set, all IP addresses are allowed. Otherwise, the rules are checked sequentially until the first match is found. An IP a

db\Query prepare()

prepare() public method Prepares for building SQL. This method is called by yii\db\QueryBuilder when it starts to build SQL from a query object. You may override this method to do some final preparation work when converting a query into a SQL statement. public $this prepare ( $builder )$builder yii\db\QueryBuilder return $this A prepared query instance which will be used by yii\db\QueryBuilder to build the SQL

web\Request $acceptableContentTypes

$acceptableContentTypes public property The content types ordered by the quality score. Types with the highest scores will be returned first. The array keys are the content types, while the array values are the corresponding quality score and other parameters as given in the header. public array getAcceptableContentTypes ( )public void setAcceptableContentTypes ( $value )

sphinx\gii\model\Generator validateDb()

validateDb() public method Validates the $db attribute. public void validateDb ( )

db\Query $groupBy

$groupBy public property How to group the query results. For example, ['company', 'department']. This is used to construct the GROUP BY clause in a SQL statement. public array $groupBy = null