Making WordPress.org

Changeset 2108


Ignore:
Timestamp:
11/22/2015 07:00:56 PM (9 years ago)
Author:
ocean90
Message:

Translate: Move the wporg-stats-overview plugin into the wporg-routes plugin.

See #1352.

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  
    11<?php
    2 
    32/**
    4  * This plugin offers up the /stats route which provides a overview of our current translation efforts.
     3 * Stats Route Class.
    54 *
    6  * @author dd32
     5 * Provides the route for translate.wordpress.org/stats.
    76 */
    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 
    247class GP_WPorg_Route_Stats extends GP_Route {
    258
  • sites/trunk/translate.wordpress.org/includes/gp-plugins/wporg-routes/wporg-routes.php

    r2051 r2108  
    33 * Register custom routes for translate.wordpress.org.
    44 *
    5  * @author ocean90
     5 * @author ocean90, obenland, dd32
    66 */
    77
     
    99require_once __DIR__ . '/routes/index.php';
    1010require_once __DIR__ . '/routes/locale.php';
     11require_once __DIR__ . '/routes/stats-overview.php';
    1112require_once __DIR__ . '/routes/wp-plugins.php';
    1213
     
    4344        GP::$router->prepend( "/locale/$locale/$path/$path", array( 'GP_WPorg_Route_Locale', 'get_locale_projects' ) );
    4445        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' ) );
    4647        $project = '([^/]*)/?';
    4748        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.