Plugin Directory

Changeset 3495870


Ignore:
Timestamp:
03/31/2026 05:35:39 PM (15 hours ago)
Author:
solankisoftware
Message:

Added screenshots and improved readme.txt file

Location:
adminforge-admin-management-toolkit
Files:
5 added
4 edited

Legend:

Unmodified
Added
Removed
  • adminforge-admin-management-toolkit/tags/1.0.0/includes/class-afamt-settings.php

    r3495104 r3495870  
    3131    public function register_menu() : void {
    3232        add_options_page(
    33             __( 'Admin Toolkit', 'adminforge-admin-management-toolkit' ),
    34             __( 'Admin Toolkit', 'adminforge-admin-management-toolkit' ),
     33            __( 'Admin Management Toolkit', 'adminforge-admin-management-toolkit' ),
     34            __( 'Admin Management Toolkit', 'adminforge-admin-management-toolkit' ),
    3535            'manage_options',
    3636            'afamt',
     
    154154
    155155        echo '<div class="wrap">';
    156         echo '<h1>' . esc_html__( 'Admin Toolkit', 'adminforge-admin-management-toolkit' ) . '</h1>';
     156        echo '<h1>' . esc_html__( 'Admin Management Toolkit', 'adminforge-admin-management-toolkit' ) . '</h1>';
    157157
    158158        echo '<nav class="nav-tab-wrapper" style="margin-bottom:12px;">';
  • adminforge-admin-management-toolkit/tags/1.0.0/readme.txt

    r3495104 r3495870  
    99License URI: https://www.gnu.org/licenses/gpl-2.0.html
    1010
    11 AdminForge – Admin Management Toolkit provides admin menu control, dashboard widget management, and admin UI customization for a clean, focused free experience.
     11Streamline wp-admin with role-based menu visibility, dashboard widget cleanup, and lightweight admin UI customization.
    1212
    1313== Description ==
    1414
    15 Admin Toolkit helps you simplify and secure `wp-admin` without touching theme files.
     15AdminForge – Admin Management Toolkit (Free) helps site owners clean up the WordPress admin area without editing theme files or writing custom code.
     16
     17This version focuses on practical day-to-day admin improvements:
     18
     19* Hide admin menu items per role.
     20* Hide core dashboard widgets per role.
     21* Customize the admin footer text.
     22* Hide the front-end admin bar for selected roles.
     23
     24All settings are available from a single screen under **Settings -> Admin Toolkit**.
    1625
    1726= Main Features =
    1827
    19 * Admin menu control (hide menu items per role)
    20 * Dashboard widget manager (hide core dashboard widgets per role)
    21 * Admin UI customization (custom footer text, hide front-end admin bar per role)
     28* **Admin menu control**
     29  * Detects currently registered admin menu slugs.
     30  * Lets you hide selected menu items for each role.
     31  * Helpful for reducing clutter for editors, authors, and shop managers.
     32
     33* **Dashboard widget manager**
     34  * Toggle common core dashboard widgets per role.
     35  * Keeps the Dashboard focused on only what each role needs.
     36
     37* **Admin UI customization**
     38  * Replace the default admin footer text.
     39  * Hide the front-end admin bar for specific roles.
     40  * Uses safe sanitization for saved values.
     41
     42= Included in this free version =
     43
     44* Admin menu control
     45* Dashboard widget control
     46* Admin footer customization
     47* Front-end admin bar visibility by role
     48
     49= Not included in this free version =
     50
     51* Role-based wp-admin access restriction
     52* Performance tuning options
     53* Login branding and role-based login redirects
     54* XML-RPC and hardening toggles
    2255
    2356== Installation ==
    2457
    25 1. Upload the plugin folder to `wp-content/plugins/` or copy it into place.
     581. Upload the plugin folder to `/wp-content/plugins/`.
    26592. Activate **Admin Toolkit** in Plugins.
    27 3. Go to Settings → Admin Toolkit (or click **Settings** on the Plugins page).
     603. Go to **Settings -> Admin Toolkit**.
     614. Configure options by tab and click **Save Changes**.
    2862
    2963== Usage ==
    3064
    31 * Go to **Settings → AdminForge – Admin Management Toolkit**
    32 * Configure using the tabs:
    33   * Admin menu control
    34   * Dashboard widgets
    35   * Admin UI customization
     651. Open **Settings -> Admin Toolkit**.
     662. Choose a tab:
     67   * **Admin menu control** - hide selected menu slugs per role.
     68   * **Dashboard widgets** - hide selected core dashboard widgets per role.
     69   * **Admin UI customization** - set custom footer text and admin bar visibility.
     703. Save changes.
     71
     72= Tips =
     73
     74* Menu slug list is generated from current admin menus. 
     75  If a plugin menu is missing, open any admin page once, then reload the tab.
     76* Role-based settings apply to users who have that role.
     77* Front-end admin bar visibility only affects the site front end, not wp-admin screens.
    3678
    3779== Frequently Asked Questions ==
    3880
     81= Who can change plugin settings? =
     82
     83Only users with the `manage_options` capability can access and save settings.
     84
    3985= Can this lock me out of wp-admin? =
    4086
    41 No. The free version does not include wp-admin access restriction settings.
     87No. This free version does not include wp-admin access restriction features.
    4288
    4389= Does it remove plugin-added dashboard widgets? =
    4490
    45 The built-in Dashboard widget toggles target core widget IDs. Plugin-added widgets may require custom IDs.
     91The built-in toggles target common core widget IDs. Third-party widgets may require their own widget IDs.
     92
     93= Does this plugin edit theme or plugin files? =
     94
     95No. It only stores settings and applies WordPress hooks/filters at runtime.
     96
     97= Where are settings stored? =
     98
     99Settings are stored in one WordPress option: `afamt_options`.
     100
     101== Screenshots ==
     102
     1031. Admin Menu Control Tab
     1042. Dashboard widget Tab 
     1053. Admin UI customization Tab
     106
    46107
    47108== Uninstall ==
    48109
    49 When you delete the plugin from WordPress, it removes its saved options (`afamt_options`).
     110When deleted from the Plugins screen, the plugin removes its saved option (`afamt_options`).
    50111
    51112== Changelog ==
    52113
    53114= 1.0.0 =
    54 * Initial release.
     115* Initial public release.
     116* Free feature set includes:
     117  * Admin menu control by role
     118  * Dashboard widget control by role
     119  * Admin footer text customization
     120  * Front-end admin bar visibility by role
    55121
  • adminforge-admin-management-toolkit/trunk/includes/class-afamt-settings.php

    r3495104 r3495870  
    3131    public function register_menu() : void {
    3232        add_options_page(
    33             __( 'Admin Toolkit', 'adminforge-admin-management-toolkit' ),
    34             __( 'Admin Toolkit', 'adminforge-admin-management-toolkit' ),
     33            __( 'Admin Management Toolkit', 'adminforge-admin-management-toolkit' ),
     34            __( 'Admin Management Toolkit', 'adminforge-admin-management-toolkit' ),
    3535            'manage_options',
    3636            'afamt',
     
    154154
    155155        echo '<div class="wrap">';
    156         echo '<h1>' . esc_html__( 'Admin Toolkit', 'adminforge-admin-management-toolkit' ) . '</h1>';
     156        echo '<h1>' . esc_html__( 'Admin Management Toolkit', 'adminforge-admin-management-toolkit' ) . '</h1>';
    157157
    158158        echo '<nav class="nav-tab-wrapper" style="margin-bottom:12px;">';
  • adminforge-admin-management-toolkit/trunk/readme.txt

    r3495104 r3495870  
    99License URI: https://www.gnu.org/licenses/gpl-2.0.html
    1010
    11 AdminForge – Admin Management Toolkit provides admin menu control, dashboard widget management, and admin UI customization for a clean, focused free experience.
     11Streamline wp-admin with role-based menu visibility, dashboard widget cleanup, and lightweight admin UI customization.
    1212
    1313== Description ==
    1414
    15 Admin Toolkit helps you simplify and secure `wp-admin` without touching theme files.
     15AdminForge – Admin Management Toolkit (Free) helps site owners clean up the WordPress admin area without editing theme files or writing custom code.
     16
     17This version focuses on practical day-to-day admin improvements:
     18
     19* Hide admin menu items per role.
     20* Hide core dashboard widgets per role.
     21* Customize the admin footer text.
     22* Hide the front-end admin bar for selected roles.
     23
     24All settings are available from a single screen under **Settings -> Admin Toolkit**.
    1625
    1726= Main Features =
    1827
    19 * Admin menu control (hide menu items per role)
    20 * Dashboard widget manager (hide core dashboard widgets per role)
    21 * Admin UI customization (custom footer text, hide front-end admin bar per role)
     28* **Admin menu control**
     29  * Detects currently registered admin menu slugs.
     30  * Lets you hide selected menu items for each role.
     31  * Helpful for reducing clutter for editors, authors, and shop managers.
     32
     33* **Dashboard widget manager**
     34  * Toggle common core dashboard widgets per role.
     35  * Keeps the Dashboard focused on only what each role needs.
     36
     37* **Admin UI customization**
     38  * Replace the default admin footer text.
     39  * Hide the front-end admin bar for specific roles.
     40  * Uses safe sanitization for saved values.
     41
     42= Included in this free version =
     43
     44* Admin menu control
     45* Dashboard widget control
     46* Admin footer customization
     47* Front-end admin bar visibility by role
     48
     49= Not included in this free version =
     50
     51* Role-based wp-admin access restriction
     52* Performance tuning options
     53* Login branding and role-based login redirects
     54* XML-RPC and hardening toggles
    2255
    2356== Installation ==
    2457
    25 1. Upload the plugin folder to `wp-content/plugins/` or copy it into place.
     581. Upload the plugin folder to `/wp-content/plugins/`.
    26592. Activate **Admin Toolkit** in Plugins.
    27 3. Go to Settings → Admin Toolkit (or click **Settings** on the Plugins page).
     603. Go to **Settings -> Admin Toolkit**.
     614. Configure options by tab and click **Save Changes**.
    2862
    2963== Usage ==
    3064
    31 * Go to **Settings → AdminForge – Admin Management Toolkit**
    32 * Configure using the tabs:
    33   * Admin menu control
    34   * Dashboard widgets
    35   * Admin UI customization
     651. Open **Settings -> Admin Toolkit**.
     662. Choose a tab:
     67   * **Admin menu control** - hide selected menu slugs per role.
     68   * **Dashboard widgets** - hide selected core dashboard widgets per role.
     69   * **Admin UI customization** - set custom footer text and admin bar visibility.
     703. Save changes.
     71
     72= Tips =
     73
     74* Menu slug list is generated from current admin menus. 
     75  If a plugin menu is missing, open any admin page once, then reload the tab.
     76* Role-based settings apply to users who have that role.
     77* Front-end admin bar visibility only affects the site front end, not wp-admin screens.
    3678
    3779== Frequently Asked Questions ==
    3880
     81= Who can change plugin settings? =
     82
     83Only users with the `manage_options` capability can access and save settings.
     84
    3985= Can this lock me out of wp-admin? =
    4086
    41 No. The free version does not include wp-admin access restriction settings.
     87No. This free version does not include wp-admin access restriction features.
    4288
    4389= Does it remove plugin-added dashboard widgets? =
    4490
    45 The built-in Dashboard widget toggles target core widget IDs. Plugin-added widgets may require custom IDs.
     91The built-in toggles target common core widget IDs. Third-party widgets may require their own widget IDs.
     92
     93= Does this plugin edit theme or plugin files? =
     94
     95No. It only stores settings and applies WordPress hooks/filters at runtime.
     96
     97= Where are settings stored? =
     98
     99Settings are stored in one WordPress option: `afamt_options`.
     100
     101== Screenshots ==
     102
     1031. Admin Menu Control Tab
     1042. Dashboard widget Tab 
     1053. Admin UI customization Tab
     106
    46107
    47108== Uninstall ==
    48109
    49 When you delete the plugin from WordPress, it removes its saved options (`afamt_options`).
     110When deleted from the Plugins screen, the plugin removes its saved option (`afamt_options`).
    50111
    51112== Changelog ==
    52113
    53114= 1.0.0 =
    54 * Initial release.
     115* Initial public release.
     116* Free feature set includes:
     117  * Admin menu control by role
     118  * Dashboard widget control by role
     119  * Admin footer text customization
     120  * Front-end admin bar visibility by role
    55121
Note: See TracChangeset for help on using the changeset viewer.