Skip to:
Content

bbPress.org

Changeset 4234


Ignore:
Timestamp:
10/01/2012 10:26:44 PM (12 years ago)
Author:
johnjamesjacoby
Message:

Settings:

  • Tweak verbiage to make it more clean what each setting does.
  • Fixes confusion with "Global Access" and how it works.
  • Fixes #1904.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/bbp-admin/bbp-settings.php

    r4128 r4234  
    7979            // Edit lock setting
    8080            '_bbp_edit_lock' => array(
    81                 'title'             => __( 'Lock post editing after', 'bbpress' ),
     81                'title'             => __( 'Disallow editing after', 'bbpress' ),
    8282                'callback'          => 'bbp_admin_setting_callback_editlock',
    8383                'sanitize_callback' => 'intval',
     
    8787            // Throttle setting
    8888            '_bbp_throttle_time' => array(
    89                 'title'             => __( 'Throttle time', 'bbpress' ),
     89                'title'             => __( 'Throttle posting every', 'bbpress' ),
    9090                'callback'          => 'bbp_admin_setting_callback_throttle',
    9191                'sanitize_callback' => 'intval',
     
    119119            // Allow topic tags
    120120            '_bbp_allow_topic_tags' => array(
    121                 'title'             => __( 'Topic Tags', 'bbpress' ),
     121                'title'             => __( 'Topic tags', 'bbpress' ),
    122122                'callback'          => 'bbp_admin_setting_callback_topic_tags',
    123123                'sanitize_callback' => 'intval',
     
    127127            // Allow anonymous posting setting
    128128            '_bbp_allow_anonymous' => array(
    129                 'title'             => __( 'Anonymous Posting', 'bbpress' ),
     129                'title'             => __( 'Anonymous posting', 'bbpress' ),
    130130                'callback'          => 'bbp_admin_setting_callback_anonymous',
    131131                'sanitize_callback' => 'intval',
     
    135135            // Allow global access (on multisite)
    136136            '_bbp_allow_global_access' => array(
    137                 'title'             => __( 'Global Access', 'bbpress' ),
     137                'title'             => __( 'Default user role', 'bbpress' ),
    138138                'callback'          => 'bbp_admin_setting_callback_global_access',
    139139                'sanitize_callback' => 'intval',
     
    143143            // Allow fancy editor setting
    144144            '_bbp_use_wp_editor' => array(
    145                 'title'             => __( 'Fancy Editor', 'bbpress' ),
     145                'title'             => __( 'Fancy editor', 'bbpress' ),
    146146                'callback'          => 'bbp_admin_setting_callback_use_wp_editor',
    147147                'args'              => array(),
     
    151151            // Allow auto embedding setting
    152152            '_bbp_use_autoembed' => array(
    153                 'title'             => __( 'Auto-embed Links', 'bbpress' ),
     153                'title'             => __( 'Auto-embed links', 'bbpress' ),
    154154                'callback'          => 'bbp_admin_setting_callback_use_autoembed',
    155155                'sanitize_callback' => 'intval',
     
    485485 */
    486486function bbp_admin_setting_callback_global_access() {
    487 ?>
     487    global $wp_roles;
     488
     489    // Load roles if not set
     490    if ( ! isset( $wp_roles ) )
     491        $wp_roles = new WP_Roles();
     492
     493    $default_role = get_option( 'default_role', 'subscriber' );
     494    $default_role = $wp_roles->role_names[ $default_role ];
     495    $default_role = translate_user_role( $default_role ); ?>
    488496
    489497    <input id="_bbp_allow_global_access" name="_bbp_allow_global_access" type="checkbox" id="_bbp_allow_global_access" value="1" <?php checked( bbp_allow_global_access( false ) ); ?> />
    490     <label for="_bbp_allow_global_access"><?php _e( 'Allow all registered users to create topics and replies', 'bbpress' ); ?></label>
     498    <label for="_bbp_allow_global_access"><?php printf( __( 'Automatically assign "%s" role to new, registered visitors.', 'bbpress' ), $default_role ); ?></label>
    491499
    492500<?php
Note: See TracChangeset for help on using the changeset viewer.