Commit | Line | Data |
---|---|---|
11b749ca | 1 | <?php |
220a90c5 | 2 | |
b63a6a63 | 3 | /* |
4 | * Please note that is file is always loaded last - it means that you can inject entries into other categories too. | |
5 | */ | |
6 | ||
78946b9b | 7 | if ($hassiteconfig) { |
ff4b9fcb | 8 | $ADMIN->add('modules', new admin_category('modsettings', get_string('activitymodules'))); |
220a90c5 | 9 | $ADMIN->add('modsettings', new admin_page_managemods()); |
73d0160f PS |
10 | $modules = $DB->get_records('modules', array(), "name ASC"); |
11 | foreach ($modules as $module) { | |
12 | $modulename = $module->name; | |
13 | if (!file_exists("$CFG->dirroot/mod/$modulename/lib.php")) { | |
14 | continue; | |
220a90c5 | 15 | } |
73d0160f PS |
16 | $strmodulename = get_string('modulename', 'mod_'.$modulename); |
17 | if (file_exists($CFG->dirroot.'/mod/'.$modulename.'/settingstree.php')) { | |
18 | include($CFG->dirroot.'/mod/'.$modulename.'/settingstree.php'); | |
19 | } else if (file_exists($CFG->dirroot.'/mod/'.$modulename.'/settings.php')) { | |
20 | // do not show disabled modules in tree, keep only settings link on manage page | |
21 | $settings = new admin_settingpage('modsetting'.$modulename, $strmodulename, 'moodle/site:config', !$module->visible); | |
22 | if ($ADMIN->fulltree) { | |
23 | include($CFG->dirroot.'/mod/'.$modulename.'/settings.php'); | |
220a90c5 | 24 | } |
73d0160f | 25 | $ADMIN->add('modsettings', $settings); |
220a90c5 | 26 | } |
27 | } | |
28 | ||
b032b490 | 29 | // hidden script for converting journals to online assignments (or something like that) linked from elsewhere |
30 | $ADMIN->add('modsettings', new admin_externalpage('oacleanup', 'Online Assignment Cleanup', $CFG->wwwroot.'/'.$CFG->admin.'/oacleanup.php', 'moodle/site:config', true)); | |
220a90c5 | 31 | |
32 | $ADMIN->add('modules', new admin_category('blocksettings', get_string('blocks'))); | |
33 | $ADMIN->add('blocksettings', new admin_page_manageblocks()); | |
73d0160f PS |
34 | $blocks = $DB->get_records('block', array(), "name ASC"); |
35 | foreach ($blocks as $block) { | |
36 | $blockname = $block->name; | |
37 | if (!file_exists("$CFG->dirroot/blocks/$blockname/block_$blockname.php")) { | |
38 | continue; | |
220a90c5 | 39 | } |
73d0160f PS |
40 | $strblockname = get_string('pluginname', 'block_'.$blockname); |
41 | if (file_exists($CFG->dirroot.'/blocks/'.$blockname.'/settings.php')) { | |
42 | $settings = new admin_settingpage('blocksetting'.$blockname, $strblockname, 'moodle/site:config', !$block->visible); | |
43 | if ($ADMIN->fulltree) { | |
44 | include($CFG->dirroot.'/blocks/'.$blockname.'/settings.php'); | |
220a90c5 | 45 | } |
73d0160f PS |
46 | $ADMIN->add('blocksettings', $settings); |
47 | ||
48 | } else if (file_exists($CFG->dirroot.'/blocks/'.$blockname.'/config_global.html')) { | |
49 | $ADMIN->add('blocksettings', new admin_externalpage('blocksetting'.$blockname, $strblockname, "$CFG->wwwroot/$CFG->admin/block.php?block=$block->id", 'moodle/site:config', !$block->visible)); | |
220a90c5 | 50 | } |
51 | } | |
52 | ||
c5d2d0dd | 53 | |
a5747cf8 | 54 | /// Editor plugins |
55 | $ADMIN->add('modules', new admin_category('editorsettings', get_string('editors', 'editor'))); | |
56 | $temp = new admin_settingpage('manageeditors', get_string('editorsettings', 'editor')); | |
57 | $temp->add(new admin_setting_manageeditors()); | |
58 | $ADMIN->add('editorsettings', $temp); | |
59 | ||
7a856a93 DC |
60 | $editors_available = get_available_editors(); |
61 | $url = $CFG->wwwroot.'/'.$CFG->admin.'/editors.php?sesskey='.sesskey(); | |
62 | foreach ($editors_available as $editor=>$editorstr) { | |
63 | if (file_exists($CFG->dirroot . '/lib/editor/'.$editor.'/settings.php')) { | |
64 | $editor_setting = new admin_externalpage('editorsettings'.$editor, $editorstr, $url.'&action=edit&editor='.$editor); | |
65 | $ADMIN->add('editorsettings', $editor_setting); | |
66 | } | |
67 | } | |
1dce6261 DC |
68 | /// License types |
69 | $ADMIN->add('modules', new admin_category('licensesettings', get_string('license'))); | |
70 | $temp = new admin_settingpage('managelicenses', get_string('license')); | |
ba74f517 DC |
71 | |
72 | require_once($CFG->libdir . '/licenselib.php'); | |
73 | $licenses = array(); | |
74 | $array = explode(',', $CFG->licenses); | |
75 | foreach ($array as $value) { | |
76 | $licenses[$value] = get_string($value, 'license'); | |
77 | } | |
78 | $temp->add(new admin_setting_configselect('sitedefaultlicense', get_string('configsitedefaultlicense','admin'), get_string('configsitedefaultlicensehelp','admin'), 'allrightsreserved', $licenses)); | |
1dce6261 DC |
79 | $temp->add(new admin_setting_managelicenses()); |
80 | $ADMIN->add('licensesettings', $temp); | |
a5747cf8 | 81 | |
82 | /// Filter plugins | |
220a90c5 | 83 | $ADMIN->add('modules', new admin_category('filtersettings', get_string('managefilters'))); |
dcdf3b29 | 84 | |
85 | $ADMIN->add('filtersettings', new admin_page_managefilters()); | |
86 | ||
220a90c5 | 87 | // "filtersettings" settingpage |
dcdf3b29 | 88 | $temp = new admin_settingpage('commonfiltersettings', get_string('commonfiltersettings', 'admin')); |
220a90c5 | 89 | if ($ADMIN->fulltree) { |
5b8fa09b | 90 | $cachetimes = array( |
91 | 604800 => get_string('numdays','',7), | |
92 | 86400 => get_string('numdays','',1), | |
93 | 43200 => get_string('numhours','',12), | |
94 | 10800 => get_string('numhours','',3), | |
95 | 7200 => get_string('numhours','',2), | |
96 | 3600 => get_string('numhours','',1), | |
97 | 2700 => get_string('numminutes','',45), | |
98 | 1800 => get_string('numminutes','',30), | |
99 | 900 => get_string('numminutes','',15), | |
100 | 600 => get_string('numminutes','',10), | |
101 | 540 => get_string('numminutes','',9), | |
102 | 480 => get_string('numminutes','',8), | |
103 | 420 => get_string('numminutes','',7), | |
104 | 360 => get_string('numminutes','',6), | |
105 | 300 => get_string('numminutes','',5), | |
106 | 240 => get_string('numminutes','',4), | |
107 | 180 => get_string('numminutes','',3), | |
108 | 120 => get_string('numminutes','',2), | |
109 | 60 => get_string('numminutes','',1), | |
110 | 30 => get_string('numseconds','',30), | |
111 | 0 => get_string('no') | |
112 | ); | |
109e3cb2 | 113 | $items = array(); |
5b8fa09b | 114 | $items[] = new admin_setting_configselect('cachetext', get_string('cachetext', 'admin'), get_string('configcachetext', 'admin'), 60, $cachetimes); |
115 | $items[] = new admin_setting_configselect('filteruploadedfiles', get_string('filteruploadedfiles', 'admin'), get_string('configfilteruploadedfiles', 'admin'), 0, | |
116 | array('0' => get_string('none'), '1' => get_string('allfiles'), '2' => get_string('htmlfilesonly'))); | |
109e3cb2 | 117 | $items[] = new admin_setting_configcheckbox('filtermatchoneperpage', get_string('filtermatchoneperpage', 'admin'), get_string('configfiltermatchoneperpage', 'admin'), 0); |
118 | $items[] = new admin_setting_configcheckbox('filtermatchonepertext', get_string('filtermatchonepertext', 'admin'), get_string('configfiltermatchonepertext', 'admin'), 0); | |
109e3cb2 | 119 | foreach ($items as $item) { |
120 | $item->set_updatedcallback('reset_text_filters_cache'); | |
121 | $temp->add($item); | |
122 | } | |
220a90c5 | 123 | } |
124 | $ADMIN->add('filtersettings', $temp); | |
125 | ||
5b8fa09b | 126 | $activefilters = filter_get_globally_enabled(); |
b810a4d3 | 127 | $filternames = filter_get_all_installed(); |
128 | foreach ($filternames as $filterpath => $strfiltername) { | |
129 | if (file_exists("$CFG->dirroot/$filterpath/filtersettings.php")) { | |
130 | $settings = new admin_settingpage('filtersetting'.str_replace('/', '', $filterpath), | |
5b8fa09b | 131 | $strfiltername, 'moodle/site:config', !isset($activefilters[$filterpath])); |
b810a4d3 | 132 | if ($ADMIN->fulltree) { |
133 | include("$CFG->dirroot/$filterpath/filtersettings.php"); | |
220a90c5 | 134 | } |
b810a4d3 | 135 | $ADMIN->add('filtersettings', $settings); |
220a90c5 | 136 | } |
137 | } | |
67a87e7d | 138 | |
78946b9b PS |
139 | |
140 | //== Portfolio settings == | |
141 | require_once($CFG->libdir. '/portfoliolib.php'); | |
b810a4d3 | 142 | $catname = get_string('portfolios', 'portfolio'); |
67a87e7d | 143 | $manage = get_string('manageportfolios', 'portfolio'); |
144 | $url = "$CFG->wwwroot/$CFG->admin/portfolio.php"; | |
145 | ||
90658eef | 146 | $ADMIN->add('modules', new admin_category('portfoliosettings', $catname, empty($CFG->enableportfolios))); |
67a87e7d | 147 | |
a50ef3d3 | 148 | // jump through hoops to do what we want |
149 | $temp = new admin_settingpage('manageportfolios', get_string('manageportfolios', 'portfolio')); | |
bee4bce2 | 150 | $temp->add(new admin_setting_heading('manageportfolios', get_string('activeportfolios', 'portfolio'), '')); |
a50ef3d3 | 151 | $temp->add(new admin_setting_manageportfolio()); |
bee4bce2 | 152 | $temp->add(new admin_setting_heading('manageportfolioscommon', get_string('commonsettings', 'admin'), get_string('commonsettingsdesc', 'portfolio'))); |
153 | $fileinfo = portfolio_filesize_info(); // make sure this is defined in one place since its used inside portfolio too to detect insane settings | |
154 | $fileoptions = $fileinfo['options']; | |
155 | $temp->add(new admin_setting_configselect( | |
156 | 'portfolio_moderate_filesize_threshold', | |
157 | get_string('moderatefilesizethreshold', 'portfolio'), | |
158 | get_string('moderatefilesizethresholddesc', 'portfolio'), | |
159 | $fileinfo['moderate'], $fileoptions)); | |
160 | $temp->add(new admin_setting_configselect( | |
161 | 'portfolio_high_filesize_threshold', | |
162 | get_string('highfilesizethreshold', 'portfolio'), | |
163 | get_string('highfilesizethresholddesc', 'portfolio'), | |
164 | $fileinfo['high'], $fileoptions)); | |
165 | ||
166 | $temp->add(new admin_setting_configtext( | |
167 | 'portfolio_moderate_db_threshold', | |
168 | get_string('moderatedbsizethreshold', 'portfolio'), | |
169 | get_string('moderatedbsizethresholddesc', 'portfolio'), | |
170 | 20, PARAM_INTEGER, 3)); | |
171 | ||
172 | $temp->add(new admin_setting_configtext( | |
173 | 'portfolio_high_db_threshold', | |
174 | get_string('highdbsizethreshold', 'portfolio'), | |
175 | get_string('highdbsizethresholddesc', 'portfolio'), | |
176 | 50, PARAM_INTEGER, 3)); | |
a50ef3d3 | 177 | |
178 | $ADMIN->add('portfoliosettings', $temp); | |
179 | $ADMIN->add('portfoliosettings', new admin_externalpage('portfolionew', get_string('addnewportfolio', 'portfolio'), $url, 'moodle/site:config', true), '', $url); | |
180 | $ADMIN->add('portfoliosettings', new admin_externalpage('portfoliodelete', get_string('deleteportfolio', 'portfolio'), $url, 'moodle/site:config', true), '', $url); | |
181 | $ADMIN->add('portfoliosettings', new admin_externalpage('portfoliocontroller', get_string('manageportfolios', 'portfolio'), $url, 'moodle/site:config', true), '', $url); | |
182 | ||
08d5e18b | 183 | foreach (portfolio_instances(false, false) as $portfolio) { |
edf1fc35 | 184 | require_once($CFG->dirroot . '/portfolio/' . $portfolio->get('plugin') . '/lib.php'); |
67a87e7d | 185 | $classname = 'portfolio_plugin_' . $portfolio->get('plugin'); |
a50ef3d3 | 186 | $ADMIN->add( |
187 | 'portfoliosettings', | |
08d5e18b | 188 | new admin_externalpage( |
189 | 'portfoliosettings' . $portfolio->get('id'), | |
658837bb | 190 | $portfolio->get('name'), |
08d5e18b | 191 | $url . '?edit=' . $portfolio->get('id'), |
192 | 'moodle/site:config', | |
193 | !$portfolio->get('visible') | |
194 | ), | |
a50ef3d3 | 195 | $portfolio->get('name'), |
196 | $url . ' ?edit=' . $portfolio->get('id') | |
197 | ); | |
67a87e7d | 198 | } |
4a65c39a | 199 | |
200 | // repository setting | |
201 | require_once("$CFG->dirroot/repository/lib.php"); | |
202 | $catname =get_string('repositories', 'repository'); | |
04bd6d2d | 203 | $managerepo = get_string('manage', 'repository'); |
204 | $url = $CFG->wwwroot.'/'.$CFG->admin.'/repository.php'; | |
4a65c39a | 205 | $ADMIN->add('modules', new admin_category('repositorysettings', $catname)); |
04bd6d2d | 206 | $temp = new admin_settingpage('managerepositories', $managerepo); |
5a8ca187 | 207 | $temp->add(new admin_setting_heading('managerepositories', get_string('activerepository', 'repository'), '')); |
4a65c39a | 208 | $temp->add(new admin_setting_managerepository()); |
5a8ca187 | 209 | $temp->add(new admin_setting_heading('managerepositoriescommonheading', get_string('commonsettings', 'admin'), '')); |
5430f05b | 210 | $temp->add(new admin_setting_configtext('repositorycacheexpire', get_string('cacheexpire', 'repository'), get_string('configcacheexpire', 'repository'), 120)); |
99d52655 | 211 | $temp->add(new admin_setting_configcheckbox('repositoryallowexternallinks', get_string('allowexternallinks', 'repository'), get_string('configallowexternallinks', 'repository'), 1)); |
4a65c39a | 212 | $ADMIN->add('repositorysettings', $temp); |
4f2b9a4f | 213 | $ADMIN->add('repositorysettings', new admin_externalpage('repositorynew', |
0d099914 | 214 | get_string('addplugin', 'repository'), $url, 'moodle/site:config', true), |
4a65c39a | 215 | '', $url); |
216 | $ADMIN->add('repositorysettings', new admin_externalpage('repositorydelete', | |
217 | get_string('deleterepository', 'repository'), $url, 'moodle/site:config', true), | |
218 | '', $url); | |
219 | $ADMIN->add('repositorysettings', new admin_externalpage('repositorycontroller', | |
fe9d7318 | 220 | get_string('manage', 'repository'), $url, 'moodle/site:config', true), |
4a65c39a | 221 | '', $url); |
0d099914 | 222 | $ADMIN->add('repositorysettings', new admin_externalpage('repositoryinstancenew', |
223 | get_string('createrepository', 'repository'), $url, 'moodle/site:config', true), | |
224 | '', $url); | |
225 | $ADMIN->add('repositorysettings', new admin_externalpage('repositoryinstanceedit', | |
226 | get_string('editrepositoryinstance', 'repository'), $url, 'moodle/site:config', true), | |
227 | '', $url); | |
78946b9b | 228 | foreach (repository::get_types() as $repositorytype) { |
edb50637 | 229 | //display setup page for plugins with: general options or multiple instances (e.g. has instance config) |
dbc01944 | 230 | $typeoptionnames = repository::static_function($repositorytype->get_typename(), 'get_type_option_names'); |
231 | $instanceoptionnames = repository::static_function($repositorytype->get_typename(), 'get_instance_option_names'); | |
edb50637 | 232 | if (!empty($typeoptionnames) || !empty($instanceoptionnames)) { |
4a65c39a | 233 | $ADMIN->add('repositorysettings', |
a6600395 | 234 | new admin_externalpage('repositorysettings'.$repositorytype->get_typename(), |
235 | $repositorytype->get_readablename(), | |
79698344 | 236 | $url . '?action=edit&repos=' . $repositorytype->get_typename()), |
4a65c39a | 237 | 'moodle/site:config'); |
238 | } | |
239 | } | |
78946b9b | 240 | } |
bee4bce2 | 241 | |
5ae9f539 | 242 | /// Web services |
cc93c7da | 243 | $ADMIN->add('modules', new admin_category('webservicesettings', get_string('webservices', 'webservice'))); |
3e6161fb | 244 | /// overview page |
245 | $temp = new admin_settingpage('webservicesoverview', get_string('webservicesoverview', 'webservice')); | |
246 | $temp->add(new admin_setting_webservicesoverview()); | |
247 | $ADMIN->add('webservicesettings', $temp); | |
248 | /// manage service | |
cc93c7da | 249 | $temp = new admin_settingpage('externalservices', get_string('externalservices', 'webservice')); |
8399c714 | 250 | $temp->add(new admin_setting_heading('manageserviceshelpexplaination', get_string('information', 'webservice'), get_string('servicehelpexplanation', 'webservice'))); |
cc93c7da | 251 | $temp->add(new admin_setting_manageexternalservices()); |
252 | $ADMIN->add('webservicesettings', $temp); | |
72977b37 | 253 | $ADMIN->add('webservicesettings', new admin_externalpage('externalservice', get_string('externalservice', 'webservice'), "$CFG->wwwroot/$CFG->admin/webservice/service.php", 'moodle/site:config', true)); |
254 | $ADMIN->add('webservicesettings', new admin_externalpage('externalservicefunctions', get_string('externalservicefunctions', 'webservice'), "$CFG->wwwroot/$CFG->admin/webservice/service_functions.php", 'moodle/site:config', true)); | |
255 | $ADMIN->add('webservicesettings', new admin_externalpage('externalserviceusers', get_string('externalserviceusers', 'webservice'), "$CFG->wwwroot/$CFG->admin/webservice/service_users.php", 'moodle/site:config', true)); | |
5ae9f539 | 256 | /// manage protocol page link |
cc93c7da | 257 | $temp = new admin_settingpage('webserviceprotocols', get_string('manageprotocols', 'webservice')); |
da124b5e | 258 | $temp->add(new admin_setting_managewebserviceprotocols()); |
cc93c7da | 259 | if (empty($CFG->enablewebservices)) { |
260 | $temp->add(new admin_setting_heading('webservicesaredisabled', '', get_string('disabledwarning', 'webservice'))); | |
261 | } | |
4b4b53a7 | 262 | $url = new moodle_url('/webservice/wsdoc.php'); |
263 | $atag =html_writer::start_tag('a', array('href' => $url)).get_string('documentation', 'webservice').html_writer::end_tag('a'); | |
264 | $temp->add(new admin_setting_configcheckbox('enablewsdocumentation', get_string('enablewsdocumentation', 'admin'), get_string('configenablewsdocumentation', 'admin', $atag), false)); | |
cc93c7da | 265 | $ADMIN->add('webservicesettings', $temp); |
5ae9f539 | 266 | /// links to protocol pages |
cc93c7da | 267 | $webservices_available = get_plugin_list('webservice'); |
268 | $active_webservices = empty($CFG->webserviceprotocols) ? array() : explode(',', $CFG->webserviceprotocols); | |
269 | foreach ($webservices_available as $webservice => $location) { | |
270 | if (file_exists("$location/settings.php")) { | |
271 | $name = get_string('pluginname', 'webservice_'.$webservice); | |
272 | $settings = new admin_settingpage('webservicesetting'.$webservice, $name, 'moodle/site:config', !in_array($webservice, $active_webservices) or empty($CFG->enablewebservices)); | |
273 | if ($ADMIN->fulltree) { | |
274 | include("$location/settings.php"); | |
275 | } | |
276 | $ADMIN->add('webservicesettings', $settings); | |
277 | } | |
278 | } | |
5ae9f539 | 279 | /// manage token page link |
15e417fe | 280 | $ADMIN->add('webservicesettings', new admin_externalpage('addwebservicetoken', get_string('managetokens', 'webservice'), "$CFG->wwwroot/$CFG->admin/webservice/tokens.php", 'moodle/site:config', true)); |
5ae9f539 | 281 | $temp = new admin_settingpage('webservicetokens', get_string('managetokens', 'webservice')); |
282 | $temp->add(new admin_setting_managewebservicetokens()); | |
283 | if (empty($CFG->enablewebservices)) { | |
284 | $temp->add(new admin_setting_heading('webservicesaredisabled', '', get_string('disabledwarning', 'webservice'))); | |
285 | } | |
286 | $ADMIN->add('webservicesettings', $temp); | |
287 | ||
cc93c7da | 288 | |
78946b9b | 289 | if ($hassiteconfig || has_capability('moodle/question:config', $systemcontext)) { |
bee4bce2 | 290 | // Question type settings. |
291 | $ADMIN->add('modules', new admin_category('qtypesettings', get_string('questiontypes', 'admin'))); | |
292 | $ADMIN->add('qtypesettings', new admin_page_manageqtypes()); | |
293 | require_once($CFG->libdir . '/questionlib.php'); | |
294 | global $QTYPES; | |
295 | foreach ($QTYPES as $qtype) { | |
296 | $settingsfile = $qtype->plugin_dir() . '/settings.php'; | |
297 | if (file_exists($settingsfile)) { | |
298 | $settings = new admin_settingpage('qtypesetting' . $qtype->name(), | |
299 | $qtype->local_name(), 'moodle/question:config'); | |
300 | if ($ADMIN->fulltree) { | |
301 | include($settingsfile); | |
302 | } | |
303 | $ADMIN->add('qtypesettings', $settings); | |
304 | } | |
305 | } | |
220a90c5 | 306 | } |
b63a6a63 | 307 | |
1bcb7eb5 | 308 | $ADMIN->add('reports', new admin_externalpage('comments', get_string('comments'), $CFG->wwwroot.'/comment/', 'moodle/site:viewreports')); |
b63a6a63 | 309 | /// Now add reports |
310 | ||
17da2e6f | 311 | foreach (get_plugin_list('report') as $plugin => $plugindir) { |
312 | $settings_path = "$plugindir/settings.php"; | |
b63a6a63 | 313 | if (file_exists($settings_path)) { |
314 | include($settings_path); | |
315 | continue; | |
316 | } | |
317 | ||
17da2e6f | 318 | $index_path = "$plugindir/index.php"; |
b63a6a63 | 319 | if (!file_exists($index_path)) { |
320 | continue; | |
321 | } | |
322 | // old style 3rd party plugin without settings.php | |
17da2e6f | 323 | $www_path = "$CFG->wwwroot/$CFG->admin/report/$plugin/index.php"; |
c5fce2fa | 324 | $reportname = get_string($plugin, 'report_' . $plugin); |
325 | $ADMIN->add('reports', new admin_externalpage('report'.$plugin, $reportname, $www_path, 'moodle/site:viewreports')); | |
b63a6a63 | 326 | } |
327 | ||
17da2e6f | 328 | |
329 | /// Add all local plugins - must be always last! | |
1ed47309 DM |
330 | if ($hassiteconfig) { |
331 | $ADMIN->add('modules', new admin_category('localplugins', get_string('localplugins'))); | |
332 | $ADMIN->add('localplugins', new admin_externalpage('managelocalplugins', get_string('localpluginsmanage'), | |
333 | $CFG->wwwroot . '/' . $CFG->admin . '/localplugins.php')); | |
334 | } | |
17da2e6f | 335 | |
336 | foreach (get_plugin_list('local') as $plugin => $plugindir) { | |
337 | $settings_path = "$plugindir/settings.php"; | |
338 | if (file_exists($settings_path)) { | |
339 | include($settings_path); | |
340 | continue; | |
341 | } | |
1bcb7eb5 | 342 | } |