woof_print_html_type_options_{type}
Using by all extensions for drawing settings block in tab Settings of the plugin settings page
Example:
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()) ) ); } }