Home
last modified time | relevance | path

Searched refs:str (Results 751 – 775 of 895) sorted by path

1...<<313233343536

/plugin/struct/meta/
H A DCSVExporter.php109 * @param string $str
112 protected function escape($str)
114 return '"' . str_replace('"', '""', $str) . '"';
111 escape($str) global() argument
H A DSchema.php303 if ($INPUT->server->str('REMOTE_USER') === '') return false;
305 return auth_isMember($this->config['allowed editors'], $INPUT->server->str('REMOTE_USER'), $USERINFO['grps']);
H A DSearchConfig.php133 $INPUT->server->str('REMOTE_USER'),
H A DSearchConfigParameters.php42 [$colname, $sort] = $confHlp->parseSort($INPUT->str(self::$PARAM_SORT));
/plugin/struct/renderer/
H A Dcsv.php28 $this->info['struct_table_hash'] != $INPUT->str('hash')
/plugin/struct/types/
H A DPage.php74 $lookup = trim($INPUT->str('search'));
H A DTag.php50 $lookup = trim($INPUT->str('search'));
H A DUser.php76 $lookup = trim($INPUT->str('search'));
/plugin/structat/action/
H A Dcache.php56 $user_key = ';' . $INPUT->server->str('REMOTE_USER');
/plugin/structgroup/types/
H A DGroup.php64 $lookup = trim($INPUT->str('search'));
/plugin/structnotification/
H A Dadmin.php54 if ($INPUT->str('action') && $INPUT->arr('predicate') && checkSecurityToken()) {
56 if ($INPUT->str('action') === 'add') {
64 } elseif($INPUT->str('action') === 'delete') {
67 } elseif($INPUT->str('action') === 'update') {
77 $predicate['id'] = $INPUT->str('edit');
121 if ($INPUT->str('edit') == $predicate['id']) {
/plugin/structodt/
H A Daction.php96 $method = 'action_' . $INPUT->str('action');
159 $templates = json_decode($INPUT->str('template'));
160 $ext = $INPUT->str('filetype');
170 $schema = $INPUT->str('schema');
171 $pid = $INPUT->str('pid');
172 $rev = $INPUT->str('rev');
173 $rid = $INPUT->str('rid');
174 $filename = $INPUT->str('filename');
207 $template_string = htmlspecialchars_decode($INPUT->str('template_string'));
211 $format = $INPUT->str('forma
[all...]
/plugin/structpublish/action/
H A Dpublish.php38 $newRevision = $helper->saveRevision(key($in), $INPUT->str('version'));
/plugin/structpublish/
H A Dadmin.php45 if ($INPUT->str('action') && $INPUT->arr('assignment') && checkSecurityToken()) {
48 if ($INPUT->str('action') === 'delete') {
57 } elseif ($INPUT->str('action') === 'add') {
/plugin/structpublish/helper/
H A Ddb.php110 $userId = $args[1] ?? $INPUT->server->str('REMOTE_USER');
135 $userId = $INPUT->server->str('REMOTE_USER');
/plugin/structtasks/
H A Daction.php77 $editor_id = $INPUT->server->str('REMOTE_USER');
/plugin/submgr/
H A Daction.php59 if (!$INPUT->server->str('REMOTE_USER')) return;
64 $hlp->runRules($INPUT->server->str('REMOTE_USER'), $USERINFO['grps']);
H A Dadmin.php53 $this->hlp->removeRule($INPUT->str('rm'));
/plugin/superacl/lang/cs/
H A Dhelp.txt3 Na této stránce můžete přidávat a odebírat oprávnění na jmenné prostory a stránky Vaší wiki.
5 Levý panel zobrazuje všechny dostupné jmenné prostory a stránky.
12 Pro detailnější nápovědu si přečtěte stránku [[doku>wiki:acl|oficiální dokumentaci ACL]], která Vám…
/plugin/superacl/
H A Dscript.js67 parseatt: function(str){ argument
68 if(str[0] == '?') str = str.substr(1);
70 var all = str.split('&');
83 hsc: function(str) { argument
84 str = str.replace(/&/g,"&amp;");
85 str = str.replace(/\"/g,"&quot;");
86 str = str.replace(/\'/g,"&#039;");
87 str = str.replace(/</g,"&lt;");
88 str = str.replace(/>/g,"&gt;");
89 return str;
/plugin/swarmwebhook/webhooks/
H A DAbstractWebhook.php16 if ($INPUT->server->str('HTTP_USER_AGENT') === 'Zapier') {
/plugin/swiftmail/Swift/Message/
H A DEncoder.php427 …public function rfc2047Encode($str, $charset="iso-8859-1", $language="en-us", $chunk=76, $le="\r\n… argument
430 if (!$this->is7BitPrintable($str))
433 $str = $lang_spec . str_replace("+", "%20", urlencode($str));
435 preg_match_all('~.{1,'.($chunk-6).'}([^%]{0,3})~', $str, $matches);
/plugin/swiftmail/
H A Dadmin.php33 if($INPUT->str('to')) $mail->to($INPUT->str('to'));
34 if($INPUT->str('cc')) $mail->to($INPUT->str('cc'));
35 if($INPUT->str('bcc')) $mail->to($INPUT->str('bcc'));
63 $form->addElement(form_makeField('text', 'to', $INPUT->str('to'), 'To:', '', 'block'));
64 $form->addElement(form_makeField('text', 'cc', $INPUT->str('cc'), 'Cc:', '', 'block'));
65 $form->addElement(form_makeField('text', 'bcc', $INPUT->str('bcc'), 'Bcc:', '', 'block'));
/plugin/swiftmail/lang/cs/
H A Dintro.txt3 Na této stránce můžete vyvolat odeslání zkušebního e-mailu z DokuWiki. Můžete toho využít pro ověře…
/plugin/syntaxhighlighter/Scripts/
H A DshBrushCss.js10 dp.sh.Highlighter.prototype.GetKeywordsCSS=function(str) argument
11 {return'\\b([a-z_]|)'+str.replace(/ /g,'(?=:)\\b|\\b([a-z_\\*]|\\*|)')+'(?=:)\\b';}
12 dp.sh.Highlighter.prototype.GetValuesCSS=function(str) argument
13 {return'\\b'+str.replace(/ /g,'(?!-)(?!:)\\b|\\b()')+'\:\\b';}

1...<<313233343536