Place the TODOs in the correct position

This commit is contained in:
Ulrich Pogson 2013-11-01 14:53:10 +01:00
parent 7aa4d72497
commit b463e3398c
1 changed files with 5 additions and 4 deletions

View File

@ -38,7 +38,6 @@ if ( ! defined( 'WPINC' ) ) {
* TODO:
*
* - replace `class-plugin-name.php` with the name of the plugin's class file
* - replace `class-plugin-admin.php` with the name of the plugin's admin file
*
*/
require_once( plugin_dir_path( __FILE__ ) . '/public/class-plugin-name.php' );
@ -60,8 +59,6 @@ register_deactivation_hook( __FILE__, array( 'Plugin_Name', 'deactivate' ) );
*
* - replace Plugin_Name with the name of the class defined in
* `class-plugin-name.php`
* - replace Plugin_Name_Admin with the name of the class defined in
* `class-plugin-name-admin.php`
*/
add_action( 'plugins_loaded', array( 'Plugin_Name', 'get_instance' ) );
@ -72,6 +69,10 @@ add_action( 'plugins_loaded', array( 'Plugin_Name', 'get_instance' ) );
/*
* TODO:
*
* - replace `class-plugin-admin.php` with the name of the plugin's admin file
* - replace Plugin_Name_Admin with the name of the class defined in
* `class-plugin-name-admin.php`
*
* If you want to include Ajax within the dashboard, change the following
* conditional to:
*
@ -86,4 +87,4 @@ if ( is_admin() && ( ! defined( 'DOING_AJAX' ) || ! DOING_AJAX ) ) {
require_once( plugin_dir_path( __FILE__ ) . '/admin/class-plugin-name-admin.php' );
add_action( 'plugins_loaded', array( 'Plugin_Name_Admin', 'get_instance' ) );
}
}