nystudio107 /
craft-instantanalytics
| 1 | <?php |
||
| 2 | /** |
||
| 3 | * Instant Analytics plugin for Craft CMS |
||
| 4 | * |
||
| 5 | * Instant Analytics brings full Google Analytics support to your Twig templates |
||
| 6 | * |
||
| 7 | * @link https://nystudio107.com |
||
|
0 ignored issues
–
show
Coding Style
introduced
by
Loading history...
|
|||
| 8 | * @copyright Copyright (c) 2017 nystudio107 |
||
|
0 ignored issues
–
show
|
|||
| 9 | */ |
||
|
0 ignored issues
–
show
|
|||
| 10 | |||
| 11 | namespace nystudio107\instantanalytics\assetbundles\instantanalytics; |
||
| 12 | |||
| 13 | use craft\web\AssetBundle; |
||
| 14 | use craft\web\assets\cp\CpAsset; |
||
| 15 | use craft\web\assets\vue\VueAsset; |
||
| 16 | |||
| 17 | /** |
||
|
0 ignored issues
–
show
|
|||
| 18 | * @author nystudio107 |
||
|
0 ignored issues
–
show
Content of the @author tag must be in the form "Display Name <[email protected]>"
Loading history...
|
|||
| 19 | * @package Instant Analytics |
||
|
0 ignored issues
–
show
|
|||
| 20 | * @since 1.0.0 |
||
|
0 ignored issues
–
show
|
|||
| 21 | */ |
||
|
0 ignored issues
–
show
|
|||
| 22 | class InstantAnalyticsWelcomeAsset extends AssetBundle |
||
| 23 | { |
||
| 24 | // Public Methods |
||
| 25 | // ========================================================================= |
||
| 26 | |||
| 27 | /** |
||
|
0 ignored issues
–
show
|
|||
| 28 | * @inheritdoc |
||
| 29 | */ |
||
|
0 ignored issues
–
show
|
|||
| 30 | public function init() |
||
| 31 | { |
||
| 32 | $this->sourcePath = '@nystudio107/instantanalytics/web/assets/dist'; |
||
| 33 | |||
| 34 | $this->depends = [ |
||
| 35 | CpAsset::class, |
||
| 36 | VueAsset::class, |
||
| 37 | InstantAnalyticsAsset::class, |
||
| 38 | ]; |
||
| 39 | |||
| 40 | parent::init(); |
||
| 41 | } |
||
| 42 | } |
||
| 43 |