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

Finalizing code for beta

* Updating DocBlocks
* Fixing typos
* Adjusting whitespace
This commit is contained in:
Tom McFarlin 2014-08-18 17:00:09 -04:00
parent 6782bb5ec3
commit 4d6a0dfa3e
7 changed files with 27 additions and 28 deletions

View file

@ -6,12 +6,15 @@
* When populating this file, consider the following flow
* of control:
*
* - Here, onActivateNewSite() should break. This method should be static.
* - Check if the $_REQUEST content actually is the plugin name.
* - Check if it goes through the authentication (admin referrer checks).
* - Check the output of $_GET and if it makes sense.
* - Repeat with other user roles. Best directly by using the links/query string params.
* - Repeat stuff for multisite. Once for a single site in the network, once sitewide.
* - This method should be static
* - Check if the $_REQUEST content actually is the plugin name
* - Run an admin referrer check to make sure it goes through authentication
* - Verify the output of $_GET makes sense
* - Repeat with other user roles. Best directly by using the links/query string parameters.
* - Repeat things for multisite. Once for a single site in the network, once sitewide.
*
* This file may be updated more in future version of the Boilerplate; however, this is the
* general skeleton and outline for how the file should work.
*
* For more information, see the following discussion:
* https://github.com/tommcfarlin/WordPress-Plugin-Boilerplate/pull/123#issuecomment-28541913