| Conditions | 1 |
| Paths | 1 |
| Total Lines | 19 |
| Code Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 23 | public function __construct(ManageBlock $manager, $id, array $options = []) |
||
| 24 | { |
||
| 25 | parent::__construct($manager, $id, $options + [ |
||
| 26 | |||
| 27 | 'title' => null, |
||
| 28 | 'class' => 'cell-fitted', |
||
| 29 | 'filters' => [ |
||
| 30 | |||
| 31 | 'options' => [ |
||
| 32 | |||
| 33 | '=1' => 'Activated', |
||
| 34 | '=0' => 'Deactivated' |
||
| 35 | |||
| 36 | ] |
||
| 37 | |||
| 38 | ] |
||
| 39 | |||
| 40 | ]); |
||
| 41 | } |
||
| 42 | |||
| 58 |