Falcon_Handler::register_option_fields PHP Метод

register_option_fields() публичный статический Метод

This method is expected to call add_settings_field() as many times as needed for the relevant option fields. The $group and $section params are the 4th and 5th parameters to add_settings_field() respectively. e.g. add_settings_field('bbsub_postmark_apikey', 'Postmark API Key', array(__CLASS__, 'field_apikey'), $group, $section) Note that you need to use "bbsub_handler_options" as the name of the POST variable in your callback. e.g. echo ';
public static register_option_fields ( string $group, string $section, array $options )
$group string Settings group (4th parameter to `add_settings_field`)
$section string Settings section (5th parameter to `add_settings_field`)
$options array Current options
    public static function register_option_fields($group, $section, $options);