web\Link $type

$type public property A hint to indicate the media type expected when dereferencing the target resource public string $type = null

bootstrap\BootstrapPluginAsset $sourcePath

$sourcePath public property public $sourcePath = '@bower/bootstrap/dist'

helpers\BaseHtml endForm()

endForm() public static method Generates a form end tag. See also beginForm(). public static string endForm ( )return string The generated tag

db\sqlite\Schema $typeMap

$typeMap public property Mapping from physical column types (keys) to abstract column types (values) public array $typeMap = ['tinyint' => self::TYPE_SMALLINT, 'bit' => self::TYPE_SMALLINT, 'boolean' => self::TYPE_BOOLEAN, 'bool' => self::TYPE_BOOLEAN, 'smallint' => self::TYPE_SMALLINT, 'mediumint' => self::TYPE_INTEGER, 'int' => self::TYPE_INTEGER, 'integer' => self::TYPE_INTEGER, 'bigint' => self::TYPE_BIGINT, 'float' => self::TYPE_FLOAT, 'double' => self

gii\CodeFile $relativePath

$relativePath public read-only property The code file path relative to the application base path. public string getRelativePath ( )

grid\Column $header

$header public property The header cell content. Note that it will not be HTML-encoded. public string $header = null

Widgets

Using Widgets Creating Widgets Best Practices Widgets are reusable building blocks used in views to create complex and configurable user interface elements in an object-oriented fashion. For example, a date picker widget may generate a fancy date picker that allows users to pick a date as their input. All you need to do is just to insert the code in a view like the following: <?php use yii\jui\DatePicker; ?> <?= DatePicker::widget(['name' => 'date']) ?> There are a good number

web\ErrorHandler $maxSourceLines

$maxSourceLines public property Maximum number of source code lines to be displayed. Defaults to 19. public integer $maxSourceLines = 19

db\Schema $exceptionMap

$exceptionMap public property Map of DB errors and corresponding exceptions If left part is found in DB error message exception class from the right part is used. public array $exceptionMap = ['SQLSTATE[23' => 'yii\db\IntegrityException']

debug\LogTarget getSqlTotalCount()

getSqlTotalCount() protected method Returns total sql count executed in current request. If database panel is not configured returns 0. protected integer getSqlTotalCount ( )