Changeset 1490134
- Timestamp:
- 09/05/2016 09:22:01 AM (10 years ago)
- Location:
- wp-platform/trunk
- Files:
-
- 1 added
- 2 edited
-
classes/Http.php (added)
-
classes/Setup.php (modified) (1 diff)
-
plugin.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wp-platform/trunk/classes/Setup.php
r1487792 r1490134 57 57 58 58 //router 59 add_filter('template_ include', array(__CLASS__, 'router'));59 add_filter('template_redirect', array(__CLASS__, 'router')); 60 60 61 61 } -
wp-platform/trunk/plugin.php
r1487808 r1490134 2 2 /** 3 3 * Plugin Name: WP-Platform 4 * Version: 1.0. 15 * Description: Provides namespaced autoloading routine allowing developers to build bespoke functionality onto a Wordpress blog in an MVC and OOP fashion - also contains various helper classes to prevent repeating yourself from project to project4 * Version: 1.0.2 5 * Description: Provides platform to allow developers to build bespoke functionality in an MVC and OOP fashion 6 6 */ 7 7 … … 13 13 Platform\Breadcrumb::setup(); 14 14 Platform\Paging::setup(); 15 16 //esc wysiwyg 17 function esc_wysiwyg($str) { 18 return $str; 19 }
Note: See TracChangeset
for help on using the changeset viewer.