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

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

base\ErrorException __construct()

__construct() public method Constructs the exception. public void __construct ( $message = '', $code = 0, $severity = 1, $filename = __FILE__, $lineno = __LINE__, Exception $previous = null )$message [optional] $code [optional] $severity [optional] $filename [optional] $lineno [optional] $previous [optional]

log\Dispatcher setFlushInterval()

setFlushInterval() public method public void setFlushInterval ( $value )$value integer How many messages should be logged before they are sent to targets. This method will set the value of yii\log\Logger::$flushInterval. Defaults to 1000, meaning the yii\log\Logger::flush() method will be invoked once every 1000 messages logged. Set this property to be 0 if you don't want to flush messages until the application terminates. This property mainly affects how much memory will be taken by the l

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

authclient\BaseOAuth getSignatureMethod()

getSignatureMethod() public method public yii\authclient\signature\BaseMethod getSignatureMethod ( )return yii\authclient\signature\BaseMethod Signature method instance.

db\mssql\QueryBuilder renameTable()

renameTable() public method Builds a SQL statement for renaming a DB table. public string renameTable ( $oldName, $newName )$oldName string The table to be renamed. The name will be properly quoted by the method. $newName string The new table name. The name will be properly quoted by the method. return string The SQL statement for renaming a DB table.

helpers\BaseFileHelper loadMimeTypes()

loadMimeTypes() protected static method Loads MIME types from the specified file. protected static array loadMimeTypes ( $magicFile )$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 array The mapping from file extensions to MIME types

debug\components\TimelineDataProvider getLeft()

getLeft() public method Returns the offset left item, percentage of the total width public float getLeft ( $model )$model array

mongodb\Collection dropAllIndexes()

dropAllIndexes() public method Drops all indexes for this collection. public integer dropAllIndexes ( )return integer Count of dropped indexes. throws yii\mongodb\Exception on failure.