mirror of
https://github.com/inretio/WordPress-Plugin-Boilerplate
synced 2025-04-19 05:35:36 +03:00
* Moving the boilerplate to its own directory
* Adding an improved README * Removing unused features of the boilerplate * Officially tagging as 1.0
This commit is contained in:
parent
47edae47e6
commit
e4bbd52ae0
10 changed files with 75 additions and 22 deletions
110
plugin-boilerplate/README.txt
Normal file
110
plugin-boilerplate/README.txt
Normal file
|
@ -0,0 +1,110 @@
|
|||
=== Plugin Name ===
|
||||
Contributors: username1, username2 (this should be a list of wordpress.org userid's)
|
||||
Donate link: http://example.com/
|
||||
Tags: comments, spam
|
||||
Requires at least: 3.3.1
|
||||
Tested up to: 3.3.1
|
||||
Stable tag: 4.3
|
||||
|
||||
Here is a short description of the plugin. This should be no more than 150 characters. No markup here.
|
||||
|
||||
== Description ==
|
||||
|
||||
This is the long description. No limit, and you can use Markdown (as well as in the following sections).
|
||||
|
||||
For backwards compatibility, if this section is missing, the full length of the short description will be used, and
|
||||
Markdown parsed.
|
||||
|
||||
A few notes about the sections above:
|
||||
|
||||
* "Contributors" is a comma separated list of wp.org/wp-plugins.org usernames
|
||||
* "Tags" is a comma separated list of tags that apply to the plugin
|
||||
* "Requires at least" is the lowest version that the plugin will work on
|
||||
* "Tested up to" is the highest version that you've *successfully used to test the plugin*. Note that it might work on
|
||||
higher versions... this is just the highest one you've verified.
|
||||
* Stable tag should indicate the Subversion "tag" of the latest stable version, or "trunk," if you use `/trunk/` for
|
||||
stable.
|
||||
|
||||
Note that the `readme.txt` of the stable tag is the one that is considered the defining one for the plugin, so
|
||||
if the `/trunk/readme.txt` file says that the stable tag is `4.3`, then it is `/tags/4.3/readme.txt` that'll be used
|
||||
for displaying information about the plugin. In this situation, the only thing considered from the trunk `readme.txt`
|
||||
is the stable tag pointer. Thus, if you develop in trunk, you can update the trunk `readme.txt` to reflect changes in
|
||||
your in-development version, without having that information incorrectly disclosed about the current stable version
|
||||
that lacks those changes -- as long as the trunk's `readme.txt` points to the correct stable tag.
|
||||
|
||||
If no stable tag is provided, it is assumed that trunk is stable, but you should specify "trunk" if that's where
|
||||
you put the stable version, in order to eliminate any doubt.
|
||||
|
||||
== Installation ==
|
||||
|
||||
This section describes how to install the plugin and get it working.
|
||||
|
||||
e.g.
|
||||
|
||||
1. Upload `plugin-name.php` to the `/wp-content/plugins/` directory
|
||||
1. Activate the plugin through the 'Plugins' menu in WordPress
|
||||
1. Place `<?php do_action('plugin_name_hook'); ?>` in your templates
|
||||
|
||||
== Frequently Asked Questions ==
|
||||
|
||||
= A question that someone might have =
|
||||
|
||||
An answer to that question.
|
||||
|
||||
= What about foo bar? =
|
||||
|
||||
Answer to foo bar dilemma.
|
||||
|
||||
== Screenshots ==
|
||||
|
||||
1. This screen shot description corresponds to screenshot-1.(png|jpg|jpeg|gif). Note that the screenshot is taken from
|
||||
the directory of the stable readme.txt, so in this case, `/tags/4.3/screenshot-1.png` (or jpg, jpeg, gif)
|
||||
2. This is the second screen shot
|
||||
|
||||
== Changelog ==
|
||||
|
||||
= 1.0 =
|
||||
* A change since the previous version.
|
||||
* Another change.
|
||||
|
||||
= 0.5 =
|
||||
* List versions from most recent at top to oldest at bottom.
|
||||
|
||||
== Upgrade Notice ==
|
||||
|
||||
= 1.0 =
|
||||
Upgrade notices describe the reason a user should upgrade. No more than 300 characters.
|
||||
|
||||
= 0.5 =
|
||||
This version fixes a security related bug. Upgrade immediately.
|
||||
|
||||
== Arbitrary section ==
|
||||
|
||||
You may provide arbitrary sections, in the same format as the ones above. This may be of use for extremely complicated
|
||||
plugins where more information needs to be conveyed that doesn't fit into the categories of "description" or
|
||||
"installation." Arbitrary sections will be shown below the built-in sections outlined above.
|
||||
|
||||
== A brief Markdown Example ==
|
||||
|
||||
Ordered list:
|
||||
|
||||
1. Some feature
|
||||
1. Another feature
|
||||
1. Something else about the plugin
|
||||
|
||||
Unordered list:
|
||||
|
||||
* something
|
||||
* something else
|
||||
* third thing
|
||||
|
||||
Here's a link to [WordPress](http://wordpress.org/ "Your favorite software") and one to [Markdown's Syntax Documentation][markdown syntax].
|
||||
Titles are optional, naturally.
|
||||
|
||||
[markdown syntax]: http://daringfireball.net/projects/markdown/syntax
|
||||
"Markdown is what the parser uses to process much of the readme file"
|
||||
|
||||
Markdown uses email style notation for blockquotes and I've been told:
|
||||
> Asterisks for *emphasis*. Double it up for **strong**.
|
||||
|
||||
`<?php code(); // goes in backticks ?>`
|
1
plugin-boilerplate/css/admin.css
Normal file
1
plugin-boilerplate/css/admin.css
Normal file
|
@ -0,0 +1 @@
|
|||
/* This stylesheet is used to style the admin option form of the plugin. */
|
1
plugin-boilerplate/css/display.css
Normal file
1
plugin-boilerplate/css/display.css
Normal file
|
@ -0,0 +1 @@
|
|||
/* This stylesheet is used to style the public view of the plugin. */
|
6
plugin-boilerplate/js/admin.js
Normal file
6
plugin-boilerplate/js/admin.js
Normal file
|
@ -0,0 +1,6 @@
|
|||
(function ($) {
|
||||
"use strict";
|
||||
$(function () {
|
||||
// Place your administration-specific JavaScript here
|
||||
});
|
||||
}(jQuery));
|
6
plugin-boilerplate/js/display.js
Normal file
6
plugin-boilerplate/js/display.js
Normal file
|
@ -0,0 +1,6 @@
|
|||
(function ($) {
|
||||
"use strict";
|
||||
$(function () {
|
||||
// Place your public-facing JavaScript here
|
||||
});
|
||||
}(jQuery));
|
17
plugin-boilerplate/lang/plugin.po
Normal file
17
plugin-boilerplate/lang/plugin.po
Normal file
|
@ -0,0 +1,17 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: WordPress Plugin Boilerplate\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2011-07-11 12:22-0500\n"
|
||||
"PO-Revision-Date: 2011-07-11 12:22-0500\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Tom McFarlin <tom@tommcfarlin.com>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Poedit-KeywordsList: __;_e\n"
|
||||
"X-Poedit-Basepath: .\n"
|
||||
"X-Poedit-Language: English\n"
|
||||
"X-Poedit-Country: UNITED STATES\n"
|
||||
"X-Poedit-SourceCharset: utf-8\n"
|
||||
"X-Poedit-SearchPath-0: ..\n"
|
181
plugin-boilerplate/plugin.php
Normal file
181
plugin-boilerplate/plugin.php
Normal file
|
@ -0,0 +1,181 @@
|
|||
<?php
|
||||
/*
|
||||
Plugin Name: TODO
|
||||
Plugin URI: TODO
|
||||
Description: TODO
|
||||
Version: 1.0
|
||||
Author: TODO
|
||||
Author URI: TODO
|
||||
Author Email: TODO
|
||||
License:
|
||||
|
||||
Copyright 2012 TODO (email@domain.com)
|
||||
|
||||
This program is free software; you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License, version 2, as
|
||||
published by the Free Software Foundation.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program; if not, write to the Free Software
|
||||
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
|
||||
*/
|
||||
|
||||
// TODO: rename this class to a proper name for your plugin
|
||||
class PluginName {
|
||||
|
||||
/*--------------------------------------------*
|
||||
* Constructor
|
||||
*--------------------------------------------*/
|
||||
|
||||
/**
|
||||
* Initializes the plugin by setting localization, filters, and administration functions.
|
||||
*/
|
||||
function __construct() {
|
||||
|
||||
// Load plugin text domain
|
||||
add_action( 'init', array( $this, 'plugin_textdomain' ) );
|
||||
|
||||
// Register admin styles and scripts
|
||||
add_action( 'admin_print_styles', array( $this, 'register_admin_styles' ) );
|
||||
add_action( 'admin_enqueue_scripts', array( $this, 'register_admin_scripts' ) );
|
||||
|
||||
// Register site styles and scripts
|
||||
add_action( 'wp_enqueue_scripts', array( $this, 'register_plugin_styles' ) );
|
||||
add_action( 'wp_enqueue_scripts', array( $this, 'register_plugin_scripts' ) );
|
||||
|
||||
// Register hooks that are fired when the plugin is activated, deactivated, and uninstalled, respectively.
|
||||
register_activation_hook( __FILE__, array( $this, 'activate' ) );
|
||||
register_deactivation_hook( __FILE__, array( $this, 'deactivate' ) );
|
||||
register_uninstall_hook( __FILE__, array( $this, 'uninstall' ) );
|
||||
|
||||
/*
|
||||
* TODO:
|
||||
* 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.
|
||||
*
|
||||
* The second parameter is the function name located within this class. See the stubs
|
||||
* later in the file.
|
||||
*
|
||||
* For more information:
|
||||
* http://codex.wordpress.org/Plugin_API#Hooks.2C_Actions_and_Filters
|
||||
*/
|
||||
add_action( 'TODO', array( $this, 'action_method_name' ) );
|
||||
add_filter( 'TODO', array( $this, 'filter_method_name' ) );
|
||||
|
||||
} // end constructor
|
||||
|
||||
/**
|
||||
* Fired when the plugin is activated.
|
||||
*
|
||||
* @param boolean $network_wide True if WPMU superadmin uses "Network Activate" action, false if WPMU is disabled or plugin is activated on an individual blog
|
||||
*/
|
||||
public function activate( $network_wide ) {
|
||||
// TODO: Define activation functionality here
|
||||
} // end activate
|
||||
|
||||
/**
|
||||
* Fired when the plugin is deactivated.
|
||||
*
|
||||
* @param boolean $network_wide True if WPMU superadmin uses "Network Activate" action, false if WPMU is disabled or plugin is activated on an individual blog
|
||||
*/
|
||||
public function deactivate( $network_wide ) {
|
||||
// TODO: Define deactivation functionality here
|
||||
} // end deactivate
|
||||
|
||||
/**
|
||||
* Fired when the plugin is uninstalled.
|
||||
*
|
||||
* @param boolean $network_wide True if WPMU superadmin uses "Network Activate" action, false if WPMU is disabled or plugin is activated on an individual blog
|
||||
*/
|
||||
public function uninstall( $network_wide ) {
|
||||
// TODO: Define uninstall functionality here
|
||||
} // end uninstall
|
||||
|
||||
/**
|
||||
* Loads the plugin text domain for translation
|
||||
*/
|
||||
public function plugin_textdomain() {
|
||||
|
||||
// TODO: replace "plugin-name-locale" with a unique value for your plugin
|
||||
load_plugin_textdomain( 'plugin-name-locale', false, dirname( plugin_basename( __FILE__ ) ) . '/lang' );
|
||||
|
||||
} // end plugin_textdomain
|
||||
|
||||
/**
|
||||
* Registers and enqueues admin-specific styles.
|
||||
*/
|
||||
public function register_admin_styles() {
|
||||
|
||||
// TODO: Change 'plugin-name' to the name of your plugin
|
||||
wp_enqueue_style( 'plugin-name-admin-styles', plugins_url( 'plugin-name/css/admin.css' ) );
|
||||
|
||||
} // end register_admin_styles
|
||||
|
||||
/**
|
||||
* Registers and enqueues admin-specific JavaScript.
|
||||
*/
|
||||
public function register_admin_scripts() {
|
||||
|
||||
// TODO: Change 'plugin-name' to the name of your plugin
|
||||
wp_enqueue_script( 'plugin-name-admin-script', plugins_url( 'plugin-name/js/admin.js' ) );
|
||||
|
||||
} // end register_admin_scripts
|
||||
|
||||
/**
|
||||
* Registers and enqueues plugin-specific styles.
|
||||
*/
|
||||
public function register_plugin_styles() {
|
||||
|
||||
// TODO: Change 'plugin-name' to the name of your plugin
|
||||
wp_enqueue_style( 'plugin-name-plugin-styles', plugins_url( 'plugin-name/css/display.css' ) );
|
||||
|
||||
} // end register_plugin_styles
|
||||
|
||||
/**
|
||||
* Registers and enqueues plugin-specific scripts.
|
||||
*/
|
||||
public function register_plugin_scripts() {
|
||||
|
||||
// TODO: Change 'plugin-name' to the name of your plugin
|
||||
wp_enqueue_script( 'plugin-name-plugin-script', plugins_url( 'plugin-name/js/display.js' ) );
|
||||
|
||||
} // end register_plugin_scripts
|
||||
|
||||
/*--------------------------------------------*
|
||||
* Core Functions
|
||||
*---------------------------------------------*/
|
||||
|
||||
/**
|
||||
* NOTE: Actions are points in the execution of a page or process
|
||||
* lifecycle that WordPress fires.
|
||||
*
|
||||
* WordPress Actions: http://codex.wordpress.org/Plugin_API#Actions
|
||||
* Action Reference: http://codex.wordpress.org/Plugin_API/Action_Reference
|
||||
*
|
||||
*/
|
||||
function action_method_name() {
|
||||
// TODO: Define your action method here
|
||||
} // end action_method_name
|
||||
|
||||
/**
|
||||
* NOTE: Filters are points of execution in which WordPress modifies data
|
||||
* before saving it or sending it to the browser.
|
||||
*
|
||||
* WordPress Filters: http://codex.wordpress.org/Plugin_API#Filters
|
||||
* Filter Reference: http://codex.wordpress.org/Plugin_API/Filter_Reference
|
||||
*
|
||||
*/
|
||||
function filter_method_name() {
|
||||
// TODO: Define your filter method here
|
||||
} // end filter_method_name
|
||||
|
||||
} // end class
|
||||
|
||||
// TODO: Update the instantiation call of your plugin to the name given at the class definition
|
||||
$plugin_name = new PluginName();
|
1
plugin-boilerplate/views/admin.php
Normal file
1
plugin-boilerplate/views/admin.php
Normal file
|
@ -0,0 +1 @@
|
|||
<!-- This file is used to markup the administration form of the plugin. -->
|
1
plugin-boilerplate/views/display.php
Normal file
1
plugin-boilerplate/views/display.php
Normal file
|
@ -0,0 +1 @@
|
|||
<!-- This file is used to markup the public facing aspect of the plugin. -->
|
Loading…
Add table
Add a link
Reference in a new issue