web\AssetBundle $js

$js public property List of JavaScript files that this bundle contains. Each JavaScript file can be specified in one of the following formats: an absolute URL representing an external asset. For example, http://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js or //ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js. a relative path representing a local asset (e.g. js/main.js). The actual file path of a local asset can be determined by prefixing $basePath to the relative path, a

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 $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 $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 getResponse()

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

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.