woof_print_html_type_options_{type}
Wird von allen Erweiterungen verwendet, um den Einstellungsblock im Tab „Einstellungen“ der Plugin-Einstellungsseite zu zeichnen
Beispiel:
add_action('woof_print_html_type_options_' . $this->html_type, array($this, 'woof_print_html_type_options'), 10, 1);
//settings page hook
public function woof_print_html_type_options()
{
global $WOOF;
if($WOOF){
echo woof()->render_html($this->get_ext_path() . 'views/options.php', array(
'key' => $this->html_type,
"woof_settings" => get_option('woof_settings', array())
)
);
}
}
