Conditions | 1 |
Paths | 1 |
Total Lines | 23 |
Code Lines | 10 |
Lines | 0 |
Ratio | 0 % |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
25 | public function init() |
||
26 | { |
||
27 | // define the path that your publishable resources live |
||
28 | $this->sourcePath = __DIR__.'/dist'; |
||
29 | |||
30 | // define the dependencies |
||
31 | $this->depends = [ |
||
32 | CpAsset::class, |
||
33 | AnalyticsAsset::class, |
||
34 | ]; |
||
35 | |||
36 | // define the relative path to CSS/JS files that should be registered with the page |
||
37 | // when this asset bundle is registered |
||
38 | $this->js = [ |
||
39 | 'AccountExplorer.js', |
||
40 | ]; |
||
41 | |||
42 | $this->css = [ |
||
43 | 'AccountExplorer.css', |
||
44 | 'settings.css', |
||
45 | ]; |
||
46 | |||
47 | parent::init(); |
||
48 | } |
||
49 | } |