| Conditions | 1 |
| Paths | 1 |
| Total Lines | 11 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 13 | public function run() |
||
| 14 | { |
||
| 15 | return ButtonDropdown::widget([ |
||
| 16 | 'label' => '<i class="fa fa-share-square-o"></i> ' . Yii::t('hipanel', 'Export'), |
||
| 17 | 'encodeLabel' => false, |
||
| 18 | 'options' => ['class' => 'btn-default btn-sm'], |
||
| 19 | 'dropdown' => [ |
||
| 20 | 'items' => $this->getItems(), |
||
| 21 | ], |
||
| 22 | ]); |
||
| 23 | } |
||
| 24 | |||
| 41 |