Role.php
933 Bytes
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
<?php
namespace ACP\Search\Comparison\User;
use AC;
use ACP\Search\Comparison\Meta;
use ACP\Search\Comparison\Values;
use ACP\Search\Helper\MetaQuery\SerializedComparisonFactory;
use ACP\Search\Operators;
use ACP\Search\Value;
class Role extends Meta
implements Values {
public function __construct( $meta_key, $meta_type ) {
$operators = new Operators( [
Operators::EQ,
Operators::NEQ,
] );
parent::__construct( $operators, $meta_key, $meta_type );
}
protected function get_meta_query( $operator, Value $value ) {
$comparison = SerializedComparisonFactory::create(
$this->get_meta_key(),
$operator,
$value
);
return $comparison();
}
public function get_values() {
$options = [];
foreach ( wp_roles()->roles as $key => $role ) {
$options[ $key ] = translate_user_role( $role['name'] );
}
asort( $options );
return AC\Helper\Select\Options::create_from_array( $options );
}
}