Skip to content

Commit afd57cd

Browse files
committed
Missing asset
1 parent 3078c5b commit afd57cd

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

WebshellAsset.php

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
<?php
2+
namespace samdark\webshell;
3+
4+
use yii\web\AssetBundle;
5+
6+
/**
7+
* WebshellAsset is an asset bundle used to include custom overrides for terminal into the page.
8+
*
9+
* @author Alexander Makarov <sam@rmcreative.ru>
10+
*/
11+
class WebshellAsset extends AssetBundle
12+
{
13+
public $sourcePath = '@samdark/webshell/assets';
14+
15+
public $css = [
16+
'webshell.css',
17+
];
18+
19+
public $depends = [
20+
'samdark\webshell\JqueryTerminalAsset',
21+
];
22+
}

0 commit comments

Comments
 (0)