forked from justintadlock/members
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclass-role-group.php
104 lines (90 loc) · 2.04 KB
/
class-role-group.php
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
<?php
/**
* Class for handling a role group object.
*
* @package Members
* @subpackage Admin
* @author Justin Tadlock <[email protected]>
* @copyright Copyright (c) 2009 - 2018, Justin Tadlock
* @link https://themehybrid.com/plugins/members
* @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
*/
namespace Members;
/**
* Role group object class.
*
* @since 2.0.0
* @access public
*/
final class Role_Group {
/**
* Name/ID for the group.
*
* @since 2.0.0
* @access public
* @var string
*/
public $name = '';
/**
* Internationalized text label for the group.
*
* @since 2.0.0
* @access public
* @var string
*/
public $label = '';
/**
* Internationalized text label for the group + the count in the form of
* `_n_noop( 'Singular Name %s', 'Plural Name %s', $textdomain )`
*
* @since 2.0.0
* @access public
* @var string
*/
public $label_count = '';
/**
* Array of roles that belong to the group.
*
* @since 2.0.0
* @access public
* @var array
*/
public $roles = array();
/**
* Whether to create a view for the group on the Manage Roles screen.
*
* @since 2.0.0
* @access public
* @var bool
*/
public $show_in_view_list = true;
/**
* Magic method to use in case someone tries to output the object as a string.
* We'll just return the name.
*
* @since 2.0.0
* @access public
* @return string
*/
public function __toString() {
return $this->name;
}
/**
* Register a new object.
*
* @since 2.0.0
* @access public
* @param string $name
* @param array $args
* @return void
*/
public function __construct( $name, $args = array() ) {
foreach ( array_keys( get_object_vars( $this ) ) as $key ) {
if ( isset( $args[ $key ] ) )
$this->$key = $args[ $key ];
}
$this->name = sanitize_key( $name );
$registered_roles = array_keys( wp_list_filter( members_get_roles(), array( 'group' => $this->name ) ) );
$this->roles = array_unique( array_merge( $this->roles, $registered_roles ) );
}
}