Falcon_Handler_Postmark::register_option_fields PHP Метод

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

Register handler-specific option fields
См. также: bbSubscriptions_Handler::register_option_fields
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)
    {
        self::$current_options = $options;
        add_settings_field('bbsub_postmark_apikey', __('Postmark API Key', 'falcon'), array(__CLASS__, 'field_apikey'), $group, $section);
    }