UserswitchAsset.php 524 B

12345678910111213141516171819202122232425262728293031
  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 yii\debug;
  8. use yii\web\AssetBundle;
  9. /**
  10. * User switch asset bundle
  11. *
  12. * @author Semen Dubina <yii2debug@sam002.net>
  13. * @since 2.0.10
  14. */
  15. class UserswitchAsset extends AssetBundle
  16. {
  17. /**
  18. * {@inheritdoc}
  19. */
  20. public $sourcePath = '@yii/debug/assets';
  21. /**
  22. * {@inheritdoc}
  23. */
  24. public $js = [
  25. 'js/userswitch.js',
  26. ];
  27. }