Total Complexity | 2 |
Total Lines | 36 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
22 | class Bootstrap3 extends AbstractLibrary |
||
23 | implements ModalInterface, AlertInterface, ConfirmInterface |
||
24 | { |
||
25 | /** |
||
26 | * @const The library name |
||
27 | */ |
||
28 | const NAME = 'bootstrap3'; |
||
29 | |||
30 | /** |
||
31 | * The css files |
||
32 | * |
||
33 | * @var array |
||
34 | */ |
||
35 | protected $aCssFiles = ['css/bootstrap-dialog.min.css']; |
||
36 | |||
37 | /** |
||
38 | * The js files |
||
39 | * |
||
40 | * @var array |
||
41 | */ |
||
42 | protected $aJsFiles = ['js/bootstrap-dialog.min.js']; |
||
43 | |||
44 | /** |
||
45 | * @inheritDoc |
||
46 | */ |
||
47 | public function getName(): string |
||
48 | { |
||
49 | return self::NAME; |
||
50 | } |
||
51 | |||
52 | /** |
||
53 | * @inheritDoc |
||
54 | */ |
||
55 | public function getUri(): string |
||
58 | } |
||
59 | } |
||
60 |