SwitcherAsset.php 275 B

123456789101112131415
  1. <?php
  2. namespace backend\assets;
  3. class SwitcherAsset extends \yii\web\AssetBundle
  4. {
  5. public $sourcePath = '@backend/static';
  6. public $js = [
  7. 'plugins/switchery/switchery.min.js'
  8. ];
  9. public $css = [
  10. 'plugins/switchery/switchery.min.css'
  11. ];
  12. }