Roles.php
1.45 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<?php
namespace ACP\Column\User;
use AC;
use ACP\ConditionalFormat;
use ACP\Editing;
use ACP\Export;
use ACP\Filtering;
use ACP\Search;
use ACP\Sorting;
use WP_User;
class Roles extends AC\Column\Meta
implements Editing\Editable, Filtering\Filterable, Sorting\Sortable, Search\Searchable, Export\Exportable, ConditionalFormat\Formattable {
use ConditionalFormat\ConditionalFormatTrait;
public function __construct() {
$this->set_type( 'column-roles' )
->set_label( __( 'Roles', 'codepress-admin-columns' ) );
}
public function get_meta_key() {
global $wpdb;
return $wpdb->get_blog_prefix() . 'capabilities'; // WPMU compatible
}
public function get_value( $user_id ) {
$user = new WP_User( $user_id );
$roles = [];
foreach ( ac_helper()->user->translate_roles( $user->roles ) as $role => $label ) {
$roles[] = ac_helper()->html->tooltip( $label, $role );
}
if ( empty( $roles ) ) {
return $this->get_empty_char();
}
return implode( $this->get_separator(), $roles );
}
public function editing() {
return new Editing\Service\User\Role( true );
}
public function sorting() {
return new Sorting\Model\User\Roles( $this->get_meta_key() );
}
public function filtering() {
return new Filtering\Model\User\Role( $this );
}
public function search() {
return new Search\Comparison\User\Role( $this->get_meta_key(), $this->get_meta_type() );
}
public function export() {
return new Export\Model\User\Role( true );
}
}