Newer
Older
<?php
/**
* Art-ER Attrattività, ricerca e territorio dell’Emilia-Romagna
* OPEN 2.0
*
* @see https://www.open2.0.regione.lombardia.it Developers'community
* @license GPLv3
* @license https://opensource.org/licenses/gpl-3.0.html GNU General Public License version 3
* @category CategoryName
* @author Elite Division S.r.l.
*/
use yii\web\AssetBundle;
/**
* Class TicketAsset
*/
class TicketAsset extends AssetBundle
{
/**
* @inheritdoc
*/
public $sourcePath = '@vendor/arter/amos-ticket/src/assets/web';
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
/**
* @inheritdoc
*/
public $publishOptions = [
'forceCopy' => YII_DEBUG,
];
/**
* @inheritdoc
*/
public $css = [
'less/ticket.less',
];
/**
* @inheritdoc
*/
public $js = [
'js/ticket.js'
];
/**
* @inheritdoc
*/
public $depends = [
'yii\web\JqueryAsset',
];
public function init()
{
$moduleL = \Yii::$app->getModule('layout');
if (!empty(\Yii::$app->params['dashboardEngine']) && \Yii::$app->params['dashboardEngine'] == WidgetAbstract::ENGINE_ROWS) {
$this->css = ['less/ticket_fullsize.less'];
}
parent::init();
}
}