ViewAsset.php 726 B

1234567891011121314151617181920212223242526272829
  1. <?php
  2. /**
  3. * Author: lf
  4. * Blog: https://blog.feehi.com
  5. * Email: job@feehi.com
  6. * Created at: 2016-08-12 15:25
  7. */
  8. namespace frontend\assets;
  9. class ViewAsset extends \yii\web\AssetBundle
  10. {
  11. public $css = [
  12. 'static/syntaxhighlighter/styles/shCoreDefault.css'
  13. ];
  14. public $js = [
  15. 'static/syntaxhighlighter/scripts/shCore.js',
  16. 'static/syntaxhighlighter/scripts/shBrushJScript.js',
  17. 'static/syntaxhighlighter/scripts/shBrushPython.js',
  18. 'static/syntaxhighlighter/scripts/shBrushPhp.js',
  19. 'static/syntaxhighlighter/scripts/shBrushJava.js',
  20. 'static/syntaxhighlighter/scripts/shBrushCss.js',
  21. ];
  22. public $depends = [
  23. 'frontend\assets\AppAsset'
  24. ];
  25. }