Changeset 2931
- Timestamp:
- 04/11/2016 01:50:03 PM (7 years ago)
- Location:
- sites/trunk/wordpress.org/public_html/wp-content/plugins/wporg-gp-plugin-directory/inc
- Files:
-
- 3 added
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/wp-content/plugins/wporg-gp-plugin-directory/inc/class-plugin.php
r2881 r2931 11 11 */ 12 12 private static $instance; 13 14 /** 15 * 16 * @var Sync\Translation_Sync 17 */ 18 public $translation_sync = null; 13 19 14 20 /** … … 38 44 $cache_purger->register_events(); 39 45 46 // $this->translation_sync = new Sync\Translation_Sync(); 47 // $this->translation_sync->register_events(); 48 40 49 if ( defined( 'WP_CLI' ) && WP_CLI ) { 41 50 $this->register_cli_commands(); … … 50 59 WP_CLI::add_command( 'wporg-translate set-plugin-project', __NAMESPACE__ . '\CLI\Set_Plugin_Project' ); 51 60 WP_CLI::add_command( 'wporg-translate delete-plugin-project', __NAMESPACE__ . '\CLI\Delete_Plugin_Project' ); 61 // WP_CLI::add_command( 'wporg-translate sync-plugin-translations', __NAMESPACE__ . '\CLI\Sync_Plugin_Translations' ); 52 62 } 53 63 }
Note: See TracChangeset
for help on using the changeset viewer.