Lines Matching refs:msg

69     foreach ($msgs as $msg) {
70 if ($msg) msg($msg, 2);
237 msg('DokuWiki version: ' . getVersion(), 1);
239 msg('Your PHP version is too old (' . phpversion() . ' vs. 7.4+ needed)', -1);
241 msg('PHP version ' . phpversion(), 1);
244 msg('Your PHP version is too old', -1);
250 msg('PHP memory is unlimited', 1);
252 msg('PHP is limited to less than 16MB RAM (' . filesize_h($mem) . ').
255 msg('PHP is limited to less than 20MB RAM (' . filesize_h($mem) . '),
258 msg('PHP is limited to less than 32MB RAM (' . filesize_h($mem) . '),
261 msg('More than 32MB RAM (' . filesize_h($mem) . ') available.', 1);
266 msg('Changelog is writable', 1);
268 msg('Changelog is not writable', -1);
272 msg('Old changelog exists', 0);
276 msg('Importing old changelog failed', -1);
278 msg('Importing old changelog now.', 0);
280 msg('Old changelog imported', 1);
282 msg('Importoldchangelog plugin not disabled after import', -1);
287 msg('conf directory is writable', 1);
289 msg('conf directory is not writable', -1);
295 msg('conf/users.auth.php is writable', 1);
297 msg('conf/users.auth.php is not writable', 0);
303 msg('mb_string extension is available but will not be used', 0);
305 msg('mb_string extension is available and will be used', 1);
307msg('mb_string function overloading is enabled, this will cause problems and should be disabled', …
311 msg('mb_string extension not available - PHP only replacements will be used', 0);
315 msg('PHP is missing UTF-8 support in Perl-Compatible Regular Expressions (PCRE)', -1);
318msg('PHP is missing Unicode properties support in Perl-Compatible Regular Expressions (PCRE)', -1);
323 msg('No valid locale is set for your PHP setup. You should fix this', -1);
325 msg('Your locale <code>' . hsc($loc) . '</code> seems not to be a UTF-8 locale,
328 msg('Valid locale ' . hsc($loc) . ' found.', 1);
332msg('Debugging support is enabled. If you don\'t need it you should set $conf[\'allowdebug\'] = 0'…
334 msg('Debugging support is disabled', 1);
338 msg(sprintf(
343 msg('You are part of the groups ' . implode(', ', $INFO['userinfo']['grps']), 0);
345 msg('You are currently not logged in', 0);
348 msg('Your current permission for this page is ' . $INFO['perm'], 0);
351 msg('The current page is writable by the webserver', 1);
353 msg('The current page can be created by the webserver', 1);
355 msg('The current page is not writable by the webserver', -1);
359 msg('The current page is writable by you', 1);
361 msg('The current page is not writable by you', -1);
382 msg(
390 msg('The search index seems to be working', 1);
392 msg(
478 * in the $msg data structure
480 * @param array $msg dokuwiki msg structure:
486 function info_msg_allowed($msg) argument
491 if (empty($msg['allow']) || ($msg['allow'] == MSG_PUBLIC)) return true;
496 switch ($msg['allow']) {
508 … 'invalid msg allow restriction. msg="' . $msg['msg'] . '" allow=' . $msg['allow'] . '"',