Changeset 2108
- Timestamp:
- 11/22/2015 07:00:56 PM (9 years ago)
- Location:
- sites/trunk/translate.wordpress.org/includes/gp-plugins/wporg-routes
- Files:
-
- 1 edited
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/translate.wordpress.org/includes/gp-plugins/wporg-routes/routes/stats-overview.php
r2107 r2108 1 1 <?php 2 3 2 /** 4 * This plugin offers up the /stats route which provides a overview of our current translation efforts.3 * Stats Route Class. 5 4 * 6 * @author dd325 * Provides the route for translate.wordpress.org/stats. 7 6 */ 8 class GP_WPorg_Stats_Overview extends GP_Plugin {9 var $id = 'wporg-stats-overview';10 11 function __construct() {12 parent::__construct();13 $this->add_action( 'init' );14 15 }16 17 function init() {18 GP::$router->prepend( "/stats/?", array( 'GP_WPorg_Route_Stats', 'get_stats_overview' ) );19 }20 }21 22 GP::$plugins->wporg_stats_overview = new GP_WPorg_Stats_Overview;23 24 7 class GP_WPorg_Route_Stats extends GP_Route { 25 8 -
sites/trunk/translate.wordpress.org/includes/gp-plugins/wporg-routes/wporg-routes.php
r2051 r2108 3 3 * Register custom routes for translate.wordpress.org. 4 4 * 5 * @author ocean90 5 * @author ocean90, obenland, dd32 6 6 */ 7 7 … … 9 9 require_once __DIR__ . '/routes/index.php'; 10 10 require_once __DIR__ . '/routes/locale.php'; 11 require_once __DIR__ . '/routes/stats-overview.php'; 11 12 require_once __DIR__ . '/routes/wp-plugins.php'; 12 13 … … 43 44 GP::$router->prepend( "/locale/$locale/$path/$path", array( 'GP_WPorg_Route_Locale', 'get_locale_projects' ) ); 44 45 GP::$router->prepend( "/locale/$locale/$path/$path/$path", array( 'GP_WPorg_Route_Locale', 'get_locale_project' ) ); 45 46 GP::$router->prepend( '/stats/?', array( 'GP_WPorg_Route_Stats', 'get_stats_overview' ) ); 46 47 $project = '([^/]*)/?'; 47 48 GP::$router->prepend( "/projects/wp-plugins/$project", array( 'GP_WPorg_Route_WP_Plugins', 'get_plugin_projects' ) );
Note: See TracChangeset
for help on using the changeset viewer.