1
0
Fork 0
mirror of https://github.com/inretio/WordPress-Plugin-Boilerplate synced 2024-05-03 11:53:16 +03:00

added access modifiers

This commit is contained in:
Tom McFarlin 2013-05-07 17:01:12 -04:00
parent 6d141e700f
commit 3618f5dfad

View file

@ -197,7 +197,7 @@ class PluginName {
} // end register_plugin_scripts } // end register_plugin_scripts
function plugin_admin_menu() { public function plugin_admin_menu() {
// TODO: Change 'Page Title' to the title of your plugin admin page // TODO: Change 'Page Title' to the title of your plugin admin page
// TODO: Change 'Menu Text' to the text for menu item for the plugin settings page // TODO: Change 'Menu Text' to the text for menu item for the plugin settings page
// TODO: Change 'plugin-name' to the name of your plugin // TODO: Change 'plugin-name' to the name of your plugin
@ -206,7 +206,7 @@ class PluginName {
} // end plugin_admin_menu } // end plugin_admin_menu
function plugin_admin_page() { public function plugin_admin_page() {
// output the cpanel // output the cpanel
include_once('views/admin_open.php'); include_once('views/admin_open.php');
@ -229,7 +229,7 @@ class PluginName {
* Action Reference: http://codex.wordpress.org/Plugin_API/Action_Reference * Action Reference: http://codex.wordpress.org/Plugin_API/Action_Reference
* *
*/ */
function action_method_name() { public function action_method_name() {
// TODO: Define your action method here // TODO: Define your action method here
} // end action_method_name } // end action_method_name
@ -241,7 +241,7 @@ class PluginName {
* Filter Reference: http://codex.wordpress.org/Plugin_API/Filter_Reference * Filter Reference: http://codex.wordpress.org/Plugin_API/Filter_Reference
* *
*/ */
function filter_method_name() { public function filter_method_name() {
// TODO: Define your filter method here // TODO: Define your filter method here
} // end filter_method_name } // end filter_method_name