Total Complexity | 2 |
Total Lines | 22 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 0 |
1 | <?php |
||
17 | class AdminPageFrameworkLoader_AdminPage_Help_Debug extends AdminPageFrameworkLoader_AdminPage_Tab_Base { |
||
18 | |||
19 | /** |
||
20 | * Triggered when the tab is loaded. |
||
21 | */ |
||
22 | public function replyToLoadTab( $oAdminPage ) { |
||
23 | |||
24 | $oAdminPage->addSettingFIeld( |
||
25 | array( |
||
26 | 'field_id' => 'reset', |
||
27 | 'type' => 'submit', |
||
28 | 'reset' => true, |
||
29 | 'show_title_column' => false, |
||
30 | 'value' => __( 'Reset', 'admin-page-framework-loader' ), |
||
31 | ) |
||
32 | ); |
||
33 | } |
||
34 | |||
35 | public function replyToDoTab( $oFactory ) { |
||
39 | |||
40 | } |
||
43 |