From 9c14d6e3ebc6399ca65998aa8db3731dcb55fb9f Mon Sep 17 00:00:00 2001 From: Jan Beck Date: Fri, 13 Feb 2015 14:31:40 -0400 Subject: [PATCH] changed "dashboard" to "admin area" dashboard-specific becomes admin-specific --- README.md | 10 +++++----- plugin-name/trunk/admin/class-plugin-name-admin.php | 10 +++++----- plugin-name/trunk/admin/css/plugin-name-admin.css | 2 +- plugin-name/trunk/admin/js/plugin-name-admin.js | 2 +- .../admin/partials/plugin-name-admin-display.php | 4 ++-- plugin-name/trunk/includes/class-plugin-name.php | 12 ++++++------ plugin-name/trunk/plugin-name.php | 6 +++--- .../trunk/public/class-plugin-name-public.php | 2 +- 8 files changed, 24 insertions(+), 24 deletions(-) diff --git a/README.md b/README.md index 0bb4ff3..8b33d1b 100644 --- a/README.md +++ b/README.md @@ -27,7 +27,7 @@ Instead, the options are: ### Copying a Directory 1. Copy the `trunk` directory into your `wp-content/plugins` directory. You may wish to rename this to something else. -2. In the WordPress dashboard, navigation to the *Plugins* page +2. In the WordPress admin area, navigation to the *Plugins* page Locate the menu item that reads “The WordPress Plugin Boilerplate.” 3. Click on *Activate.* @@ -37,7 +37,7 @@ Locate the menu item that reads “The WordPress Plugin Boilerplate.” 1. Copy the `WordPress-Plugin-Boilerplate` directory into your `wp-content/plugins` directory. 2. Create a symbolic link between the `trunk` directory and the plugin. For example: `ln -s plugin-name/trunk /path/to/wordpress/wp-content/plugins/plugin-name` -3. In the WordPress dashboard, navigation to the *Plugins* page +3. In the WordPress admin area, navigation to the *Plugins* page Locate the menu item that reads “The WordPress Plugin Boilerplate.” 4. Click on *Activate.* @@ -45,7 +45,7 @@ Locate the menu item that reads “The WordPress Plugin Boilerplate.” 1. Copy the `WordPress-Plugin-Boilerplate` directory into your `wp-content/plugins` directory. 2. Create a symbolic link between the `trunk` directory and the plugin. For example: `mklink /J path\to\wp-content\plugins \path\to\WordPress-Plugin-Boilerplate\trunk\plugin-name` -3. In the WordPress dashboard, navigation to the *Plugins* page +3. In the WordPress admin area, navigation to the *Plugins* page Locate the menu item that reads “The WordPress Plugin Boilerplate.” 4. Click on *Activate.* @@ -89,8 +89,8 @@ For reference, [here's a discussion](http://make.wordpress.org/themes/2013/03/04 Note that if you include your own classes, or third-party libraries, there are three locations in which said files may go: -* `plugin-name/includes` is where functionality shared between the dashboard and the public-facing parts of the side reside -* `plugin-name/admin` is for all dashboard-specific functionality +* `plugin-name/includes` is where functionality shared between the admin area and the public-facing parts of the site reside +* `plugin-name/admin` is for all admin-specific functionality * `plugin-name/public` is for all public-facing functionality Note that previous versions of the Boilerplate did not include `Plugin_Name_Loader` but this class is used to register all filters and actions with WordPress. diff --git a/plugin-name/trunk/admin/class-plugin-name-admin.php b/plugin-name/trunk/admin/class-plugin-name-admin.php index 25944dc..3ef8d60 100644 --- a/plugin-name/trunk/admin/class-plugin-name-admin.php +++ b/plugin-name/trunk/admin/class-plugin-name-admin.php @@ -1,7 +1,7 @@