widgets\Pjax run()

run() public method Executes the widget. public string run ( )return string The result of widget execution to be outputted.

db\pgsql\Schema $viewNames

$viewNames public read-only property All view names in the database. public string[] getViewNames ( $schema = '', $refresh = false )

web\Session setUseCookies()

setUseCookies() public method Sets the value indicating whether cookies should be used to store session IDs. Three states are possible: true: cookies and only cookies will be used to store session IDs. false: cookies will not be used to store session IDs. null: if possible, cookies will be used to store session IDs; if not, other mechanisms will be used (e.g. GET parameter) public void setUseCookies ( $value )$value boolean|null The value indicating whether cookies should be used to st

db\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

console\Controller select()

select() public method Gives the user an option to choose from. Giving '?' as an input will show a list of options to choose from and their explanations. public string select ( $prompt, $options = [] )$prompt string The prompt message $options array Key-value array of options to choose from return string An option character the user chose

widgets\Pjax $formSelector

$formSelector public property The jQuery selector of the forms whose submissions should trigger pjax requests. If not set, all forms with data-pjax attribute within the enclosed content of Pjax will trigger pjax requests. If set to false, no code will be registered to handle forms. Note that if the response to the pjax request is a full page, a normal request will be sent again. public string|false $formSelector = null

db\oci\QueryBuilder dropCommentFromColumn()

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

caching\DbCache flushValues()

flushValues() protected method Deletes all values from cache. This is the implementation of the method declared in the parent class. protected boolean flushValues ( )return boolean Whether the flush operation was successful.

console\Controller confirm()

confirm() public method Asks user to confirm by typing y or n. public boolean confirm ( $message, $default = false )$message string To echo out before waiting for user input $default boolean This value is returned if no selection is made. return boolean Whether user confirmed. Will return true if $interactive is false.

console\controllers\FixtureController notifyNothingToLoad()

notifyNothingToLoad() public method Notifies user that there are no fixtures to load according input conditions public void notifyNothingToLoad ( $foundFixtures, $except )$foundFixtures array Array of found fixtures $except array Array of names of fixtures that should not be loaded