Logo white

Alexey Boroda / artbox-ecommerce

Sign in
  • Sign in
  • Project
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • artbox-ecommerce
  • assets
  • ProductsAsset.php
  • first commit
    8ad6fbc1
    Alexey Boroda authored
    2018-12-04 17:37:21 +0200  
    Browse Code ยป
ProductsAsset.php 455 Bytes
Edit Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
<?php
    
    namespace artbox\catalog\assets;
    
    use yii\web\AssetBundle;
    
    class ProductsAsset extends AssetBundle
    {
        public $sourcePath = '@artbox/catalog/assets/src/product';
        
        
        public $js = [
            'js/products.js',
        ];

        public $css = [
            'css/product.css'
        ];
        
        public $depends = [
            'artbox\core\admin\assets\Switchery',
        ];
    }