jui\Menu $clientOptions

$clientOptions public property The options for the underlying jQuery UI widget. Please refer to the corresponding jQuery UI widget Web page for possible options. For example, this page shows how to use the "Accordion" widget and the supported options (e.g. "header"). public array $clientOptions = []

Database Migration

Creating Migrations Generating Migrations Applying Migrations Reverting Migrations Redoing Migrations Listing Migrations Modifying Migration History Customizing Migrations Migrating Multiple Databases During the course of developing and maintaining a database-driven application, the structure of the database being used evolves just like the source code does. For example, during the development of an application, a new table may be found necessary; after the application is deployed to productio

base\Application $loadedModules

$loadedModules public property List of loaded modules indexed by their class names. public array $loadedModules = []

widgets\Breadcrumbs $tag

$tag public property The name of the breadcrumb container tag. public string $tag = 'ul'

widgets\Breadcrumbs $encodeLabels

$encodeLabels public property Whether to HTML-encode the link labels. public boolean $encodeLabels = true

widgets\Breadcrumbs $itemTemplate

$itemTemplate public property The template used to render each inactive item in the breadcrumbs. The token {link} will be replaced with the actual HTML link for each inactive item. public string $itemTemplate = "<li>{link}</li>\n"

widgets\Pjax $enableReplaceState

$enableReplaceState public property Whether to enable replace state. public boolean $enableReplaceState = false

debug\components\search\matchers\Base $baseValue

$baseValue protected property Base value to check protected mixed $baseValue = null

rbac\PhpManager $ruleFile

$ruleFile public property The path of the PHP script that contains the authorization rules. This can be either a file path or a path alias to the file. Make sure this file is writable by the Web server process if the authorization needs to be changed online. See also: loadFromFile() saveToFile() public string $ruleFile = '@app/rbac/rules.php'

web\HttpException __construct()

__construct() public method Constructor. public void __construct ( $status, $message = null, $code = 0, Exception $previous = null )$status integer HTTP status code, such as 404, 500, etc. $message string Error message $code integer Error code $previous Exception The previous exception used for the exception chaining.