Changeset 4354
- Timestamp:
- 11/13/2016 09:18:29 PM (9 years ago)
- Location:
- sites/trunk/wordpress.org/public_html/wp-content/plugins/wporg-gp-routes/inc
- Files:
-
- 1 added
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/wp-content/plugins/wporg-gp-routes/inc/class-plugin.php
r3003 r4354 13 13 */ 14 14 private static $instance; 15 16 /**17 *18 * @var Sync\Translation_Sync19 */20 public $translation_sync = null;21 15 22 16 /** … … 117 111 GP::$router->prepend( "/projects/wp-themes/$project/contributors", array( __NAMESPACE__ . '\Routes\WP_Themes', 'get_theme_contributors' ) ); 118 112 GP::$router->prepend( "/projects/wp-themes/$project/language-packs", array( __NAMESPACE__ . '\Routes\WP_Themes', 'get_theme_language_packs' ) ); 113 114 if ( defined( 'TRANSLATE_MAINTENANCE_ACTIVE' ) ) { 115 GP::$router->prepend( '.*', array( __NAMESPACE__ . '\Routes\Maintenance', 'show_maintenance_message' ) ); 116 } 119 117 } 120 118 }
Note: See TracChangeset
for help on using the changeset viewer.