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