AttachmentUpdateAsset.php 415 B

12345678910111213141516171819202122
  1. <?php
  2. namespace backend\assets;
  3. use yii\web\AssetBundle;
  4. class AttachmentUpdateAsset extends AssetBundle
  5. {
  6. public $sourcePath = '@backend/static';
  7. public $css = [
  8. 'attachment-update.css',
  9. 'attachment-info.css'
  10. ];
  11. public $js = [
  12. 'attachment-update.js',
  13. ];
  14. public $depends = [
  15. 'backend\assets\AppAsset',
  16. 'common\widgets\upload\JcropAsset'
  17. ];
  18. }
  19. ?>