Changeset 2763
- Timestamp:
- 03/17/2016 06:49:00 PM (9 years ago)
- Location:
- sites/trunk/wordpress.org/public_html/wp-content/plugins/plugin-directory/admin
- Files:
-
- 1 added
- 2 edited
- 2 moved
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/wp-content/plugins/plugin-directory/admin/list-table/class-committers.php
r2760 r2763 1 1 <?php 2 namespace WordPressdotorg\Plugin_Directory\Admin ;2 namespace WordPressdotorg\Plugin_Directory\Admin\List_Table; 3 3 use WordPressdotorg\Plugin_Directory\Tools; 4 4 … … 10 10 * @package WordPressdotorg\Plugin_Directory\Admin 11 11 */ 12 class Committers _List_Tableextends \WP_List_Table {12 class Committers extends \WP_List_Table { 13 13 14 14 /** -
sites/trunk/wordpress.org/public_html/wp-content/plugins/plugin-directory/admin/list-table/class-plugin-comments.php
r2760 r2763 1 1 <?php 2 namespace WordPressdotorg\Plugin_Directory\Admin ;2 namespace WordPressdotorg\Plugin_Directory\Admin\List_Table; 3 3 4 4 _get_list_table( 'WP_Post_Comments_List_Table' ); … … 9 9 * @package WordPressdotorg\Plugin_Directory\Admin 10 10 */ 11 class Plugin_Comments _List_Tableextends \WP_Post_Comments_List_Table {11 class Plugin_Comments extends \WP_Post_Comments_List_Table { 12 12 /** 13 13 * Comment type. -
sites/trunk/wordpress.org/public_html/wp-content/plugins/plugin-directory/admin/metabox/class-committers.php
r2753 r2763 1 1 <?php 2 2 namespace WordPressdotorg\Plugin_Directory\Admin\Metabox; 3 use WordPressdotorg\Plugin_Directory\Admin\ Committers_List_Table;3 use WordPressdotorg\Plugin_Directory\Admin\List_Table; 4 4 5 5 /** … … 26 26 */ 27 27 public static function display() { 28 $list = new Committers_List_Table();28 $list = new List_Table\Committers(); 29 29 $list->prepare_items(); 30 30 $list->display(); … … 75 75 } 76 76 77 $wp_list_table = new Committers_List_Table();77 $wp_list_table = new List_Table\Committers(); 78 78 79 79 $response->add( array( -
sites/trunk/wordpress.org/public_html/wp-content/plugins/plugin-directory/admin/metabox/class-internal-notes.php
r2752 r2763 1 1 <?php 2 2 namespace WordPressdotorg\Plugin_Directory\Admin\Metabox; 3 use WordPressdotorg\Plugin_Directory\Admin\ Plugin_Comments_List_Table;3 use WordPressdotorg\Plugin_Directory\Admin\List_Table\Plugin_Comments; 4 4 5 5 /** … … 26 26 */ 27 27 public static function display() { 28 $wp_list_table = new Plugin_Comments _List_Table( array(28 $wp_list_table = new Plugin_Comments( array( 29 29 'comment_type' => 'internal-note', 30 30 ) );
Note: See TracChangeset
for help on using the changeset viewer.