1
0
Fork 0
mirror of https://github.com/inretio/WordPress-Plugin-Boilerplate synced 2024-06-01 18:09:41 +03:00

Adjusting comment typo and removing closing if statement (issue #1)

This commit is contained in:
Tom McFarlin 2011-10-06 22:55:47 -04:00
parent 49ac1357eb
commit e1b604d921

View file

@ -37,26 +37,24 @@ class TODO {
*/ */
function __construct() { function __construct() {
// Define constnats used throughout the plugin // Define constants used throughout the plugin
$this->init_plugin_constants(); $this->init_plugin_constants();
load_plugin_textdomain(PLUGIN_LOCALE, false, dirname(plugin_basename(__FILE__)) . '/lang'); load_plugin_textdomain(PLUGIN_LOCALE, false, dirname(plugin_basename(__FILE__)) . '/lang');
/* /*
* TODO: * TODO:
* Define the custom functionality for your plugin. The first parameter of the * Define the custom functionality for your plugin. The first parameter of the
* add_action/add_filter calls are the hooks into which your code should fire. * add_action/add_filter calls are the hooks into which your code should fire.
* *
* The second parameter is the function name located within this class. See the stubs * The second parameter is the function name located within this class. See the stubs
* later in the file. * later in the file.
* *
* For more information: * For more information:
* http://codex.wordpress.org/Plugin_API#Hooks.2C_Actions_and_Filters * http://codex.wordpress.org/Plugin_API#Hooks.2C_Actions_and_Filters
*/ */
add_action('TODO', array($this, 'action_method_name')); add_action('TODO', array($this, 'action_method_name'));
add_filter('TODO', array($this, 'filter_method_name')); add_filter('TODO', array($this, 'filter_method_name'));
} // end if
} // end constructor } // end constructor
@ -64,69 +62,69 @@ class TODO {
* Core Functions * Core Functions
*---------------------------------------------*/ *---------------------------------------------*/
/** /**
* Note: Actions are points in the execution of a page or process * Note: Actions are points in the execution of a page or process
* lifecycle that WordPress fires. * lifecycle that WordPress fires.
*/ */
function action_method_name() { function action_method_name() {
// TODO define your action method here // TODO define your action method here
} // end action_method_name } // end action_method_name
/** /**
* Note: Filters are points of execution in which WordPress modifies data * Note: Filters are points of execution in which WordPress modifies data
* before saving it or sending it to the browser. * before saving it or sending it to the browser.
*/ */
function filter_method_name() { function filter_method_name() {
// TODO define your filter method here // TODO define your filter method here
} // end filter_method_name } // end filter_method_name
/*--------------------------------------------* /*--------------------------------------------*
* Private Functions * Private Functions
*---------------------------------------------*/ *---------------------------------------------*/
/** /**
* Initializes constants used for convenience throughout * Initializes constants used for convenience throughout
* the plugin. * the plugin.
*/ */
private function init_plugin_constants() { private function init_plugin_constants() {
/* TODO /* TODO
* *
* This provides the unique identifier for your plugin used in * This provides the unique identifier for your plugin used in
* localizing the strings used throughout. * localizing the strings used throughout.
* *
* For example: wordpress-widget-boilerplate-locale. * For example: wordpress-widget-boilerplate-locale.
*/ */
if(!defined('PLUGIN_LOCALE')) { if(!defined('PLUGIN_LOCALE')) {
define('PLUGIN_LOCALE', 'plugin-name-locale'); define('PLUGIN_LOCALE', 'plugin-name-locale');
} // end if } // end if
/* TODO /* TODO
* *
* Define this as the name of your plugin. This is what shows * Define this as the name of your plugin. This is what shows
* in the Widgets area of WordPress. * in the Widgets area of WordPress.
* *
* For example: WordPress Widget Boilerplate. * For example: WordPress Widget Boilerplate.
*/ */
if(!defined('PLUGIN_NAME')) { if(!defined('PLUGIN_NAME')) {
define('PLUGIN_NAME', 'Plugin Name'); define('PLUGIN_NAME', 'Plugin Name');
} // end if } // end if
/* TODO /* TODO
* *
* this is the slug of your plugin used in initializing it with * this is the slug of your plugin used in initializing it with
* the WordPress API. * the WordPress API.
* This should also be the * This should also be the
* directory in which your plugin resides. Use hyphens. * directory in which your plugin resides. Use hyphens.
* *
* For example: wordpress-widget-boilerplate * For example: wordpress-widget-boilerplate
*/ */
if(!defined('PLUGIN_SLUG')) { if(!defined('PLUGIN_SLUG')) {
define('PLUGIN_SLUG', 'plugin-name-slug'); define('PLUGIN_SLUG', 'plugin-name-slug');
} // end if } // end if
} // end init_plugin_constants } // end init_plugin_constants
/** /**
* Helper function for registering and loading scripts and styles. * Helper function for registering and loading scripts and styles.