p =& $plugin; if ( $this->p->debug->enabled ) { $this->p->debug->mark(); } $this->menu_id = $id; $this->menu_name = $name; $this->menu_lib = $lib; $this->menu_ext = $ext; $this->menu_metaboxes = array( 'debug_guide' => _x( 'Troubleshooting Guide', 'metabox title', 'wpsso' ), ); } /* * Remove all action buttons. */ protected function add_form_buttons( &$form_button_rows ) { $form_button_rows = array(); } /* * Callback method must be public for add_meta_box() hook. * * See WpssoAdmin->add_settings_page_metaboxes(). */ public function show_metabox_debug_guide( $obj, $mb ) { echo ''; echo '
'; echo $this->get_ext_file_content( $ext = 'wpsso', $rel_file = 'html/debug.html' ); echo '
'; } } }