sphinx\Schema isReadQuery()

isReadQuery() public method Returns a value indicating whether a SQL statement is for read purpose. public boolean isReadQuery ( $sql )$sql string The SQL statement return boolean Whether a SQL statement is for read purpose.

mutex\FileMutex $fileMode

$fileMode public property The permission to be set for newly created mutex files. This value will be used by PHP chmod() function. No umask will be applied. If not set, the permission will be determined by the current environment. public integer $fileMode = null

db\Connection $enableQueryCache

$enableQueryCache public property Whether to enable query caching. Note that in order to enable query caching, a valid cache component as specified by $queryCache must be enabled and $enableQueryCache must be set true. Also, only the results of the queries enclosed within cache() will be cached. See also: $queryCache cache() noCache() public boolean $enableQueryCache = true

db\QueryBuilder dropCommentFromTable()

dropCommentFromTable() public method (available since version 2.0.8) Builds a SQL command for adding comment to table public string dropCommentFromTable ( $table )$table string The table whose column is to be commented. The table name will be properly quoted by the method. return string The SQL statement for adding comment on column

helpers\BaseConsole clearLineAfterCursor()

clearLineAfterCursor() public static method Clears text from cursor position to the end of the line by sending ANSI control code EL with argument 0 to the terminal. Cursor position will not be changed. public static void clearLineAfterCursor ( )

mongodb\Session destroySession()

destroySession() public method Session destroy handler. Do not call this method directly. public boolean destroySession ( $id )$id string Session ID return boolean Whether session is destroyed successfully

bootstrap\Carousel $controls

$controls public property The labels for the previous and the next control buttons. If false, it means the previous and the next control buttons should not be displayed. public array|boolean $controls = ['‹', '›']

sphinx\QueryBuilder buildCompositeInCondition()

buildCompositeInCondition() protected method protected string buildCompositeInCondition ( $indexes, $operator, $columns, $values, &$params )$indexes yii\sphinx\IndexSchema[] List of indexes, which affected by query $operator string The operator to use (e.g. IN or NOT IN) $columns array $values array $params array The binding parameters to be populated return string The generated SQL expression

web\Request $enableCsrfCookie

$enableCsrfCookie public property Whether to use cookie to persist CSRF token. If false, CSRF token will be stored in session under the name of $csrfParam. Note that while storing CSRF tokens in session increases security, it requires starting a session for every page, which will degrade your site performance. public boolean $enableCsrfCookie = true

base\ViewRenderer render()

render() public abstract method Renders a view file. This method is invoked by yii\base\View whenever it tries to render a view. Child classes must implement this method to render the given view file. public abstract string render ( $view, $file, $params )$view yii\base\View The view object used for rendering the file. $file string The view file. $params array The parameters to be passed to the view file. return string The rendering result