sphinx\Schema quoteValue()

quoteValue() public method Quotes a string value for use in a query. Note that if the parameter is not a string, it will be returned without change. See also http://www.php.net/manual/en/function.PDO-quote.php. public string quoteValue ( $str )$str string String to be quoted return string The properly quoted string

i18n\Formatter format()

format() public method Formats the value based on the given format type. This method will call one of the "as" methods available in this class to do the formatting. For type "xyz", the method "asXyz" will be used. For example, if the format is "html", then asHtml() will be used. Format names are case insensitive. public string format ( $value, $format )$value mixed The value to be formatted. $format string|array The format of the value, e.g., "html", "text". To specify additional par

db\BaseActiveRecord getOldPrimaryKey()

getOldPrimaryKey() public method Returns the old primary key value(s). This refers to the primary key value that is populated into the record after executing a find method (e.g. find(), findOne()). The value remains unchanged even if the primary key attribute is manually assigned with a different value. public mixed getOldPrimaryKey ( $asArray = false )$asArray boolean Whether to return the primary key value as an array. If true, the return value will be an array with column name as key

web\AssetBundle $jsOptions

$jsOptions public property The options that will be passed to yii\web\View::registerJsFile() when registering the JS files in this bundle. public array $jsOptions = []

mail\MailEvent $message

$message public property The mail message being send. public yii\mail\MessageInterface $message = null

data\Pagination createUrl()

createUrl() public method Creates the URL suitable for pagination with the specified page number. This method is mainly called by pagers when creating URLs used to perform pagination. See also: $params $forcePageParam public string createUrl ( $page, $pageSize = null, $absolute = false )$page integer The zero-based page number that the URL should point to. $pageSize integer The number of items on each page. If not set, the value of $pageSize will be used. $absolute boolean Whether to

elasticsearch\QueryBuilder buildCompositeInCondition()

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

elasticsearch\Command exists()

exists() public method Gets a document from the index See also http://www.elastic.co/guide/en/elasticsearch/reference/current/docs-get.html. public mixed exists ( $index, $type, $id )$index $type $id

web\Request setBaseUrl()

setBaseUrl() public method Sets the relative URL for the application. By default the URL is determined based on the entry script URL. This setter is provided in case you want to change this behavior. public void setBaseUrl ( $value )$value string The relative URL for the application

elasticsearch\Query search()

search() public method Executes the query and returns the complete search result including e.g. hits, facets, totalCount. public array search ( $db = null, $options = [] )$db yii\elasticsearch\Connection The database connection used to execute the query. If this parameter is not given, the elasticsearch application component will be used. $options array The options given with this query. Possible options are: routing search_type return array The query results.