Comment.php
5 years ago
Media.php
5 years ago
NetworkSite.php
5 years ago
NetworkUser.php
5 years ago
Post.php
5 years ago
Taxonomy.php
5 years ago
User.php
5 years ago
WpListTableTrait.php
5 years ago
User.php
20 lines
| 1 | <?php |
| 2 | |
| 3 | namespace AC\ListTable; |
| 4 | |
| 5 | use AC\ListTable; |
| 6 | use WP_Users_List_Table; |
| 7 | |
| 8 | class User implements ListTable { |
| 9 | |
| 10 | use WpListTableTrait; |
| 11 | |
| 12 | public function __construct( WP_Users_List_Table $table ) { |
| 13 | $this->table = $table; |
| 14 | } |
| 15 | |
| 16 | public function get_column_value( $column, $id ) { |
| 17 | return apply_filters( 'manage_users_custom_column', '', $column, $id ); |
| 18 | } |
| 19 | |
| 20 | } |