1
0
Fork 0
mirror of https://github.com/inretio/WordPress-Plugin-Boilerplate synced 2025-04-19 21:55:35 +03:00

changed "dashboard" to "admin area"

dashboard-specific becomes admin-specific
This commit is contained in:
Jan Beck 2015-02-13 14:31:40 -04:00
parent b469237bda
commit 9c14d6e3eb
8 changed files with 24 additions and 24 deletions

View file

@ -1,7 +1,7 @@
<?php
/**
* The dashboard-specific functionality of the plugin.
* The admin-specific functionality of the plugin.
*
* @link http://example.com
* @since 1.0.0
@ -11,10 +11,10 @@
*/
/**
* The dashboard-specific functionality of the plugin.
* The admin-specific functionality of the plugin.
*
* Defines the plugin name, version, and two examples hooks for how to
* enqueue the dashboard-specific stylesheet and JavaScript.
* enqueue the admin-specific stylesheet and JavaScript.
*
* @package Plugin_Name
* @subpackage Plugin_Name/admin
@ -55,7 +55,7 @@ class Plugin_Name_Admin {
}
/**
* Register the stylesheets for the Dashboard.
* Register the stylesheets for the admin area.
*
* @since 1.0.0
*/
@ -78,7 +78,7 @@ class Plugin_Name_Admin {
}
/**
* Register the JavaScript for the dashboard.
* Register the JavaScript for the admin area.
*
* @since 1.0.0
*/