Lines Matching refs:msg

69     foreach ($msgs as $msg) {
70 if ($msg) msg($msg, 2);
238 msg('DokuWiki version: ' . getVersion(), 1);
240 msg('Your PHP version is too old (' . phpversion() . ' vs. 8.2+ needed)', -1);
242 msg('PHP version ' . phpversion(), 1);
245 msg('Your PHP version is too old', -1);
251 msg('PHP memory is unlimited', 1);
253 msg('PHP is limited to less than 16MB RAM (' . filesize_h($mem) . ').
256 msg('PHP is limited to less than 20MB RAM (' . filesize_h($mem) . '),
259 msg('PHP is limited to less than 32MB RAM (' . filesize_h($mem) . '),
262 msg('More than 32MB RAM (' . filesize_h($mem) . ') available.', 1);
267 msg('Changelog is writable', 1);
269 msg('Changelog is not writable', -1);
273 msg('Old changelog exists', 0);
277 msg('Importing old changelog failed', -1);
279 msg('Importing old changelog now.', 0);
281 msg('Old changelog imported', 1);
283 msg('Importoldchangelog plugin not disabled after import', -1);
288 msg('conf directory is writable', 1);
290 msg('conf directory is not writable', -1);
296 msg('conf/users.auth.php is writable', 1);
298 msg('conf/users.auth.php is not writable', 0);
304 msg('mb_string extension is available but will not be used', 0);
306 msg('mb_string extension is available and will be used', 1);
309 msg('mb_string extension not available - PHP only replacements will be used', 0);
313 msg('PHP is missing UTF-8 support in Perl-Compatible Regular Expressions (PCRE)', -1);
316msg('PHP is missing Unicode properties support in Perl-Compatible Regular Expressions (PCRE)', -1);
321 msg('No valid locale is set for your PHP setup. You should fix this', -1);
323 msg('Your locale <code>' . hsc($loc) . '</code> seems not to be a UTF-8 locale,
326 msg('Valid locale ' . hsc($loc) . ' found.', 1);
330msg('Debugging support is enabled. If you don\'t need it you should set $conf[\'allowdebug\'] = 0'…
332 msg('Debugging support is disabled', 1);
336 msg(sprintf(
341 msg('You are part of the groups ' . implode(', ', $INFO['userinfo']['grps']), 0);
343 msg('You are currently not logged in', 0);
346 msg('Your current permission for this page is ' . $INFO['perm'], 0);
349 msg('The current page is writable by the webserver', 1);
351 msg('The current page can be created by the webserver', 1);
353 msg('The current page is not writable by the webserver', -1);
357 msg('The current page is writable by you', 1);
359 msg('The current page is not writable by you', -1);
380 msg(
388 msg('The search index seems to be working', 1);
390 msg(
477 * in the $msg data structure
479 * @param array $msg dokuwiki msg structure:
485 function info_msg_allowed($msg) argument
490 if (empty($msg['allow']) || ($msg['allow'] == MSG_PUBLIC)) return true;
495 switch ($msg['allow']) {
507 … 'invalid msg allow restriction. msg="' . $msg['msg'] . '" allow=' . $msg['allow'] . '"',