Changeset 2752 for sites/trunk/wordpress.org/public_html/wp-content/plugins/plugin-directory/admin/metabox/class-internal-notes.php
- Timestamp:
- 03/15/2016 08:02:51 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/wp-content/plugins/plugin-directory/admin/metabox/class-internal-notes.php
r2735 r2752 11 11 12 12 /** 13 * Filters the postbox classes for custom comment meta boxes. 14 * 15 * @param array $classes An array of postbox classes. 16 * @return array 17 */ 18 public static function postbox_classes( $classes ) { 19 $classes[] = 'comments-meta-box'; 20 21 return array_filter( $classes ); 22 } 23 24 /** 13 25 * Displays comment box for internal notes. 14 26 */ 15 static function display() {27 public static function display() { 16 28 $wp_list_table = new Plugin_Comments_List_Table( array( 17 29 'comment_type' => 'internal-note',
Note: See TracChangeset
for help on using the changeset viewer.