Changeset 502015
- Timestamp:
- 02/08/2012 03:12:36 AM (14 years ago)
- Location:
- token-manager/trunk
- Files:
-
- 1 added
- 9 edited
-
json.php (modified) (4 diffs)
-
readme.txt (modified) (7 diffs)
-
settings.php (modified) (1 diff)
-
token-manager.php (added)
-
tokenadd.php (modified) (2 diffs)
-
tokenedit.php (modified) (2 diffs)
-
tokens.php (modified) (2 diffs)
-
typeadd.php (modified) (1 diff)
-
typeedit.php (modified) (1 diff)
-
types.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
token-manager/trunk/json.php
r501768 r502015 33 33 34 34 // Create custom vars 35 $siteid = $current_site->id;35 $siteid = (isset($current_site) && isset($current_site->id)) ? $current_site->id : '0'; 36 36 $blogid = $blog_id; 37 37 … … 105 105 106 106 // Create custom vars 107 $siteid = $current_site->id;107 $siteid = (isset($current_site) && isset($current_site->id)) ? $current_site->id : '0'; 108 108 $blogid = $blog_id; 109 109 … … 153 153 154 154 // Create custom vars 155 $siteid = $current_site->id;155 $siteid = (isset($current_site) && isset($current_site->id)) ? $current_site->id : '0'; 156 156 $blogid = $blog_id; 157 157 … … 182 182 183 183 // Create custom vars 184 $siteid = $current_site->id;184 $siteid = (isset($current_site) && isset($current_site->id)) ? $current_site->id : '0'; 185 185 $blogid = $blog_id; 186 186 -
token-manager/trunk/readme.txt
r501827 r502015 7 7 Requires at least: 3.0 8 8 Tested up to: 3.3.1 9 Stable tag: 0.2 9 Stable tag: 0.2.1 10 10 11 11 The Token Manager allows web developers to program PHP, HTML, CSS and JavaScript into tokens that can be used throughout WordPress. … … 24 24 PHP and token errors are handled by the Token Manager and can be displayed by turning on custom settings in the manager. This gives developers the full control to know where errors are occurring within their token code. The error setting can also be turned off for live sites. This protects you from displaying error information on public sites. All errors that occur in the tokens, unless fatal, will not stop the webpage from being displayed. So feel free to code your ideas without worring about errors halting WordPress. 25 25 26 **Token Manager (Standard) Features** 26 = Token Manager (Standard) Features = 27 27 * Dynamic Processes PHP, HTML, CSS, JS 28 28 * Token Management, Add, Edit, Delete … … 37 37 * Error Handling on Webpage, PHP and Tokens 38 38 39 **Token Manager (Professional) Features** 39 = Token Manager (Professional) Features = 40 40 * Everything from Above... Plus+ 41 41 * Code Versioning … … 45 45 * Error Handling in Admin, Email Forwards 46 46 47 **Future Enhancements For Both** 47 = Future Enhancements For Both = 48 48 * Code Optimization 49 49 * WordPress Token Injection Menus … … 57 57 58 58 = WordPress Standard Installation = 59 1. Upload the contents of 'token manager' to '/wp-content/plugins/tokenmanager' within your WordPress.59 1. Upload the contents of 'token-manager' to '/wp-content/plugins/token-manager' within your WordPress. 60 60 2. Activate the plugin through the 'Plugins' menu in the WordPress Admin 61 61 3. Visit the Token Manager Settings Page and turn on the features you desire. … … 67 67 68 68 = WordPress MultiSite Installation = 69 1. Upload the contents of 'token manager' to '/wp-content/plugins/tokenmanager' within your WordPress.69 1. Upload the contents of 'token-manager' to '/wp-content/plugins/token-manager' within your WordPress. 70 70 2. Network activate the plugin through the 'Plugins' menu in the WordPress Network Admin. 71 71 3. Visit a desired network site or blog dashboard. … … 146 146 == Changelog == 147 147 148 = 0.2.1 = 149 * Cleaned Up PHP Error Notices and Changed plugin name from 'token manager' to 'token-manager' because wordpress zip program packs it that way causing my code to break down. Cleaned up readme file also. Submitted icons folder into svn. 150 148 151 = 0.2 = 149 152 * Added changes to tokenmanager.php for role capabilities from 'Admin' to 'activate_plugins'. This allows plugin to work for single installs as well as multi-site. -
token-manager/trunk/settings.php
r501768 r502015 24 24 25 25 // Create custom vars 26 $siteid = $current_site->id;26 $siteid = (isset($current_site) && isset($current_site->id)) ? $current_site->id : '0'; 27 27 $blogid = $blog_id; 28 28 -
token-manager/trunk/tokenadd.php
r501768 r502015 52 52 53 53 // Create custom vars 54 $siteid = $current_site->id;54 $siteid = (isset($current_site) && isset($current_site->id)) ? $current_site->id : '0'; 55 55 $blogid = $blog_id; 56 56 … … 132 132 133 133 // Create custom vars 134 $siteid = $current_site->id;134 $siteid = (isset($current_site) && isset($current_site->id)) ? $current_site->id : '0'; 135 135 $blogid = $blog_id; 136 136 -
token-manager/trunk/tokenedit.php
r501768 r502015 51 51 52 52 // Create custom vars 53 $siteid = $current_site->id;53 $siteid = (isset($current_site) && isset($current_site->id)) ? $current_site->id : '0'; 54 54 $blogid = $blog_id; 55 55 … … 145 145 146 146 // Create custom vars 147 $siteid = $current_site->id;147 $siteid = (isset($current_site) && isset($current_site->id)) ? $current_site->id : '0'; 148 148 $blogid = $blog_id; 149 149 -
token-manager/trunk/tokens.php
r501768 r502015 45 45 46 46 // Create custom vars 47 $siteid = $current_site->id;47 $siteid = (isset($current_site) && isset($current_site->id)) ? $current_site->id : '0'; 48 48 $blogid = $blog_id; 49 49 … … 65 65 66 66 // Create custom vars 67 $siteid = $current_site->id;67 $siteid = (isset($current_site) && isset($current_site->id)) ? $current_site->id : '0'; 68 68 $blogid = $blog_id; 69 69 -
token-manager/trunk/typeadd.php
r501768 r502015 45 45 46 46 // Create custom vars 47 $siteid = $current_site->id;47 $siteid = (isset($current_site) && isset($current_site->id)) ? $current_site->id : '0'; 48 48 $blogid = $blog_id; 49 49 -
token-manager/trunk/typeedit.php
r501768 r502015 48 48 49 49 // Create custom vars 50 $siteid = $current_site->id;50 $siteid = (isset($current_site) && isset($current_site->id)) ? $current_site->id : '0'; 51 51 $blogid = $blog_id; 52 52 -
token-manager/trunk/types.php
r501768 r502015 41 41 42 42 // Create custom vars 43 $siteid = $current_site->id;43 $siteid = (isset($current_site) && isset($current_site->id)) ? $current_site->id : '0'; 44 44 $blogid = $blog_id; 45 45 … … 94 94 95 95 // Create custom vars 96 $siteid = $current_site->id;96 $siteid = (isset($current_site) && isset($current_site->id)) ? $current_site->id : '0'; 97 97 $blogid = $blog_id; 98 98
Note: See TracChangeset
for help on using the changeset viewer.