-
Notifications
You must be signed in to change notification settings - Fork 41
/
Copy pathMetronic.php
119 lines (104 loc) · 2.79 KB
/
Metronic.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
<?php
/**
* @copyright Copyright (c) 2014 icron.org
* @license http://yii2metronic.icron.org/license.html
*/
namespace icron\metronic;
use Yii;
use yii\web\AssetBundle;
use yii\web\View;
/**
* This is the class Metronic Component
*/
class Metronic extends \yii\base\Component
{
/**
* @var AssetBundle
*/
public static $assetsBundle;
// layout
const LAYOUT_FLUID = '';
const LAYOUT_BOXED = 'page-boxed';
const LAYOUT_FULL_WIDTH = 'page-full-width';
//color
const COLOR_BLACK = 'default';
const COLOR_BLUE = 'blue';
const COLOR_BROWN = 'brown';
const COLOR_PURPLE = 'purple';
const COLOR_GRAY = 'gray';
const COLOR_LIGHT = 'light';
//header
const HEADER_FIXED = 'fixed';
const HEADER_DEFAULT = 'default';
//sidebar
const SIDEBAR_FIXED = 'fixed';
const SIDEBAR_DEFAULT = 'default';
//sidebar position
const SIDEBAR_POSITION_LEFT = 'left';
const SIDEBAR_POSITION_RIGHT = 'right';
//footer
const FOOTER_DEFAULT = 'default';
const FOOTER_FIXED = 'fixed';
/**
* @var string Theme color
*/
public $color = self::COLOR_BLACK;
/**
* @var string Layout mode
*/
public $layoutOption = self::LAYOUT_FLUID;
/**
* @var string Header display
*/
public $headerOption = self::HEADER_DEFAULT;
/**
* @var string Sidebar display
*/
public $sidebarOption = self::SIDEBAR_DEFAULT;
/**
* @var string Sidebar position
*/
public $sidebarPosition = self::SIDEBAR_POSITION_LEFT;
/**
* @var string Footer display
*/
public $footerOption = self::FOOTER_DEFAULT;
/**
* @var string Component name used in the application
*/
public static $componentName = 'metronic';
public function init()
{
Yii::$classMap['yii\helpers\Html'] = __DIR__ . '\helpers\Html.php';
}
/**
* @return Metronic Get Metronic component
*/
public static function getComponent() {
return Yii::$app->{static::$componentName};
}
/**
* Get base url to metronic assets
* @param $view View
* @return string
*/
public static function getAssetsUrl($view)
{
if(static::$assetsBundle === null){
static::$assetsBundle = static::registerThemeAsset($view);
}
return (static::$assetsBundle instanceof AssetBundle) ? static::$assetsBundle->baseUrl : '';
}
/**
* Register Theme Asset
* @param $view View
* @return AssetBundle
*/
public static function registerThemeAsset($view)
{
/** @var AssetBundle $themeAsset */
$themeAsset = 'icron\metronic\Color' . ucfirst(static::getComponent()->color) . 'Asset';
static::$assetsBundle = $themeAsset::register($view);
return static::$assetsBundle;
}
}