1 | <?php |
||
39 | class validator { |
||
40 | |||
41 | /** |
||
42 | * Validate if general section will be shown. |
||
43 | * |
||
44 | * @return boolean |
||
45 | */ |
||
46 | public static function section_general_shown() { |
||
51 | |||
52 | /** |
||
53 | * Validate if record meeting section will be shown. |
||
54 | * |
||
55 | * @return boolean |
||
56 | */ |
||
57 | public static function section_record_meeting_shown() { |
||
63 | |||
64 | /** |
||
65 | * Validate if import recording section will be shown. |
||
66 | * |
||
67 | * @return boolean |
||
68 | */ |
||
69 | public static function section_import_recordings_shown() { |
||
74 | |||
75 | /** |
||
76 | * Validate if show recording section will be shown. |
||
77 | * |
||
78 | * @return boolean |
||
79 | */ |
||
80 | public static function section_show_recordings_shown() { |
||
92 | |||
93 | /** |
||
94 | * Validate if wait moderator section will be shown. |
||
95 | * |
||
96 | * @return boolean |
||
97 | */ |
||
98 | public static function section_wait_moderator_shown() { |
||
105 | |||
106 | /** |
||
107 | * Validate if static voice bridge section will be shown. |
||
108 | * |
||
109 | * @return boolean |
||
110 | */ |
||
111 | public static function section_static_voice_bridge_shown() { |
||
115 | |||
116 | /** |
||
117 | * Validate if preupload presentation section will be shown. |
||
118 | * |
||
119 | * @return boolean |
||
120 | */ |
||
121 | public static function section_preupload_presentation_shown() { |
||
125 | |||
126 | /** |
||
127 | * Validate if user limit section will be shown. |
||
128 | * |
||
129 | * @return boolean |
||
130 | */ |
||
131 | public static function section_user_limit_shown() { |
||
136 | |||
137 | /** |
||
138 | * Validate if scheduled duration section will be shown. |
||
139 | * |
||
140 | * @return boolean |
||
141 | */ |
||
142 | public static function section_scheduled_duration_shown() { |
||
146 | |||
147 | /** |
||
148 | * Validate if moderator default section will be shown. |
||
149 | * |
||
150 | * @return boolean |
||
151 | */ |
||
152 | public static function section_moderator_default_shown() { |
||
156 | |||
157 | /** |
||
158 | * Validate if send notification section will be shown. |
||
159 | * |
||
160 | * @return boolean |
||
161 | */ |
||
162 | public static function section_send_notifications_shown() { |
||
166 | |||
167 | /** |
||
168 | * Validate if clienttype section will be shown. |
||
169 | * |
||
170 | * @return boolean |
||
171 | */ |
||
172 | public static function section_clienttype_shown() { |
||
184 | |||
185 | /** |
||
186 | * Validate if settings extended section will be shown. |
||
187 | * |
||
188 | * @return boolean |
||
189 | */ |
||
190 | public static function section_settings_extended_shown() { |
||
195 | |||
196 | /** |
||
197 | * Validate if muteonstart section will be shown. |
||
198 | * |
||
199 | * @return boolean |
||
200 | */ |
||
201 | public static function section_muteonstart_shown() { |
||
206 | } |
||
207 |