Falcon_Admin::settings_field_send_to_author PHP Метод

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

Print field for the Send to Author checkbox
См. также: self::init()
public static settings_field_send_to_author ( )
    public static function settings_field_send_to_author()
    {
        $current = Falcon::get_option('bbsub_send_to_author', '');
        echo '<label><input type="checkbox" name="bbsub_send_to_author" ' . checked($current, true, false) . ' /> ';
        _e('Send a notification to the reply author', 'falcon');
        echo '</label>';
    }