24 lines
637 B
PHP
24 lines
637 B
PHP
<?php
|
|
namespace dmstr\helpers;
|
|
|
|
use Yii;
|
|
|
|
class AdminLteHelper
|
|
{
|
|
/**
|
|
* It allows you to get the name of the css class.
|
|
* You can add the appropriate class to the body tag for dynamic change the template's appearance.
|
|
* Note: Use this fucntion only if you override the skin through configuration.
|
|
* Otherwise you will not get the correct css class of body.
|
|
*
|
|
* @return string
|
|
*/
|
|
public static function skinClass()
|
|
{
|
|
/** @var \dmstr\web\AdminLteAsset $bundle */
|
|
$bundle = Yii::$app->assetManager->getBundle('dmstr\web\AdminLteAsset');
|
|
|
|
return $bundle->skin;
|
|
}
|
|
}
|