Changeset 492332
- Timestamp:
- 01/19/2012 08:50:26 PM (14 years ago)
- Location:
- wp-mvc
- Files:
-
- 5 edited
- 8 copied
-
tags/1.1.3 (copied) (copied from wp-mvc/trunk)
-
tags/1.1.3/core/controllers/mvc_controller.php (copied) (copied from wp-mvc/trunk/core/controllers/mvc_controller.php)
-
tags/1.1.3/core/mvc_configuration.php (copied) (copied from wp-mvc/trunk/core/mvc_configuration.php)
-
tags/1.1.3/core/mvc_dispatcher.php (copied) (copied from wp-mvc/trunk/core/mvc_dispatcher.php) (1 diff)
-
tags/1.1.3/core/mvc_inflector.php (copied) (copied from wp-mvc/trunk/core/mvc_inflector.php)
-
tags/1.1.3/core/mvc_loader.php (modified) (1 diff)
-
tags/1.1.3/core/mvc_router.php (copied) (copied from wp-mvc/trunk/core/mvc_router.php)
-
tags/1.1.3/readme.txt (copied) (copied from wp-mvc/trunk/readme.txt) (1 diff)
-
tags/1.1.3/wp_mvc.php (copied) (copied from wp-mvc/trunk/wp_mvc.php) (1 diff)
-
trunk/core/mvc_dispatcher.php (modified) (1 diff)
-
trunk/core/mvc_loader.php (modified) (1 diff)
-
trunk/readme.txt (modified) (1 diff)
-
trunk/wp_mvc.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
wp-mvc/tags/1.1.3/core/mvc_dispatcher.php
r483672 r492332 36 36 37 37 if (!$controller->view_rendered) { 38 $controller->render_view($controller->views_path.$action );38 $controller->render_view($controller->views_path.$action, $options); 39 39 } 40 40 -
wp-mvc/tags/1.1.3/core/mvc_loader.php
r451789 r492332 332 332 foreach ($this->public_controller_names as $controller) { 333 333 $route_rules = $this->get_rewrite_rules($route_path, $route_defaults, $controller); 334 $new_rules = array_merge($ new_rules, $route_rules);334 $new_rules = array_merge($route_rules, $new_rules); 335 335 } 336 336 } else if (!empty($route_defaults['controller'])) { 337 337 $route_rules = $this->get_rewrite_rules($route_path, $route_defaults, $route_defaults['controller'], 1); 338 $new_rules = array_merge($ new_rules, $route_rules);338 $new_rules = array_merge($route_rules, $new_rules); 339 339 } 340 340 } -
wp-mvc/tags/1.1.3/readme.txt
r483672 r492332 3 3 Tags: mvc, framework, model, view, controller, development, plugin 4 4 Requires at least: 3.0 5 Tested up to: 3.3 6 Stable tag: 1.1. 25 Tested up to: 3.3.1 6 Stable tag: 1.1.3 7 7 8 8 WP MVC is a full-fledged MVC framework, similar to CakePHP and Rails, that developers can use to create WordPress plugins. -
wp-mvc/tags/1.1.3/wp_mvc.php
r483672 r492332 5 5 Description: Sets up an MVC framework inside of WordPress. 6 6 Author: Tom Benner 7 Version: 1.1. 27 Version: 1.1.3 8 8 Author URI: 9 9 */ -
wp-mvc/trunk/core/mvc_dispatcher.php
r483672 r492332 36 36 37 37 if (!$controller->view_rendered) { 38 $controller->render_view($controller->views_path.$action );38 $controller->render_view($controller->views_path.$action, $options); 39 39 } 40 40 -
wp-mvc/trunk/core/mvc_loader.php
r451789 r492332 332 332 foreach ($this->public_controller_names as $controller) { 333 333 $route_rules = $this->get_rewrite_rules($route_path, $route_defaults, $controller); 334 $new_rules = array_merge($ new_rules, $route_rules);334 $new_rules = array_merge($route_rules, $new_rules); 335 335 } 336 336 } else if (!empty($route_defaults['controller'])) { 337 337 $route_rules = $this->get_rewrite_rules($route_path, $route_defaults, $route_defaults['controller'], 1); 338 $new_rules = array_merge($ new_rules, $route_rules);338 $new_rules = array_merge($route_rules, $new_rules); 339 339 } 340 340 } -
wp-mvc/trunk/readme.txt
r483672 r492332 3 3 Tags: mvc, framework, model, view, controller, development, plugin 4 4 Requires at least: 3.0 5 Tested up to: 3.3 6 Stable tag: 1.1. 25 Tested up to: 3.3.1 6 Stable tag: 1.1.3 7 7 8 8 WP MVC is a full-fledged MVC framework, similar to CakePHP and Rails, that developers can use to create WordPress plugins. -
wp-mvc/trunk/wp_mvc.php
r483672 r492332 5 5 Description: Sets up an MVC framework inside of WordPress. 6 6 Author: Tom Benner 7 Version: 1.1. 27 Version: 1.1.3 8 8 Author URI: 9 9 */
Note: See TracChangeset
for help on using the changeset viewer.