Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
17 | public function __construct( |
||
18 | $id, $topclass = null, $title = 'Filter Range', $icon = 'far fa-calendar-alt', |
||
19 | $init = 2, $callback = null, $inputclass = null |
||
20 | ) { |
||
21 | $this->id = $id; |
||
22 | $this->topclass = $topclass; |
||
23 | $this->inputclass = $inputclass; |
||
24 | $this->title = $title; |
||
25 | $this->icon = $icon; |
||
26 | $this->init = $init; |
||
27 | $this->callback = $callback; |
||
28 | } |
||
49 |