redis\LuaScriptBuilder buildSum()

buildSum() public method Builds a Lua script for finding the sum of a column public string buildSum ( $query, $column )$query yii\redis\ActiveQuery The query used to build the script $column string Name of the column

redis\Connection $socketClientFlags

$socketClientFlags public property (available since version 2.0.5) Bitmask field which may be set to any combination of connection flags passed to stream_socket_client(). Currently the select of connection flags is limited to STREAM_CLIENT_CONNECT (default), STREAM_CLIENT_ASYNC_CONNECT and STREAM_CLIENT_PERSISTENT. See also http://php.net/manual/en/function.stream-socket-client.php. public integer $socketClientFlags = STREAM_CLIENT_CONNECT

caching\ApcCache deleteValue()

deleteValue() protected method Deletes a value with the specified key from cache This is the implementation of the method declared in the parent class. protected boolean deleteValue ( $key )$key string The key of the value to be deleted return boolean If no error happens during deletion

grid\GridView renderFilters()

renderFilters() public method Renders the filter. public string renderFilters ( )return string The rendering result.

rbac\ManagerInterface createRole()

createRole() public abstract method Creates a new Role object. Note that the newly created role is not added to the RBAC system yet. You must fill in the needed data and call add() to add it to the system. public abstract yii\rbac\Role createRole ( $name )$name string The role name return yii\rbac\Role The new Role object

authclient\clients\YandexOAuth defaultName()

defaultName() protected method Generates service name. protected string defaultName ( )return string Service name.

base\View beginPage()

beginPage() public method Marks the beginning of a page. public void beginPage ( )

i18n\GettextPoFile save()

save() public method Saves messages to a PO file. public void save ( $filePath, $messages )$filePath string File path $messages array Message translations. Array keys are source messages and array values are translated messages: source message => translated message. Note if the message has a context, the message ID must be prefixed with the context with chr(4) as the separator.

db\ActiveRecordInterface update()

update() public abstract method Saves the changes to this active record into the database. Usage example: $customer = Customer::findOne($id); $customer->name = $name; $customer->email = $email; $customer->update(); public abstract integer|boolean update ( $runValidation = true, $attributeNames = null )$runValidation boolean Whether to perform validation (calling \yii\db\Model::validate()) before saving the record. Defaults to true. If the validation fails, the record will not b

db\Command addPrimaryKey()

addPrimaryKey() public method Creates a SQL command for adding a primary key constraint to an existing table. The method will properly quote the table and column names. public $this addPrimaryKey ( $name, $table, $columns )$name string The name of the primary key constraint. $table string The table that the primary key constraint will be added to. $columns string|array Comma separated string or array of columns that the primary key will consist of. return $this The command object