1 | <?php |
||
16 | class inactive extends \phpbb\autogroups\conditions\type\membership |
||
17 | { |
||
18 | /** |
||
19 | * Get condition type |
||
20 | * |
||
21 | * @return string Condition type |
||
22 | * @access public |
||
23 | */ |
||
24 | public function get_condition_type() |
||
28 | |||
29 | /** |
||
30 | * Get condition field (this is the field to check) |
||
31 | * |
||
32 | * @return string Condition field name |
||
33 | * @access public |
||
34 | */ |
||
35 | public function get_condition_field() |
||
39 | |||
40 | /** |
||
41 | * Get condition type name |
||
42 | * |
||
43 | * @return string Condition type name |
||
44 | * @access public |
||
45 | */ |
||
46 | public function get_condition_type_name() |
||
50 | |||
51 | /** |
||
52 | * An array of user types to ignore when querying users |
||
53 | * |
||
54 | * @return array Array of user types |
||
55 | * @access protected |
||
56 | */ |
||
57 | protected function ignore_user_types() |
||
61 | } |
||
62 |