Plugin Directory

Changeset 794104


Ignore:
Timestamp:
10/26/2013 03:07:58 PM (12 years ago)
Author:
scriptrunner
Message:

updated readme, screenshot, labels on plugin options page, tested with WordPress 3.7

Location:
wp-admin-no-show/trunk
Files:
1 added
1 deleted
2 edited

Legend:

Unmodified
Added
Removed
  • wp-admin-no-show/trunk/readme.txt

    r761537 r794104  
    44Tags: admin bar, admin menu, dashboard, disable, remove, hide
    55Requires at least: 3.1
    6 Tested up to: 3.6
    7 Stable tag: 1.4.1
     6Tested up to: 3.7
     7Stable tag: 1.4.2
    88License: MIT License
    99License URI: http://www.opensource.org/licenses/mit-license.php
     
    1313== Description ==
    1414
    15 This plugin will redirect users assigned to the <em>subscriber</em> role when they try to access any wp-admin page (is_admin() is true). This plugin will also hide the admin bar for those users in WordPress 3.1+.
     15This plugin will gives the site admin the ability to "blacklist" roles (<em>subscriber</em>, <em>contributor</em>, <em>author</em>, and/or <em>editor</em>) and will redirect all users assiged to any blacklisted roles when they try to access any wp-admin page (is_admin() is true). This plugin will also hide the admin bar for those users in WordPress 3.1+.
    1616
    17 Users belonging to any of the other WordPress roles will continue to see and have access to the other sections of the WordPress admin that correspond to their role's capabilities.
     17Admin users and any users belonging to any of the other WordPress roles that have not been blacklisted will continue to see and have access to the other sections of the WordPress admin that correspond to their role's capabilities.
    1818
    1919<strong>Note: Version 1.0.0+ requires a minimum of WordPress 3.1. If you are running a version less than that, please upgrade your WordPress install before installing or upgrading.</strong>
     
    3939
    4040== Changelog ==
     41
     42= 1.4.2 =
     43* Updated readme.
     44* Update screenshot.
     45* Added section labels to plugin options page.
     46* Tested for WordPress 3.7 compatibility.
    4147
    4248= 1.4.1 =
  • wp-admin-no-show/trunk/wp-admin-no-show.php

    r761537 r794104  
    44Plugin URI: http://www.dougsparling.org
    55Description: Efectively blocks admin portion of site for selected user roles. Any attempt to manually navigate to wp-admin section of site and user will be redirected to selected site page. Hides admin bar.
    6 Version: 1.4.1
     6Version: 1.4.2
    77Author: Doug Sparling
    88Author URI: http://www.dougsparling.org
     
    163163        <table class="form-table">
    164164
    165             <tr valign="top">
    166                 <th scope="row"><?php _e( 'Roles Blacklist', 'wp-admin-no-show' ); ?></th>
     165            <tr>
    167166                <td>
     167                    <h3>User roles you want to blacklist</h3>
    168168                    <?php
    169169                    $blacklist_roles = get_option( 'wp_admin_no_show_blacklist_roles', array() );
     
    201201            ?>
    202202
    203             <tr valign="top">
    204                 <th scope="row"><?php _e( 'Redirect (wp-admin)' ); ?></th>
     203            <tr>
    205204                <td id="front-static-pages">
     205                    <h3>Where to redirect blacklisted users</h3>
    206206                    <fieldset>
    207207                        <legend class="screen-reader-text"><span><?php _e( 'WP Admin No Show Redirect' ); ?></span></legend>
     
    209209                            <label>
    210210                                <input name="wp_admin_no_show_redirect_type" type="radio" value="none" class="tog" <?php checked( 'none', get_option( 'wp_admin_no_show_redirect_type' ) ); ?> />
    211                                 <?php _e( 'No redirect' ); ?>
     211                                <?php _e( 'No redirect (Only hide WP Admin Bar, user will still see admin pages)' ); ?>
    212212                            </label>
    213213                        </p>
Note: See TracChangeset for help on using the changeset viewer.