Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

35 Zeilen
825B

  1. <?php
  2. /**
  3. * @link http://www.yiiframework.com/
  4. * @copyright Copyright (c) 2008 Yii Software LLC
  5. * @license http://www.yiiframework.com/license/
  6. */
  7. namespace backend\assets;
  8. use yii\web\AssetBundle;
  9. /**
  10. * @author Qiang Xue <qiang.xue@gmail.com>
  11. * @since 2.0
  12. */
  13. class AppAsset extends AssetBundle
  14. {
  15. public $basePath = '@webroot';
  16. public $baseUrl = '@web';
  17. public $css = [
  18. 'css/site.css',
  19. //'../../frontend/web/js/jquery-ui-1.11.4.custom/jquery-ui.min.css',
  20. //'../../frontend/web/js/jquery-ui-1.11.4.custom/jquery-ui.theme.css',
  21. 'css/screen.css?v=2',
  22. ];
  23. public $js = [
  24. 'js/jquery-ui-1.12.1.custom/jquery-ui.min.js',
  25. 'js/lechatdesnoisettes.js?v=2',
  26. ];
  27. public $depends = [
  28. 'yii\bootstrap\BootstrapAsset',
  29. 'yii\web\YiiAsset',
  30. ];
  31. }