web\AssetBundle $depends

$depends public property List of bundle class names that this bundle depends on. For example: public $depends = [ 'yii\web\YiiAsset', 'yii\bootstrap\BootstrapAsset', ]; public array $depends = []

web\AssetBundle $cssOptions

$cssOptions public property The options that will be passed to yii\web\View::registerCssFile() when registering the CSS files in this bundle. public array $cssOptions = []

web\AssetBundle $css

$css public property List of CSS files that this bundle contains. Each CSS file can be specified in one of the three formats as explained in $js. Note that only a forward slash "/" should be used as directory separator. public array $css = []

web\AssetBundle $baseUrl

$baseUrl public property The base URL for the relative asset files listed in $js and $css. If $sourcePath is set, this property will be overwritten by yii\web\AssetManager when it publishes the asset files from $sourcePath. You can use either a URL or an alias of the URL. public string $baseUrl = null

web\AssetBundle $basePath

$basePath public property The Web-accessible directory that contains the asset files in this bundle. If $sourcePath is set, this property will be overwritten by yii\web\AssetManager when it publishes the asset files from $sourcePath. You can use either a directory or an alias of the directory. public string $basePath = null

web\Application setHomeUrl()

setHomeUrl() public method public void setHomeUrl ( $value )$value string The homepage URL

web\Application handleRequest()

handleRequest() public method Handles the specified request. public yii\web\Response handleRequest ( $request )$request yii\web\Request The request to be handled return yii\web\Response The resulting response throws yii\web\NotFoundHttpException if the requested route is invalid

web\Application getUser()

getUser() public method Returns the user component. public yii\web\User getUser ( )return yii\web\User The user component.

web\Application getSession()

getSession() public method Returns the session component. public yii\web\Session getSession ( )return yii\web\Session The session component.

web\Application getResponse()

getResponse() public method Returns the response component. public yii\web\Response getResponse ( )return yii\web\Response The response component.