Home
last modified time | relevance | path

Searched refs:args (Results 1 – 25 of 559) sorted by relevance

12345678910>>...23

/plugin/cnmap/
H A Dsyntax.php137 $args['zoom'] = intval($args['zoom']);
138 if($args['zoom'] < 3 || $args['zoom'] > 19)
154 $args['mark'] = strtolower($args['mark']);
155 … $args['mark'] = (($args['mark'] == 'y') || ($args['mark'] == 'yes')|| ($args['mark'] == 'on'));
162 $args['sat'] = strtolower($args['sat']);
163 … $args['sat'] = (($args['sat'] == 'y') || ($args['sat'] == 'yes')|| ($args['sat'] == 'on'));
189 $args['title']=addslashes($args['title']);
190 $args['title']=str_replace("<","\\<", $args['title']);
191 $args['title']=str_replace(">","\\>", $args['title']);
229 $args['title']=addslashes($args['title']);
[all …]
/plugin/tableplot/
H A Dtable2Plot.js46 var args = { class in jQuery.fn.tablePlot
84 args.lastSeries = (args.series == 'columns') ?
91 args.dataEnd = (args.series == 'rows') ?
105 if (! args.width) { args.width = $table.width(); }
106 if (! args.height) { args.height = $table.height(); }
130 for (i=args.firstSeries;i<=args.lastSeries;i++) {
141 for (j=args.dataStart;j<=args.dataEnd;j++) {
145 if (args.dataTransform) { y = args.dataTransform(y); }
146 if (args.xaxisTransform) { x = args.xaxisTransform(x); }
178 if (args.dataTransform) { y = args.dataTransform(y); }
[all …]
/plugin/farm/
H A Dsoapserver.php45 $appname = $args[0];
46 $apppwd = $args[1];
47 $service = $args[2];
51 $serviceargs = isset($args[3]) ? (is_array($args[3]) ? $args[3] : array($args[3])) : array();
134 $name = isset($args['name']) ? $args['name'] : '';
135 $template = isset($args['template']) ? $args['template'] : '';
149 $name = isset($args['name']) ? $args['name'] : reset($args);
161 $name = isset($args['name']) ? $args['name'] : reset($args);
177 $name = isset($args['name']) ? $args['name'] : '';
178 $status = isset($args['status']) ? $args['status'] : '';
[all …]
/plugin/combo/vendor/salesforce/handlebars-php/src/Handlebars/
H A DHelpers.php217 * @param array $args passed arguments to helper
223 public function helperIf($template, $context, $args, $source) argument
225 $tpl = $template->getEngine()->loadString('{{#if ' . $args . '}}' . $source . '{{/if}}');
227 $tmp = $context->get($args);
249 $args = $this->parseArgs($context, substr($name, 7));
259 if (isset($args[0]) && $args[0]) {
290 * @param array $args passed arguments to helper
296 public function helperEach($template, $context, $args, $source) argument
298 list($keyname, $slice_start, $slice_end) = $this->extractSlice($args);
391 helperUnless($template, $context, $args, $source) global() argument
418 helperWith($template, $context, $args, $source) global() argument
441 helperBindAttr($template, $context, $args, $source) global() argument
459 helperUpper($template, $context, $args, $source) global() argument
477 helperLower($template, $context, $args, $source) global() argument
495 helperCapitalize($template, $context, $args, $source) global() argument
513 helperCapitalizeWords($template, $context, $args, $source) global() argument
531 helperReverse($template, $context, $args, $source) global() argument
549 helperFormatDate($template, $context, $args, $source) global() argument
581 helperInflect($template, $context, $args, $source) global() argument
605 helperDefault($template, $context, $args, $source) global() argument
627 helperTruncate($template, $context, $args, $source) global() argument
653 helperRaw($template, $context, $args, $source) global() argument
674 helperRepeat($template, $context, $args, $source) global() argument
703 helperDefine($template, $context, $args, $source) global() argument
730 helperInvoke($template, $context, $args, $source) global() argument
784 parseArgs($context, $args) global() argument
[all...]
/plugin/ifauthex/lib/
H A Dparser.php37 $this->_args = $args;
41 public function args() { return $this->_args; } function in AST\\ElementInstance
45 foreach ($this->args() as $arg) {
64 if (count($this->args()) == 0) {
89 foreach ($this->args() as $arg) {
131 foreach ($this->args() as $arg) {
158 foreach ($this->args() as $arg) {
173 foreach ($this->args() as $arg) {
386 $retval[] = $args[$i];
607 $args = $elmInstance->args();
[all …]
/plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Util/
H A DGetopt.php18 if (empty($args)) {
29 if (isset($args[0][0]) && $args[0][0] != '-') {
30 array_shift($args);
33 reset($args);
35 $args = array_map('trim', $args);
38 $i = key($args);
39 next($args);
59 $args
66 $args
100 next($args);
[all …]
/plugin/conform/
H A Dhelper.php73 if ( count($args) != $argcheck[$args[0]] )
77 else if ( count($args) > 1 )
79 $lowerattribute = strtolower($args[1]);
80 switch ( $args[0] )
84 if ( $required[$args[0]] == 1 )
161 array_push( $constraintargs, $args );
164 $required[$args[0]] = 1;
167 $args[3] = $this->conformList($args[3]);
213 array_push($args, htmlspecialchars($arg));
234 array_push($args, htmlspecialchars($arg));
[all …]
/plugin/elasticsearch/vendor/ruflin/elastica/src/Query/
H A DBoolQuery.php19 * @param AbstractQuery|array $args Should query
23 public function addShould($args): self argument
25 return $this->_addQuery('should', $args);
31 * @param AbstractQuery|array $args Must query
35 public function addMust($args): self argument
37 return $this->_addQuery('must', $args);
43 * @param AbstractQuery|array $args Must not query
47 public function addMustNot($args): self argument
49 return $this->_addQuery('must_not', $args);
102 * @param AbstractQuery|array $args Quer
108 _addQuery(string $type, $args) global() argument
[all...]
H A DSpanMulti.php30 * @param AbstractQuery|array $args Matching query
34 public function setMatch($args): self argument
36 return $this->_setQuery('match', $args);
43 * @param AbstractQuery|array $args Query
49 protected function _setQuery(string $type, $args): self argument
51 if (!\is_array($args) && !($args instanceof AbstractQuery)) {
55 return $this->setParam($type, $args);
H A DSpanFirst.php33 * @param AbstractSpanQuery|array $args Matching query
39 public function setMatch($args): self argument
41 return $this->_setQuery('match', $args);
60 * @param AbstractQuery|array $args Query
66 protected function _setQuery(string $type, $args): self argument
68 if (!\is_array($args) && !($args instanceof AbstractSpanQuery)) {
72 return $this->setParam($type, $args);
/plugin/do/
H A Dhelper.php109 if (isset($args)) {
110 if (isset($args['ns'])) {
129 if (isset($args['id'])) {
132 $args['id'] = array($args['id']);
148 if (isset($args['from']) && isset($args['to'])) {
161 if (isset($args['md5'])) {
163 $args['md5'] = array($args['md5']);
172 $args[$n] = array($args[$n]);
182 $args[$n]
191 $args[$n] = array_map('utf8_strtolower', $args[$n]);
[all …]
/plugin/elasticsearch/vendor/ruflin/elastica/src/
H A DJSON.php18 * @param mixed $args,... JSON string to parse
24 public static function parse(...$args/* inherit from json_decode */) argument
27 if (1 === \count($args)) {
28 $args[] = true;
32 $array = \json_decode(...$args);
49 * @param mixed $args,... Target to stringify
55 public static function stringify(...$args/* inherit from json_encode */) argument
58 isset($args[1]) ? $args[1] |= \JSON_PRESERVE_ZERO_FRACTION : $args[
[all...]
/plugin/mellelexport/
H A Drenderer.php284 $args = $args[0];
359 $args[0] = str_replace('&', '&amp;', $args[0]);
360 $args[0] = str_replace('\'', '&apos;', $args[0]);
361 $args[0] = str_replace('<', '&lt;', $args[0]);
362 $args[0] = str_replace('>', '&gt;', $args[0]);
365 $args[1] = str_replace('&', '&amp;', $args[1]);
372 $args[0] = 'mailto:'.$args[0];
377 $args[1] = $args[0];
382 $args[1] = str_replace('"', '&quot;', $args[1]);
387 $args[0] = DOKU_URL.$args[0];
[all …]
/plugin/schedule/syntax/
H A Dblock.php52 $args = " ".$data." ";
53 … if (preg_match_all ("#(\"[^\"]*\")* help (\"[^\"]*\")*#", strtolower ($args), $dumy) > 0) {
77 if (preg_match_all ("#^ >([^ ]*) (.*)#", $args, $dumy) > 0) {
79 $args = ' '.$dumy[2][0];
100 $cache = $this->schedules->readCache ($args);
120 $this->scheduleDateFilters ($args);
124 $this->scheduleOtherFilters ($args);
130 $this->schedules->writeCache ($args, $text);
156 function scheduleDateFilters ($args) { argument
163 if (preg_match_all ("#(\"[^\"]*\")*(?<op>[<=>])!(\"[^\"]*\")*#", $args, $dumy) > 0)
[all …]
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Node/Expression/
H A DGetAttrTest.php25 $args = new ArrayExpression([], 1);
26 $args->addElement(new NameExpression('foo', 1));
27 $args->addElement(new ConstantExpression('bar', 1));
28 $node = new GetAttrExpression($expr, $attr, $args, Template::ARRAY_CALL, 1);
32 $this->assertEquals($args, $node->getNode('arguments'));
42 $args = new ArrayExpression([], 1);
43 $node = new GetAttrExpression($expr, $attr, $args, Template::ANY_CALL, 1);
46 $node = new GetAttrExpression($expr, $attr, $args, Template::ARRAY_CALL, 1);
49 $args = new ArrayExpression([], 1);
50 $args->addElement(new NameExpression('foo', 1));
[all …]
/plugin/freechat/phpfreechat/src/
H A Dpfci18n.class.php27 $args = func_get_args();
29 …$args[0] = isset($GLOBALS[$serverid]["i18n"][$args[0]]) && $GLOBALS[$serverid]["i18n"][$args[0]] !…
31 $GLOBALS[$serverid]["i18n"][$args[0]] :
32 iconv("UTF-8", $GLOBALS["output_encoding"], $GLOBALS[$serverid]["i18n"][$args[0]])) :
33 "_".$args[0]."_";
34 return call_user_func_array('sprintf', $args);
42 $args = func_get_args();
44 …$args[0] = isset($GLOBALS[$serverid]["i18n"][$args[0]]) && $GLOBALS[$serverid]["i18n"][$args[0]] !…
46 $GLOBALS[$serverid]["i18n"][$args[0]] :
48 "_".$args[0]."_";
[all …]
/plugin/nstoc/
H A Dsyntax.php501 $args[1] = $args[0] * 1;
504 $args[0] = str_replace('/', ':', $args[0]);
506 $args[1] = 0;
510 $args[0] = str_replace('/', ':', $args[0]);
512 $args[1] *= 1;
527 $args[0] = syntax_plugin_nstoc::_path($dir, $args[0]);
535 $args[0] = '';
540 $args[0] = substr($args[0], 0, $f);
558 $args[0] = ($f)
564 $args[0] = 1;
[all …]
/plugin/medialist/
H A Dhelper.php67 $args = $match;
68 $args = str_replace('@ID@', $INFO['id'], $args);
69 $args = str_replace('@NS@', getNS($INFO['id']), $args);
70 $args = str_replace('@PAGE@', noNS($INFO['id']), $args);
72 $args = explode(' ', $args, 2);
75 if (substr($args[0], -1) == ':') {
76 $params['ns'] = substr($args[0], 0, -1);
78 } elseif (substr($args[0], -2) == ':*') {
81 $params['page'] = $args[0];
85 if (!empty($args[1])) {
[all …]
/plugin/sequencediagram/bower_components/lodash/test/
H A Dtest-fp.js516 args || (args = slice.call(arguments));
523 args || (args = slice.call(arguments));
530 args || (args = slice.call(arguments));
537 args || (args = slice.call(arguments));
904 args || (args = slice.call(arguments));
995 args || (args = slice.call(arguments));
1158 args || (args = slice.call(arguments));
1166 args || (args = slice.call(arguments));
1231 args || (args = slice.call(arguments));
1401 args || (args = slice.call(arguments));
[all …]
/plugin/webdav/vendor/sabre/vobject/lib/
H A DDocument.php97 $args = func_get_args();
99 if (0 === count($args) || is_array($args[0])) {
100 $children = isset($args[0]) ? $args[0] : [];
101 $defaults = isset($args[1]) ? $args[1] : true;
103 $name = $args[0];
104 $children = isset($args[1]) ? $args[1] : [];
105 $defaults = isset($args[2]) ? $args[2] : true;
/plugin/ryubin/ryubin/js/
H A DAC_RunActiveContent.js211 function AC_GetArgs(args, ext, srcParamName, classid, mimeType){ argument
216 for (var i=0; i < args.length; i=i+2){
217 var currArg = args[i].toLowerCase();
223 ret.embedAttrs[args[i]] = args[i+1];
227 args[i+1] = AC_AddExtension(args[i+1], ext);
228 ret.embedAttrs["src"] = args[i+1];
229 ret.params[srcParamName] = args[i+1];
271 ret.objAttrs[args[i]] = args[i+1];
283 ret.embedAttrs[args[i]] = ret.objAttrs[args[i]] = args[i+1];
286 ret.embedAttrs[args[i]] = ret.params[args[i]] = args[i+1];
/plugin/fedauth/Auth/OpenID/
H A DSReg.php227 $args = $m->getArgs($obj->ns_uri);
229 if ($args === null || Auth_OpenID::isFailure($args)) {
233 $obj->parseExtensionArgs($args);
262 function parseExtensionArgs($args, $strict=false) argument
266 $items = Auth_OpenID::arrayGet($args, $list_name);
391 $args = array();
402 $args['policy_url'] = $this->policy_url;
405 return $args;
487 if ($args === null || Auth_OpenID::isFailure($args)) {
492 if (in_array($field_name, array_keys($args))) {
[all …]
/plugin/openid/Auth/OpenID/
H A DSReg.php252 $args = $m->getArgs($obj->ns_uri);
254 if ($args === null || Auth_OpenID::isFailure($args)) {
258 $obj->parseExtensionArgs($args);
287 * @param array $args
291 function parseExtensionArgs($args, $strict=false) argument
295 $items = Auth_OpenID::arrayGet($args, $list_name);
436 $args = [];
447 $args['policy_url'] = $this->policy_url;
450 return $args;
541 if ($args === null || Auth_OpenID::isFailure($args)) {
[all …]
/plugin/database2/
H A Dsyntax.php76 $args = array();
89 if (($value === true) && ! isset($args['table'])) {
90 $args['table'] = $name;
91 unset($args[$name]);
93 $args[$name] = $value;
99 return array($state, $args);
120 list($state, $args) = $data;
123 $this->tableName = trim($args['table']);
124 $this->dbName = trim($args['database']);
130 $this->options = $args;
[all …]
/plugin/diagramsnet/lib/
H A Delectron.js1209 transparent: args.format == 'png' && (args.bg == null || args.bg == 'none'),
1216 var pageByPage = (args.format == 'pdf' && !args.print), from, pdfs;
1220 from = args.allPages? 0 : parseInt(args.from || 0);
1224 args.from = from;
1225 args.to = from;
1295 else if (args.format == 'png' || args.format == 'jpg' || args.format == 'jpeg')
1311 if (args.h)
1326 if (args.dpi != null && args.format == 'png')
1331 if (args.embedXml == "1" && args.format == 'png')
1426 args.border = args.border || 0;
[all …]

12345678910>>...23