elasticsearch\Command updateAnalyzers()

updateAnalyzers() public method (available since version 2.0.4) Define new analyzers for the index. For example if content analyzer hasn’t been defined on "myindex" yet you can use the following commands to add it: $setting = [ 'analysis' => [ 'analyzer' => [ 'ngram_analyzer_with_filter' => [ 'tokenizer' => 'ngram_tokenizer', 'filter' => 'lowercase, snowball' ], ], 'tokenizer' => [

web\AssetManager getPublishedPath()

getPublishedPath() public method Returns the published path of a file path. This method does not perform any publishing. It merely tells you if the file or directory is published, where it will go. public string|false getPublishedPath ( $path )$path string Directory or file path being published return string|false String the published file path. False if the file or directory does not exist

base\Theme getBaseUrl()

getBaseUrl() public method public string getBaseUrl ( )return string The base URL (without ending slash) for this theme. All resources of this theme are considered to be under this base URL.

web\Application $homeUrl

$homeUrl public property The homepage URL public string getHomeUrl ( )public void setHomeUrl ( $value )

sphinx\QueryBuilder buildColumns()

buildColumns() public method Processes columns and properly quote them if necessary. It will join all columns into a string with comma as separators. public string buildColumns ( $columns )$columns string|array The columns to be processed return string The processing result

web\Response clear()

clear() public method Clears the headers, cookies, content, status code of the response. public void clear ( )

elasticsearch\Command flushIndex()

flushIndex() public method See also http://www.elastic.co/guide/en/elasticsearch/reference/current/indices-flush.html. public mixed flushIndex ( $index = '_all' )$index

sphinx\ActiveRecord $snippetSource

$snippetSource public read-only property Snippet source string. public string getSnippetSource ( )

db\BaseActiveRecord $oldPrimaryKey

$oldPrimaryKey public read-only property The old primary key value. An array (column name => column value) is returned if the primary key is composite or $asArray is true. A string is returned otherwise (null will be returned if the key value is null). public mixed getOldPrimaryKey ( $asArray = false )

elasticsearch\Command getSource()

getSource() public method Gets a documents _source from the index (>=v0.90.1) See also http://www.elastic.co/guide/en/elasticsearch/reference/current/docs-get.html#_source. public mixed getSource ( $index, $type, $id )$index $type $id