Lines Matching refs:m
75 …m($p)) as $f) if(preg_match('`^name\s*=\s*([^#]+)(#.*)?$`i', trim($f), $m)) $appname = trim($m[1]);
118 foreach(get_class_methods('farmSOAP') as $m) {
119 if(strpos($m, 'service_') !== 0) continue;
120 $m = substr($m, 8);
121 …m])) $allowed[] = $m.((isset($_POST['soap_remoteapp_serviceimposedargs'][$m]) && !empty($_POST['so…
147 …m($p)) as $f) if(preg_match('`^name\s*=\s*([^#]+)(#.*)?$`i', trim($f), $m)) $appname = trim($m[1]);
224 foreach(get_class_methods('farmSOAP') as $m) {
225 if(strpos($m, 'service_') !== 0) continue;
226 $m = substr($m, 8);
228 …p_remoteapp_serviceallowed['.$m.']" '.($a ? (isset($a['allowed']['value'][$m]) ? 'checked="checked…
229 …ptln(' <small>'.$this->manager->getLang('soapconfig_field_desc_allowedservice_'.$m).'</small><br …
232 if(isset($a['allowed']['value'][$m])) {
233 $imp = $a['allowed']['value'][$m];
238 …sedargs').' : <input type="text" name="soap_remoteapp_serviceimposedargs['.$m.']" value="'.$imp.'"…
263 if(preg_match('`^(name|pwd)\s*=\s*([^#]+)(#(.*))?$`i', trim($f), $m)) {
264 $app[strtolower($m[1])] = array(
265 'value' => trim($m[2]),
266 'comment' => isset($m[4]) ? trim($m[4]) : ''
269 if(preg_match('`^allowed\s*=\s*([^#]+)(#(.*))?$`i', trim($f), $m)) {
270 $list = trim($m[1]);
273 'comment' => isset($m[3]) ? trim($m[3]) : ''
275 while(preg_match('`^([^(,]+)(\(([^)]+)\))?(\s*,\s*(.*))?$`', $list, $m)) {
276 $sname = trim($m[1]);
277 $ovr = trim($m[3]);
278 $list = isset($m[5]) ? trim($m[5]) : '';