Total Complexity | 5 |
Total Lines | 29 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
7 | class Modal extends Component |
||
8 | { |
||
9 | public $id, $title, $size, $centered; |
||
10 | public $index; |
||
11 | |||
12 | public function __construct( |
||
21 | } |
||
22 | |||
23 | public function modalsize() |
||
24 | { |
||
25 | return !is_null($this->size) ? 'modal-'.$this->size : ''; |
||
26 | } |
||
27 | |||
28 | public function zindex() |
||
29 | { |
||
30 | return $this->index * 1050; |
||
31 | } |
||
32 | |||
33 | public function render() |
||
36 | } |
||
37 | } |