Changeset 668247
- Timestamp:
- 02/15/2013 04:34:47 AM (13 years ago)
- Location:
- bracketpress/trunk
- Files:
-
- 1 added
- 3 edited
-
includes/admin/admin.php (modified) (2 diffs)
-
includes/core/actions.php (modified) (1 diff)
-
readme.txt (modified) (6 diffs)
-
templates/addons.php (added)
Legend:
- Unmodified
- Added
- Removed
-
bracketpress/trunk/includes/admin/admin.php
r666871 r668247 148 148 function add_pages() { 149 149 add_submenu_page ( 'edit.php?post_type=brackets', 'BracketPress > Team Data', 'Team Data', 'manage_options', 'bracketpress_teams', array($this, 'forms_page')); 150 //add_submenu_page ( 'edit.php?post_type=brackets', 'BracketPress > Location Data', 'Location Data', 'manage_options', 'bracketpress_location', array($this, 'location_page'));150 add_submenu_page ( 'edit.php?post_type=brackets', 'BracketPress > Add Ons', 'Add Ons', 'manage_options', 'bracketpress_addons', array($this, 'addons_page')); 151 151 } 152 152 … … 174 174 } 175 175 176 function addons_page() { 177 include(bracketpress()->plugin_dir . 'templates/addons.php'); 178 } 179 176 180 } 177 181 -
bracketpress/trunk/includes/core/actions.php
r666871 r668247 54 54 function bracketpress_create_sub_action($hook, $action, $priority = 10, $params = 0) { 55 55 56 $callback = "function $action() { do_action('$action', func_get_args()); }";56 $callback = "function $action() { \$args = func_get_args(); do_action('$action', \$args); }"; 57 57 eval($callback); 58 58 -
bracketpress/trunk/readme.txt
r666871 r668247 2 2 Contributors: ntemple, scotthack 3 3 Donate link: http://www.bracketpress.com/donate 4 Tags: ncaa, bracket 4 Tags: ncaa, bracket, march madness, brackets, bracket pool, tournament, basketball, sports 5 5 Requires at least: 3.5.0 6 6 Tested up to: 3.5.1 7 Stable tag: 1.0. 27 Stable tag: 1.0.3 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 16 16 branding. 17 17 18 An inside look : 19 20 http://www.youtube.com/watch?v=JtOxPQt7Z5Q 21 18 22 == Features == 19 23 … … 22 26 == Support == 23 27 24 Priority support and additional plugins are available via our website at http://www.bracketpress.com28 Priority support and additional plugins are available via our website at [http://www.bracketpress.com] (http://www.bracketpress.com) 25 29 26 30 == Installation == … … 48 52 == Changelog == 49 53 54 = 1.0.3 = 55 * Critical update for PHP 5.2 users 56 * Added Store 57 * Minor cleanups 58 50 59 = 1.0.2 = 51 60 * Improved team handling … … 62 71 * First public release 63 72 * completed initial development 73 == Upgrade Notice == 64 74 65 = 0.6.0 = 66 * integrated changes for teams table update, added missing conference, streamlined some code 67 * split out html to templates 68 * added points_awarded to match table (activate / deactivate to update table) 69 70 = 0.03 = 71 * Nick added database install on plugin activation. 72 * Scott added function to force custom post type to use a specific template (hardcoded currently). 73 * Added master_untouched.php to template directory for reference. 74 * Fixed up the bracketpress_main shortcode a bit. # 75 76 = 0.02 = 77 * Added Settings menu. ( About 20% done ) 78 * Added "Main" shortcode 79 * Created logic for display of "Main" shortcode. 80 * Started function to check if bracket is locked. 81 * Started function to display input form. 82 * Started function to display a login/register form if not logged in. 83 * Started widget class. 84 85 = 0.01 = 86 * Initial Version 87 88 == Upgrade Notice == 75 = 1.0.3 = 76 * Critical update for PHP 5.2 89 77 90 78 = 1.0.1 = … … 104 92 105 93 106 107
Note: See TracChangeset
for help on using the changeset viewer.