Home
last modified time | relevance | path

Searched refs:msg (Results 1 – 25 of 1136) sorted by relevance

12345678910>>...46

/plugin/maintenance/
Dadmin.php83 $msg = sprintf( $this->getLang('start_no_script'), $script);
84 msg($msg, -1);
89 $msg = sprintf( $this->getLang('locked'), $script);
90 msg($msg, -1);
97 $msg = sprintf( $this->getLang('start_fail'), $script);
98 msg($msg, -1);
101 $msg = $this->getLang('start_success');
102 msg($msg, 1);
105 $msg = $this->getLang('start_already');
106 msg($msg, -1);
[all …]
/plugin/fedauth/classes/
Dfa_base.class.php97 * @param string $msg localized string id
102 function error($msg, $params=null) { argument
103 return $this->_status($msg, -1, $params);
109 * @param string $msg localized string id
114 function success($msg, $params=null) { argument
115 return $this->_status($msg, 1, $params);
121 * @param string $msg localized string id
126 function warn($msg, $params=null) { argument
127 return $this->_status($msg, 2, $params);
133 * @param string $msg localized string id
[all …]
/plugin/freechat/phpfreechat/src/commands/
Ddebug.class.php14 $msg = "";
15 $msg .= var_export($u, true);
16 $msg = str_replace("\n","",addslashes(nl2br($msg)));
17 $xml_reponse->script("pfc.handleResponse('".$this->name."', 'ok', '".$msg."');");
22 $msg = "";
23 $msg .= var_export($c, true);
24 $msg = str_replace("\n","",addslashes(nl2br($msg)));
25 $xml_reponse->script("pfc.handleResponse('".$this->name."', 'ok', '".$msg."');");
29 $msg = "";
30 $msg .= var_export($_SERVER, true);
[all …]
Dbanlist.class.php23 $msg = "";
24 $msg .= "<p>"._pfc("The banished user list is:")."</p>";
27 $msg .= "<ul>";
31 $msg .= "<li style=\"margin-left:50px\">".$n."</li>";
33 $msg .= "</ul>";
37 $msg .= "<p>("._pfc("Empty").")</p>";
39 $msg .= "<p>"._pfc("'/unban {nickname}' will unban the user identified by {nickname}")."</p>";
40 $msg .= "<p>"._pfc("'/unban all' will unban all the users on this channel")."</p>";
42 $xml_reponse->script("pfc.handleResponse('".$this->name."', 'ok', '".addslashes($msg)."');");
/plugin/stylingpages/
Daction.php62 msg('Invalid pattern <code>' . hsc($pattern) . '</code>', -1);
115 $msg = $this->getLang('deleting_file');
116 $msg = str_replace('$1', $file, $msg);
117 msg($msg);
131 $msg = $this->getLang('replacing_file');
132 $msg = str_replace('$1', $file, $msg);
133 msg($msg);
135 $msg = $this->getLang('creating_file');
136 $msg = str_replace('$1', $file, $msg);
137 msg($msg);
/plugin/diagramsnet/lib/WEB-INF/lib/
Dslf4j-api-1.7.25.jar ... ) org.slf4j.event.Level level String msg Object[] args Throwable throwable private void recordEvent ( ...
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Reports/
DNotifysend.php160 $msg = $this->generateMessage($totalFiles, $totalErrors, $totalWarnings);
161 if ($msg === null) {
166 $this->notifyErrors($msg);
188 $msg = '';
190 $msg .= 'Checked '.$totalFiles.' files'.PHP_EOL;
192 $msg .= $this->_lastCheckedFile.PHP_EOL;
196 $msg .= $totalWarnings.' warnings'.PHP_EOL;
200 $msg .= $totalErrors.' errors'.PHP_EOL;
203 return $msg;
227 * @param string $msg Message to display.
[all …]
/plugin/ajaxedit/
Dhelper.php29 * @param string $msg
33 function error($msg,$type=self::ERROR_OTHER,$exit = true){ argument
36 'msg' => $msg,
135 $msg = '';
138 $msg = 'ERROR_LOCK:tbd';
141 $msg = ob_get_clean();
144 $msg = 'ERROR_SECTOC:tbd';
147 $msg = p_locale_xhtml('denied');
151 $msg = 'ERROR_READ:tbd';
155 $msg = sprintf($this->getLang('e_modified'),hsc(editorinfo($INFO['user'])));
[all …]
/plugin/xcom/scripts/
Dxcom_save.php27 $this->msg('nopage');
38 $err .= $this->msg('nolocal',1);
48 $err .= $this->msg('noremote',1);
51 $err .= $this->msg('chkauth',1);
56 $this->msg('success');
67 function msg($which, $ret=false, $nl="\n") { function in xcom_save
88 echo "$id ". $this->msg('ismedia',1," " . $matches[1] . "\n");
99 $this->msg('nomedia',0, " $this->page.\n");
102 $this->msg('reqmedia');
116 … echo "$mfile " . $this->msg('fsize',true,"") . " " . strlen($this->data_buffer) ."\n";
[all …]
/plugin/move/helper/
Dop.php35 msg(sprintf($this->getLang('notexist'), $src), -1);
39 msg(sprintf($this->getLang('norights'), $src), -1);
48 msg(sprintf($this->getLang('filelocked'), $src), -1);
54 msg(sprintf($this->getLang('notchanged'), $src), -1);
60 msg(sprintf($this->getLang('exists'), $src, $dst), -1);
66 msg(sprintf($this->getLang('notargetperms'), $dst), -1);
83 msg(sprintf($this->getLang('medianotexist'), $src), -1);
87 msg(sprintf($this->getLang('nomediarights'), $src), -1);
93 msg(sprintf($this->getLang('medianotchanged'), $src), -1);
99 msg(sprintf($this->getLang('mediaexists'), $src, $dst), -1);
[all …]
/plugin/components/lib/
Dajax.php31 protected function error($code, $msg='') { argument
32 if (function_exists('http_response_code') && !$msg) {
36 if (!$msg) {
38 case 200: $msg = 'OK'; break;
39 case 400: $msg = 'Bad request'; break;
40 case 401: $msg = 'Unauthorized'; break;
41 case 403: $msg = 'Forbidden'; break;
42 case 404: $msg = 'Not Found'; break;
43 case 416: $msg = 'Requested Range Not Satisfiable'; break;
44 default: $code = 200; $msg = "OK"; break;
[all …]
/plugin/simplechat/
Dajax.php17 $msg = str_replace( array("\r","\n"), '\r', trim($_GET['msg']) ); variable
18 if( strlen($msg) > 0 ) {
21 if( startsWith($msg,"/" )) {
22 if( startsWith( $msg, "/me ") ) {
23 …$newmsgline = ".\t&laquo;".htmlspecialchars($_GET['user'])." ".htmlspecialchars( substr( $msg , 4)…
24 } elseif ( startsWith( $msg, "/time") ){
26 } elseif ( startsWith( $msg, "/flip") ){
29 } elseif ( startsWith( $msg, "/roll") ){
30 $dicesides = intval(substr( $msg , 6 ));
42 $newmsgline = htmlspecialchars($_GET['user'])."\t".htmlspecialchars($msg)."\n";
/plugin/diagramsnet/lib/js/diagramly/
DP2PCollab.js26 var msg = JSON.stringify({from: myClientId, id: messageId, type: type,
32 socket.emit('message', msg);
37 p2pClients[p2pId].send(msg);
59 function processMsg(msg) argument
61 msg = JSON.parse(msg);
64 if (clientLastMsgId[msg.from] >= msg.id) return;
66 clientLastMsgId[msg.from] = msg.id;
67 var username = msg.username? msg.username : 'Anonymous';
68 var userId = msg.userId;
95 var msgData = msg.data;
[all …]
/plugin/autogallery/
Daction.php59 msg("First time initialisation 1/3: created Namespache wiki");
65 msg("First time initialisation 2/3: created (sub-)namespache wiki:bilder");
71 msg(str_replace("/","\\",dirname(wikiFN("wiki:bilder:dummy"))."\\index.txt"));
72 msg("First time initialisation 3/3: Created base-index for your future galleries");
94 msg("made an own NS for gallery!", 1);
104 msg("made a Sub-NS for images of gallery!", 1);
122msg("made gallery file. Please Upload your images to: " . "wiki:bilder:" . $tstamp . ":" . $tstamp…
137 msg("Link to new gallery created in wiki:bilder:index",1);
146msg("Deleted content of this actual file...otherwise it would not be editable in future!",-1);
/plugin/oauth/
H A Dhelper.php128 $msg = $e->getMessage();
131 $trans = $this->getLang($msg);
137 $msg = $trans;
140 msg('OAuth: ' . $friendly . ' ' . hsc($msg), -1);
142 $msg = get_class($e) . ' at ' . $e->getFile() . ':' . $e->getLine() . '<br>';
143 $msg .= hsc($e->getTraceAsString());
144 msg("<pre>$msg</pre>", -1);
/plugin/drawio/
Dscript.js110 var msg = JSON.parse(evt.data);
112 if (msg.event == 'init')
159 else if (msg.event == 'export')
162 if(msg.format == 'xmlpng')
164 imgData = msg.data ;
169 else if (msg.format == 'svg')
172 imgData = atob(msg.data.substring(msg.data.indexOf(',') + 1));
196 content: msg.data,
217 else if (msg.event == 'autosave')
219 dr = JSON.stringify({lastModified: new Date(), xml: msg.xml});
[all …]
/plugin/authsplit/
Dauth.php29 msg($message, $err, $line, $file);
46 msg(sprintf($this->getLang('nocfg'), $settingName), -1);
53 msg(sprintf($this->getLang('pluginload'), $pluginName), -1);
65 msg(sprintf($this->getLang('nocfg'), 'autocreate_users'), -1);
73 msg(sprintf($this->getLang('nocfg'), 'username_caseconversion'), -1);
81 msg(sprintf($this->getLang('nocfg'), 'debug'), -1);
110 $msg = 'authsplit:__construct(): '.
129 $msg .= $parts[$key].', ';
131 $msg = rtrim($msg, ', ').'.';
132 $this->_debug($msg, 1, __LINE__, __FILE__);
[all …]
/plugin/autogroup/
Daction.php85 $msg = $this->getLang('nosupport');
86 msg($msg, -1);
87 dbglog($msg);
144 $msg = sprintf($this->getLang('update_ok'), $user, implode(',',$in), implode(',',$out));
145 dbglog($msg);
164 $msg = $this->getLang('nosupport');
165 msg($msg, -1);
166 dbglog($msg);
/plugin/authradius/
Dauth.php38 msg("Radius err: PHP radius extension not found.",-1,__LINE__,__FILE__);
58 msg("Radius err: ". radius_strerror($this->radius),-1,__LINE__,__FILE__);
74 msg("Radius err: ". radius_strerror($this->radius),-1,__LINE__,__FILE__);
91msg("RadiusError: RADIUS_MICROSOFT_MS_CHAP_CHALLENGE:" . radius_strerror($this->radius));
104msg("RadiusError: RADIUS_MICROSOFT_MS_CHAP2_RESPONSE:" . radius_strerror($this->radius));
123 msg("Error getting attribute: %s\n", radius_strerror($this->radius));
136 msg("Radius Error: " . radius_strerror($this->radius));
140 msg("Radius: Challenge not supported by auth_radius.",-1);
144 msg('Radius Error: ('.$user.') ' . radius_strerror($this->radius),-1,__LINE__,__FILE__);
167 msg("Radius provided group(s) " . $this->classes[$user]);
/plugin/scrape/vendor/ezyang/htmlpurifier/library/HTMLPurifier/
DErrorCollector.php68 * @param string $msg Error message text
70 public function send($severity, $msg) argument
97 $msg = $this->locale->getMessage($msg);
99 $msg = $this->locale->formatMessage($msg, $args);
103 $msg = strtr($msg, $subst);
110 self::MESSAGE => $msg,
157 $struct->addError($severity, $msg);
213 list($severity, $msg) = $error;
224 … $string .= '<strong class="description">' . $this->generator->escape($msg) . '</strong> ';
/plugin/bez/cron/
H A Dfunctions.php56 $msg = array();
66 if (!isset($msg[$key])) {
67 $msg[$key] = array(
73 $msg[$key]['issues'][] = $thread;
82 if (!isset($msg[$key])) {
83 $msg[$key] = array(
91 $msg[$key]['coming_tasks'][] = $task;
93 $msg[$key]['outdated_tasks'][] = $task;
100 foreach ($msg as $user => $data) {
/plugin/diagramsnet/
Dscript.js18 var msg = JSON.parse(evt.data);
20 if (msg.event == 'init') {
42 else if (msg.event == 'save') {
43 xmlData = msg.xml;
51 else if (msg.event == 'export') {
58 content: msg.data,
66 image.setAttribute('src', msg.data);
82 else if (msg.event == 'exit') {
/plugin/freechat/phpfreechat/src/
Dphpfreechat.class.php151 function FilterSmiley($msg) argument
171 $split_words = preg_split($query, $msg, -1, PREG_SPLIT_DELIM_CAPTURE);
172 $msg = "";
174 $msg .= preg_replace($search, $replace, $word);
175 return $msg;
182 function PreFilterMsg($msg) argument
185 if (preg_match("/^\[/i",$msg))
187 $msg = utf8_substr($msg, 0, $c->max_text_len+25);
189 $msg = utf8_substr($msg, 0, $c->max_text_len);
190 $msg = phpFreeChat::FilterSpecialChar($msg);
[all …]
/plugin/combo/ComboStrap/
H A DTemplateStore.php22 LogUtility::msg("You can't set a value with a template store");
27 LogUtility::msg("You can't get a value with a template store");
33 LogUtility::msg("You can't get a value with a template store");
38 LogUtility::msg("You can't set a value with a template store");
43 LogUtility::msg("You can't persist with a template store");
53 LogUtility::msg("Reset: The template format is not yet implemented");
H A DLogUtility.php81 …public static function msg(string $message, int $level = self::LVL_MSG_ERROR, string $canonical = … function in ComboStrap\\LogUtility
123 …* @param null|string $msg - may be null always this is the default if a variable is not initialize…
128 …static function log2file(?string $msg, int $logLevel = self::LVL_MSG_ERROR, ?string $canonical = s… argument
132 self::messageNotEmpty($msg);
134 $msg = $e->getMessage();
144 $msg = $prefix . ' - ' . $msg;
155 …$messageWritten = self::LVL_NAME[$logLevel] . " - $msg - (Page: $id, IP: {$INPUT->server->str('REM…
158 self::throwErrorIfTest($logLevel, $msg, $e);
246 msg($htmlMsg, $dokuWikiLevel, '', '', $allow);
336 self::msg($message, LogUtility::LVL_MSG_ERROR, $canonical, $e);
[all …]

12345678910>>...46