1: <?php
2:
3: 4: 5:
6: class Quform_Admin_Page_Help extends Quform_Admin_Page
7: {
8:
9: public function init()
10: {
11: $this->template = QUFORM_TEMPLATE_PATH . '/admin/help.php';
12: }
13:
14: 15: 16: 17: 18: 19: 20:
21: public function getNavHtml(array $currentForm = null, array $extra = array())
22: {
23: $extra[40] = sprintf(
24: '<div class="qfb-nav-item qfb-nav-page-info"><i class="qfb-nav-page-icon qfb-mdi qfb-mdi-help_outline"></i><span class="qfb-nav-page-title">%s</span></div>',
25: esc_html__('Help', 'quform')
26: );
27:
28: return parent::getNavHtml($currentForm, $extra);
29: }
30: }
31: