Conditions | 1 |
Paths | 1 |
Total Lines | 16 |
Code Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
27 | protected function actions_section(){ |
||
28 | $html = ''; |
||
29 | |||
30 | $html .= "<div class='test-data-cpt'>"; |
||
31 | |||
32 | $html .= "<h3>"; |
||
33 | |||
34 | $html .= "<span class='label'>" . __( 'Clean Site', 'otm-test-content' ) . "</span>"; |
||
35 | $html .= $this->build_button( 'delete', 'all', __( 'Delete All Test Data', 'otm-test-content' ) ); |
||
36 | |||
37 | $html .= "</h3>"; |
||
38 | |||
39 | $html .= "</div>"; |
||
40 | |||
41 | return $html; |
||
42 | } |
||
43 | |||
58 |