base\ErrorHandler logException()

logException() public method (available since version 2.0.3) Logs the given exception public void logException ( $exception )$exception Exception The exception to be logged

console\controllers\BaseMigrateController $migrationPath

$migrationPath public property The directory containing the migration classes. This can be either a path alias or a directory path. If you have set up $migrationNamespaces, you may set this field to null in order to disable usage of migrations that are not namespaced. public string $migrationPath = '@app/migrations'

console\controllers\AssetController $jsCompressor

$jsCompressor public property JavaScript file compressor. If a string, it is treated as shell command template, which should contain placeholders {from} - source file name - and {to} - output file name. Otherwise, it is treated as PHP callback, which should perform the compression. Default value relies on usage of "Closure Compiler" See also https://developers.google.com/closure/compiler/. public string|callable $jsCompressor = 'java -jar compiler.jar --js {from} --js_output_file {to}'

console\controllers\BaseMigrateController actionMark()

actionMark() public method Modifies the migration history to the specified version. No actual migration will be performed. yii migrate/mark 101129_185401 # using timestamp yii migrate/mark m101129_185401_create_user_table # using full name yii migrate/to app\migrations\M101129185401CreateUser # using full namespace name public integer actionMark ( $version )$version string The version at which the migration history should be marked. This can be either the time

gii\generators\model\Generator $modelClass

$modelClass public property public $modelClass = null

db\mssql\PDO commit()

commit() public method Commits a transaction. It is necessary to override PDO's method as MSSQL PDO driver does not natively support transactions. public boolean commit ( )return boolean The result of a transaction commit.

console\controllers\MessageController saveMessagesToPHP()

saveMessagesToPHP() protected method Writes messages into PHP files protected void saveMessagesToPHP ( $messages, $dirName, $overwrite, $removeUnused, $sort, $markUnused )$messages array $dirName string Name of the directory to write to $overwrite boolean If existing file should be overwritten without backup $removeUnused boolean If obsolete translations should be removed $sort boolean If translations should be sorted $markUnused boolean If obsolete translations should be marked

console\controllers\MessageController $sourceMessageTable

$sourceMessageTable public property Custom name for source message table for "db" format. public string $sourceMessageTable = '{{%source_message}}'

console\controllers\MessageController $sort

$sort public property Whether to sort messages by keys when merging new messages with the existing ones. Defaults to false, which means the new (untranslated) messages will be separated from the old (translated) ones. public boolean $sort = false

gii\generators\model\Generator $useTablePrefix

$useTablePrefix public property public $useTablePrefix = false