sphinx\QueryBuilder batchReplace()

batchReplace() public method Generates a batch REPLACE SQL statement. For example, $sql = $queryBuilder->batchReplace('idx_user', ['id', 'name', 'age'], [ [1, 'Tom', 30], [2, 'Jane', 20], [3, 'Linda', 25], ], $params); Note that the values in each row must match the corresponding column names. public string batchReplace ( $index, $columns, $rows, &$params )$index string The index that new rows will be replaced. $columns array The column names $rows array The rows

mongodb\file\Cursor __construct()

__construct() public method Constructor. public void __construct ( $collection, $cursor )$collection yii\mongodb\file\Collection $cursor \MongoDB\Driver\Cursor

twig\ViewRenderer $cachePath

$cachePath public property The directory or path alias pointing to where Twig cache will be stored. Set to false to disable templates cache. public string $cachePath = '@runtime/Twig/cache'

widgets\DetailView $options

$options public property The HTML attributes for the container tag of this widget. The tag option specifies what container tag should be used. It defaults to table if not set. See also yii\helpers\Html::renderTagAttributes() for details on how attributes are being rendered. public array $options = ['class' => 'table table-striped table-bordered detail-view']

authclient\BaseClient $normalizeUserAttributeMap

$normalizeUserAttributeMap public property Normalize user attribute map. public array getNormalizeUserAttributeMap ( )public void setNormalizeUserAttributeMap ( $normalizeUserAttributeMap )

authclient\signature\RsaSha1 getPublicCertificate()

getPublicCertificate() public method public string getPublicCertificate ( )return string Public key certificate content.

jui\DatePicker $value

$value public property The input value. This value will be converted using `Yii::$app->formatter->asDate()` with the $dateFormat if it is not null. public string $value = null

grid\GridView renderSection()

renderSection() public method Renders a section of the specified name. If the named section is not supported, false will be returned. public string|boolean renderSection ( $name )$name string The section name, e.g., {summary}, {items}. return string|boolean The rendering result of the section, or false if the named section is not supported.

sphinx\Schema convertException()

convertException() public method Converts a DB exception to a more concrete one if possible. public yii\db\Exception convertException ( Exception $e, $rawSql )$e Exception $rawSql string SQL that produced exception

caching\ArrayCache setValue()

setValue() protected method Stores a value identified by a key in cache. This method should be implemented by child classes to store the data in specific cache storage. protected boolean setValue ( $key, $value, $duration )$key string The key identifying the value to be cached $value mixed The value to be cached. Most often it's a string. If you have disabled $serializer, it could be something else. $duration integer The number of seconds in which the cached value will expire. 0 mean