pagehook}_settings_page_form to insert table and settings form. * * Can be overridden in a child class to achieve complete control over the settings page output. * * @since 1.8.0 */ public function admin() { include GENESIS_VIEWS_DIR . '/pages/genesis-admin-form.php'; } /** * Initialize the settings page, by hooking the form into the page. * * @since 1.8.0 */ public function settings_init() { add_action( "{$this->pagehook}_settings_page_form", array( $this, 'form' ) ); } }