Lines Matching refs:msg

72     foreach ($msgs as $msg) {
73 if ($msg) msg($msg, 2);
245 msg('DokuWiki version: ' . getVersion(), 1);
247 msg('Your PHP version is too old (' . phpversion() . ' vs. 8.2+ needed)', -1);
249 msg('PHP version ' . phpversion(), 1);
252 msg('Your PHP version is too old', -1);
258 msg('PHP memory is unlimited', 1);
260 msg('PHP is limited to less than 16MB RAM (' . filesize_h($mem) . ').
263 msg('PHP is limited to less than 20MB RAM (' . filesize_h($mem) . '),
266 msg('PHP is limited to less than 32MB RAM (' . filesize_h($mem) . '),
269 msg('More than 32MB RAM (' . filesize_h($mem) . ') available.', 1);
274 msg('Changelog is writable', 1);
276 msg('Changelog is not writable', -1);
280 msg('Old changelog exists', 0);
284 msg('Importing old changelog failed', -1);
286 msg('Importing old changelog now.', 0);
288 msg('Old changelog imported', 1);
290 msg('Importoldchangelog plugin not disabled after import', -1);
295 msg('conf directory is writable', 1);
297 msg('conf directory is not writable', -1);
303 msg('conf/users.auth.php is writable', 1);
305 msg('conf/users.auth.php is not writable', 0);
311 msg('mb_string extension is available but will not be used', 0);
313 msg('mb_string extension is available and will be used', 1);
316 msg('mb_string extension not available - PHP only replacements will be used', 0);
320 msg('PHP is missing UTF-8 support in Perl-Compatible Regular Expressions (PCRE)', -1);
323msg('PHP is missing Unicode properties support in Perl-Compatible Regular Expressions (PCRE)', -1);
328 msg('No valid locale is set for your PHP setup. You should fix this', -1);
330 msg('Your locale <code>' . hsc($loc) . '</code> seems not to be a UTF-8 locale,
333 msg('Valid locale ' . hsc($loc) . ' found.', 1);
337msg('Debugging support is enabled. If you don\'t need it you should set $conf[\'allowdebug\'] = 0'…
339 msg('Debugging support is disabled', 1);
343 msg(sprintf(
348 msg('You are part of the groups ' . implode(', ', $INFO['userinfo']['grps']), 0);
350 msg('You are currently not logged in', 0);
353 msg('Your current permission for this page is ' . $INFO['perm'], 0);
356 msg('The current page is writable by the webserver', 1);
358 msg('The current page can be created by the webserver', 1);
360 msg('The current page is not writable by the webserver', -1);
364 msg('The current page is writable by you', 1);
366 msg('The current page is not writable by you', -1);
374 msg('The search index seems to be working', 1);
376 msg(
384 msg(
472 * in the $msg data structure
474 * @param array $msg dokuwiki msg structure:
480 function info_msg_allowed($msg) argument
485 if (empty($msg['allow']) || ($msg['allow'] == MSG_PUBLIC)) return true;
490 switch ($msg['allow']) {
502 … 'invalid msg allow restriction. msg="' . $msg['msg'] . '" allow=' . $msg['allow'] . '"',