mutex\FileMutex $dirMode

$dirMode public property The permission to be set for newly created directories. This value will be used by PHP chmod() function. No umask will be applied. Defaults to 0775, meaning the directory is read-writable by owner and group, but read-only for other users. public integer $dirMode = 509

jui\Draggable $clientEventMap

$clientEventMap protected property Event names mapped to what should be specified in .on(). If empty, it is assumed that event passed to clientEvents is prefixed with widget name. Event names mapped to what should be specified in .on(). If empty, it is assumed that event passed to clientEvents is prefixed with widget name. protected array $clientEventMap = ['create' => 'dragcreate', 'drag' => 'drag', 'stop' => 'dragstop', 'start' => 'dragstart']

mutex\OracleMutex acquireLock()

acquireLock() protected method Acquires lock by given name. See also http://docs.oracle.com/cd/B19306_01/appdev.102/b14258/d_lock.htm. protected boolean acquireLock ( $name, $timeout = 0 )$name string Of the lock to be acquired. $timeout integer To wait for lock to become released. return boolean Acquiring result.

redis\LuaScriptBuilder buildCompositeInCondition()

buildCompositeInCondition() protected method protected void buildCompositeInCondition ( $operator, $inColumns, $values, &$columns )$operator $inColumns $values $columns

db\QueryTrait orFilterWhere()

orFilterWhere() public method Adds an additional WHERE condition to the existing one but ignores empty operands. The new condition and the existing one will be joined using the 'OR' operator. This method is similar to orWhere(). The main difference is that this method will remove empty query operands. As a result, this method is best suited for building query conditions based on filter values entered by users. See also: filterWhere() andFilterWhere() public $this orFilterWhere ( array $co

i18n\Formatter $numberFormatterOptions

$numberFormatterOptions public property A list of name value pairs that are passed to the intl Numberformatter::setAttribute() method of all the number formatter objects created by createNumberFormatter(). This property takes only effect if the PHP intl extension is installed. Please refer to the PHP manual for the possible options. For example to adjust the maximum and minimum value of fraction digits you can configure this property like the following: [ NumberFormatter::MIN_FRACTION_D

caching\Cache flush()

flush() public method Deletes all values from cache. Be careful of performing this operation if the cache is shared among multiple applications. public boolean flush ( )return boolean Whether the flush operation was successful.

redis\Connection close()

close() public method Closes the currently active DB connection. It does nothing if the connection is already closed. public void close ( )

base\Model getAttributeLabel()

getAttributeLabel() public method Returns the text label for the specified attribute. See also: generateAttributeLabel() attributeLabels() public string getAttributeLabel ( $attribute )$attribute string The attribute name return string The attribute label

db\Command queryOne()

queryOne() public method Executes the SQL statement and returns the first row of the result. This method is best used when only the first row of result is needed for a query. public array|false queryOne ( $fetchMode = null )$fetchMode integer The result fetch mode. Please refer to PHP manual for valid fetch modes. If this parameter is null, the value set in $fetchMode will be used. return array|false The first row (in terms of an array) of the query result. False is returned if the q