Trait luya\traits\ApplicationTrait

Implemented byluya\console\Application, luya\web\Application
Available since version1.0.0
Source Code https://github.com/luyadev/luya/blob/master/core/traits/ApplicationTrait.php

LUYA Appliation trait

Public Properties

Hide inherited properties

Property Type Description Defined By
$consoleBaseUrl string This value is used when declared for console request as urlManger baseUrl in order to enable urlHandling. luya\traits\ApplicationTrait
$consoleHostInfo string This value will be used as hostInfo when running console applications in urlManager. luya\traits\ApplicationTrait
$corsConfig array An array to provide application wide CORS settings. luya\traits\ApplicationTrait
$ensureSecureConnection boolean If enabled, the application will throw an exception if a request is not from a secure connection (https). luya\traits\ApplicationTrait
$formatter luya\components\Formatter Format values luya\traits\ApplicationTrait
$locales array Can override the localisation value used for php internal setlocale() method for specific language. luya\traits\ApplicationTrait
$mail luya\components\Mail Mail Component luya\traits\ApplicationTrait
$packageInstaller luya\base\PackageInstaller luya\traits\ApplicationTrait
$remoteToken string|boolean Set a token, which will be used to collect data from a central host, if you want to enable this feature. luya\traits\ApplicationTrait
$siteTitle string Title for the application used in different sections like Login screen luya\traits\ApplicationTrait
$tags array Add tags to the TagParser class. luya\traits\ApplicationTrait
$themeManager luya\theme\ThemeManager Theme Manager luya\traits\ApplicationTrait
$webroot string Returns the webroot directory event for console commands. luya\traits\ApplicationTrait
$webrootDirectory string The directory where your webroot represents, this is basically used to find the webroot directory in the console mode, cause some importer classes need those variables. luya\traits\ApplicationTrait

Public Methods

Hide inherited methods

Method Description Defined By
ensureLocale() Transform the $language into a locale sign to set php env settings. luya\traits\ApplicationTrait
getAdminModules() Return all Admin Module Interface implementing modules. luya\traits\ApplicationTrait
getAdminModulesAssets() Get all assets files from all admin modules luya\traits\ApplicationTrait
getAdminModulesJsTranslationMessages() Get all js translations from all admin modules luya\traits\ApplicationTrait
getAdminModulesMenus() Get all admin menu modules luya\traits\ApplicationTrait
getApplicationModules() Get an array with all modules which are an instance of the luya\base\Module. luya\traits\ApplicationTrait
getFrontendModules() Return a list with all registered frontend modules except 'luya' and 'cms'. This is needed in the module block. luya\traits\ApplicationTrait
getPackageInstaller() Get the package Installer luya\traits\ApplicationTrait
getWebroot() Read only property which is used in cli bootstrap process to set the @webroot alias luya\traits\ApplicationTrait
init() Add trace info to luya application trait luya\traits\ApplicationTrait
luyaCoreComponents() Add additional core components to the yii2 base core components. luya\traits\ApplicationTrait
setLocale() Set the application localisation trough setlocale. luya\traits\ApplicationTrait

Protected Methods

Hide inherited methods

Method Description Defined By
bootstrap() Initializes extensions and executes bootstrap components. luya\traits\ApplicationTrait

Property Details

Hide inherited properties

$consoleBaseUrl public property

This value is used when declared for console request as urlManger baseUrl in order to enable urlHandling. If {{luya\web\traits\ApplicationTrait::$consoleHostInfo}} is defined, consoleBaseUrl will use / as default value. The base url is the path where the application is running after hostInfo like

'consoleBaseUrl' => '/luya-kickstarter'

But in the most cases when the website is online the baseUrl is / which is enabled by default when {{luya\web\traits\ApplicationTrait::$consoleHostInfo}} is defined.

public string $consoleBaseUrl null
$consoleHostInfo public property

This value will be used as hostInfo when running console applications in urlManager. An example for using the hostInfo

'consoleHostInfo' => 'https://luya.io'
public string $consoleHostInfo null
$corsConfig public property (available since version 1.0.22)

An array to provide application wide CORS settings.

By default the X-Headers of Yii and LUYA Admin are exposed. In order to override the cors config the following example would work (including cors class definition).

'corsConfig' => [
'class' => 'yii\filters\Cors',
    'cors' => [
        'Origin' => ['*'],
        'Access-Control-Request-Method' => ['GET', 'POST', 'PUT', 'PATCH', 'DELETE', 'HEAD', 'OPTIONS'],
        'Access-Control-Request-Headers' => ['*'],
        'Access-Control-Allow-Credentials' => null,
        'Access-Control-Max-Age' => 86400,
        'Access-Control-Expose-Headers' => [
            'X-My-Header-Name',
        ],
    ],
]
public array $corsConfig = [
    
'class' => 'yii\filters\Cors',
    
'cors' => [
        
'Origin' => [
            
'*',
        ],
        
'Access-Control-Request-Method' => [
            
'GET',
            
'POST',
            
'PUT',
            
'PATCH',
            
'DELETE',
            
'HEAD',
            
'OPTIONS',
        ],
        
'Access-Control-Request-Headers' => [
            
'*',
        ],
        
'Access-Control-Allow-Credentials' => null,
        
'Access-Control-Max-Age' => 86400,
        
'Access-Control-Expose-Headers' => [
            
'X-Pagination-Current-Page',
            
'X-Pagination-Page-Count',
            
'X-Pagination-Per-Page',
            
'X-Pagination-Total-Count',
            
'X-Cruft-Length',
        ],
    ],
]
$ensureSecureConnection public property (available since version 1.0.5)

If enabled, the application will throw an exception if a request is not from a secure connection (https). So any none secure request will throw a {{yii\web\ForbiddenHttpException}}. This option will also make sure REST APIs are requested by a secure connection.

$formatter public property

Format values

$locales public property

Can override the localisation value used for php internal setlocale() method for specific language. For example the language is de but the it should use the locale charset de_CH.utf8 (locale -a will return all locales installed on the server) you can define them inside an array where key is the language and value the locale value to be used.

public $locales = [
   'de' => 'de_CH',
   'en' => 'en_GB',
];
public array $locales = []
$mail public property

Mail Component

$packageInstaller public property
$remoteToken public property

Set a token, which will be used to collect data from a central host, if you want to enable this feature. Use http://passwordsgenerator.net/ to create complex strings. When you have enabled this feature you can collect information's from all your hosts with example.com/admin/remote?token=Sha1EncodedRemoteToken.

public string|boolean $remoteToken false
$siteTitle public property

Title for the application used in different sections like Login screen

public string $siteTitle 'LUYA Application'
$tags public property

Add tags to the TagParser class. Example

'tags' => [
    'foobar' => ['class' => '\app\tags\FoobarTag'],
],
public array $tags = []
$themeManager public property

Theme Manager

$webroot public property

Returns the webroot directory event for console commands.

public string $webroot null
$webrootDirectory public property

The directory where your webroot represents, this is basically used to find the webroot directory in the console mode, cause some importer classes need those variables.

public string $webrootDirectory 'public_html'

Method Details

Hide inherited methods

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

                protected function bootstrap()
{
    foreach ($this->getPackageInstaller()->getConfigs() as $config) {
        $this->bootstrap = array_merge($this->bootstrap, $config->bootstrap);
    }
    
    parent::bootstrap();
}

            
ensureLocale() public method

Transform the $language into a locale sign to set php env settings.

Example transform input de to de_CH when available $locales property as

'locales' => ['de' => 'de_CH']
public string ensureLocale ( $lang )
$lang string

Find the locale for the provided $lang short code.

return string

The localisation code for the provided lang short code.

                public function ensureLocale($lang)
{
    // see if the $lang is available in the $locales map.
    if (array_key_exists($lang, $this->locales)) {
        return $this->locales[$lang];
    }
    
    // generate from `de` the locale `de_DE` or from `en` `en_EN` only if $lang is 2 chars.
    if (strlen($lang) == 2) {
        return strtolower($lang) . '_' . strtoupper($lang);
    }
    
    return $lang;
}

            
getAdminModules() public method

Return all Admin Module Interface implementing modules.

public luya\base\AdminModuleInterface getAdminModules ( )

                public function getAdminModules()
{
    if ($this->_adminModules === null) {
        $this->_adminModules = [];
        foreach ($this->getModules() as $id => $obj) {
            if ($obj instanceof Module && $obj instanceof AdminModuleInterface) {
                $this->_adminModules[$id] = $obj;
            }
        }
    }
    return $this->_adminModules;
}

            
getAdminModulesAssets() public method (available since version 1.7.0)

Get all assets files from all admin modules

public array getAdminModulesAssets ( )

                public function getAdminModulesAssets()
{
    $assets = [];
    foreach ($this->getAdminModules() as $module) {
        $assets = array_merge($module->getAdminAssets(), $assets);
    }
    return $assets;
}

            
getAdminModulesJsTranslationMessages() public method (available since version 1.7.0)

Get all js translations from all admin modules

public array getAdminModulesJsTranslationMessages ( )

                public function getAdminModulesJsTranslationMessages()
{
    $jsTranslations = [];
    foreach ($this->getAdminModules() as $id => $module) {
        $jsTranslations[$id] = $module->getJsTranslationMessages();
    }
    return $jsTranslations;
}

            
getAdminModulesMenus() public method (available since version 1.7.0)

Get all admin menu modules

public array getAdminModulesMenus ( )
return array

An array where the key is the module id and value the menu array.

                public function getAdminModulesMenus()
{
    $menu = [];
    foreach($this->getAdminModules() as $module) {
        if ($module->getMenu()) {
            $menu[$module->id] = $module->getMenu();
        }
    }
    return $menu;
}

            
getApplicationModules() public method

Get an array with all modules which are an instance of the luya\base\Module.

public luya\base\Module[] getApplicationModules ( )

                public function getApplicationModules()
{
    $modules = [];
    foreach ($this->getModules() as $id => $obj) {
        if ($obj instanceof Module) {
            $modules[$id] = $obj;
        }
    }
    return $modules;
}

            
getFrontendModules() public method

Return a list with all registered frontend modules except 'luya' and 'cms'. This is needed in the module block.

public luya\base\Module getFrontendModules ( )

                public function getFrontendModules()
{
    $modules = [];
    foreach ($this->getModules() as $id => $obj) {
        if ($obj instanceof Module && !$obj instanceof AdminModuleInterface && !$obj instanceof CoreModuleInterface) {
            $modules[$id] = $obj;
        }
    }
    return $modules;
}

            
getPackageInstaller() public method

Get the package Installer

public luya\base\PackageInstaller getPackageInstaller ( )

                public function getPackageInstaller()
{
    if ($this->_packageInstaller == null) {
        $file = Yii::getAlias('@vendor/luyadev/installer.php');
    
        $data = is_file($file) ? include $file : [];
    
        $this->_packageInstaller = new PackageInstaller($data);
    }
    
    return $this->_packageInstaller;
}

            
getWebroot() public method

Read only property which is used in cli bootstrap process to set the @webroot alias

Yii::setAlias('@webroot', $app->webroot);
public string getWebroot ( )
return string

The webroot of the application.

                public function getWebroot()
{
    if ($this->_webroot === null) {
        $this->_webroot = realpath(realpath($this->basePath) . DIRECTORY_SEPARATOR . $this->webrootDirectory);
    }
    
    return $this->_webroot;
}

            
init() public method

Add trace info to luya application trait

public void init ( )

                public function init()
{
    parent::init();
    
    // add trace info
    Yii::debug('initialize LUYA Application', __METHOD__);
    
    $this->setLocale($this->language);
}

            
luyaCoreComponents() public method

Add additional core components to the yii2 base core components.

public array luyaCoreComponents ( )

                public function luyaCoreComponents()
{
    return array_merge(parent::coreComponents(), [
        'mail' => ['class' => 'luya\components\Mail'],
        'formatter' => ['class' => 'luya\components\Formatter'],
        'themeManager' => ['class' => 'luya\theme\ThemeManager'],
    ]);
}

            
setLocale() public method

Set the application localisation trough setlocale.

The value will be parsed trough {{ensureLocale()}} in order to generated different possible localisation values like en_EN or en_EN.utf8 and it will generate from de a locale value like de_DE.

setlocale() can have multiple arguments:

If locale is an array or followed by additional parameters then each array element or parameter is tried to be set as new locale until success. This is useful if a locale is known under different names on different systems or for providing a fallback for a possibly not available locale.

public void setLocale ( $lang )
$lang string

The language short code to set the locale for.

                public function setLocale($lang)
{
    $locale = str_replace(['.utf8', '.UTF-8'], '', $this->ensureLocale($lang));
    setlocale(LC_ALL, $locale.'.utf8', $locale.'UTF-8', $locale);
}