base\Application getAuthManager()

getAuthManager() public method Returns the auth manager for this application. public yii\rbac\ManagerInterface getAuthManager ( )return yii\rbac\ManagerInterface The auth manager application component. Null is returned if auth manager is not configured.

base\Application getAssetManager()

getAssetManager() public method Returns the asset manager. public yii\web\AssetManager getAssetManager ( )return yii\web\AssetManager The asset manager application component.

base\Application EVENT_BEFORE_REQUEST

EVENT_BEFORE_REQUEST event of type yii\base\Event An event raised before the application starts to handle a request.

base\Application EVENT_AFTER_REQUEST

EVENT_AFTER_REQUEST event of type yii\base\Event An event raised after the application successfully handles a request (before the response is sent out).

base\Application end()

end() public method Terminates the application. This method replaces the exit() function by ensuring the application life cycle is completed before terminating the application. public void end ( $status = 0, $response = null )$status integer The exit status (value 0 means normal exit while other values mean abnormal exit). $response yii\base\Response The response to be sent. If not set, the default application $response component will be used. throws yii\base\ExitException if the app

base\Application coreComponents()

coreComponents() public method Returns the configuration of core application components. See also set(). public void coreComponents ( )

base\Application bootstrap()

bootstrap() protected method Initializes extensions and executes bootstrap components. This method is called by init() after the application has been fully configured. If you override this method, make sure you also call the parent implementation. protected void bootstrap ( )

base\Application $view

$view public read-only property The view application component that is used to render various view files. public yii\base\View|yii\web\View getView ( )

base\Application $vendorPath

$vendorPath public property The directory that stores vendor files. Defaults to "vendor" directory under $basePath. public string getVendorPath ( )public void setVendorPath ( $path )

base\Application $urlManager

$urlManager public read-only property The URL manager for this application. public yii\web\UrlManager getUrlManager ( )