Home
last modified time | relevance | path

Searched refs:opt (Results 101 – 125 of 249) sorted by relevance

12345678910

/plugin/bureaucracyau/helper/
H A Dfielduser.php29 $label = $this->opt['label'];
47 $value = $this->opt['value'];
H A Dfieldusers.php29 $label = $this->opt['label'];
46 $value = $this->opt['value'];
H A Dfieldradio.php22 $this->opt['args'] = array_filter(array_map('trim', explode('|',array_shift($args))));
44 $params = array_merge($this->opt, $params);
/plugin/bureaucracy-au/helper/
H A Dfielduser.php29 $label = $this->opt['label'];
47 $value = $this->opt['value'];
H A Dfieldusers.php29 $label = $this->opt['label'];
46 $value = $this->opt['value'];
H A Dfieldradio.php22 $this->opt['args'] = array_filter(array_map('trim', explode('|',array_shift($args))));
44 $params = array_merge($this->opt, $params);
/plugin/bureaucracy/helper/
H A Dfielduser.php29 $label = $this->opt['label'];
47 $value = $this->opt['value'];
H A Dfieldusers.php29 $label = $this->opt['label'];
46 $value = $this->opt['value'];
H A Dfieldradio.php22 $this->opt['args'] = array_filter(array_map('trim', explode('|',array_shift($args))));
44 $params = array_merge($this->opt, $params);
/plugin/task/syntax/
H A Dtasks.php292 $opt = array();
293 $opt['first'] = $perpage * ($i - 1);
294 $opt['filter'] = $filer;
299 $opt['view_user'] = $_REQUEST['view_user'];
302 $ret[] = '<a href="'.wl($ID, $opt).'" class="wikilink1" title="'.$i.'">'.$i.'</a>';
/plugin/sqlite/
H A DSQLiteDB.php320 * Get a config value from the opt table
322 * @param string $opt Config name
327 public function getOpt($opt, $default = null)
329 $value = $this->queryValue("SELECT val FROM opts WHERE opt = ?", [$opt]);
337 * Set a config value in the opt table
339 * @param $opt
343 public function setOpt($opt, $value)
345 $this->exec('REPLACE INTO opts (opt,val) VALUES (?,?)', [$opt,
298 getOpt($opt, $default = null) global() argument
314 setOpt($opt, $value) global() argument
[all...]
/plugin/flowchartjs/
H A Dscript.js9 return function (opt){ argument
18 obj.drawSVG(id, opt);
/plugin/nsindex/
H A Dsyntax.php60 list($opt,$val) = explode('=', $m);
62 $opt = $m;
67 $data[$opt] = $val;
/plugin/btable2/
H A DREADME.md22 <opt>showempty,colongroups</opt>
43 - tag "opt" - list of options, seperated by whitespace or comma
/plugin/xcom/
H A Dscript.js390 opt = opts.trim();
391 if(!regex.test(opt)) {
548 function xcom_getArray(opt) { argument
550 if(!opt) return false;
553 if(matches = opt.match(/\((.*?)\)/)) {
563 function xcom_timeStamp(opt) { argument
565 if(opt.match(/\d\d\d\d-\d\d-\d\d/)) {
566 var d = new Date(opt);
575 return opt;
/plugin/schedule/
H A Dscript.js45 opt = elem.options [elem.options.selectedIndex];
46 params += "&"+elem.name+"="+opt.text;
/plugin/bureaucracy-au/
H A Dsyntax.php207 if(isset($field->opt['value'])) {
208 $field->opt['value'] = $this->replace($field->opt['value']);
278 } else if(isset($data['fields'][$i]->opt['label'])) {
280 $label = $data['fields'][$i]->opt['label'];
282 $data['fields'][$i]->opt['display'] = $labels[$label];
/plugin/bureaucracyau/
H A Dsyntax.php207 if(isset($field->opt['value'])) {
208 $field->opt['value'] = $this->replace($field->opt['value']);
278 } else if(isset($data['fields'][$i]->opt['label'])) {
280 $label = $data['fields'][$i]->opt['label'];
282 $data['fields'][$i]->opt['display'] = $labels[$label];
/plugin/ckgedit/
H A Dscript.js439 var opt = options[i];
440 if (typeof opt !== 'string') {
443 if (opt.match(/^\d+$/)) {
444 width = opt;
445 } else if (opt.match(/^\w+$/)) {
446 link = opt;
/plugin/farm/
H A Dvirtualhostconfig.class.php44 if(!isset($this->manager->opt['save'])) return;
53 if(isset($this->manager->opt['save'])) {
/plugin/nspages/fileHelper/
H A DfileHelper.php25 $opt = array(
32 search($files, $conf['datadir'], 'search_universal', $opt, $this->data['wantedDir']);
/plugin/bureaucracy/
H A Dsyntax.php212 if(isset($field->opt['value'])) {
213 $field->opt['value'] = $this->replace($field->opt['value']);
283 } else if(isset($data['fields'][$i]->opt['label'])) {
285 $label = $data['fields'][$i]->opt['label'];
287 $data['fields'][$i]->opt['display'] = $labels[$label];
/plugin/ckgdoku/
H A Dscript.js412 var opt = options[i];
413 if (opt.match(/^\d+$/)) {
414 width = opt;
415 } else if (opt.match(/^\w+$/)) {
416 link = opt;
/plugin/davcal/fullcalendar-3.10.5/
H A Dfullcalendar.js1682 return this.view.opt(name);
4375 var val = this.opt(name);
4500 return this.view.opt(name);
4750 val = this.opt('eventBackgroundColor') || this.opt('eventColor');
4764 val = this.opt('eventBorderColor') || this.opt('eventColor');
7882 var opt = this.opt('eventLimitText');
7884 return opt(num);
10495 return this.opt('allDayHtml') || util_1.htmlEscape(this.opt('allDayText'));
10972 return this.opt('contentHeight') === 'auto' || this.opt('height') === 'auto';
11253 return this.opt('timezone') !== 'local' && this.opt('timezone') !== 'UTC';
[all …]
/plugin/tplmod/
H A Dscript.js130 jQuery("div.mobileTools option") .each(function(index, opt) { argument
138 if(opt.value.match(xcludes)) return;
143 if(opt.value.match(regex)) jQuery(this).hide();

12345678910