| Conditions | 1 |
| Paths | 1 |
| Total Lines | 14 |
| Code Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 15 | public function beforeToHtml(\Magento\User\Block\User\Edit\Tabs $subject) |
||
| 16 | { |
||
| 17 | $subject->addTabAfter( |
||
| 18 | 'devdashboardconfig', |
||
| 19 | [ |
||
| 20 | 'label' => __('Dashboard Config'), |
||
| 21 | 'title' => __('Dashboard Config'), |
||
| 22 | 'content' => $subject->getLayout()->createBlock(UserEditTab::class)->toHtml(), |
||
| 23 | 'active' => true |
||
| 24 | ], |
||
| 25 | 'roles_section' |
||
| 26 | ); |
||
| 27 | |||
| 28 | return []; |
||
| 29 | } |
||
| 31 |