| Conditions | 1 |
| Paths | 1 |
| Total Lines | 12 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 37 | public function initialize(array $config) |
||
| 38 | { |
||
| 39 | $this->_configWrite('prepareBtnClass', function (Helper $form, $options, $button) { |
||
| 40 | return $this->_prepareBtn($form, $options, $button); |
||
| 41 | }); |
||
| 42 | |||
| 43 | $this->_configWrite('prepareTooltip', function (Helper $html, $options, $tooltip) { |
||
| 44 | return $this->_prepareTooltip($html, $options, $tooltip); |
||
| 45 | }); |
||
| 46 | |||
| 47 | parent::initialize($config); |
||
| 48 | } |
||
| 49 | } |
||
| 50 |