Home
last modified time | relevance | path

Searched refs:val (Results 26 – 50 of 887) sorted by relevance

12345678910>>...36

/plugin/xtermrtf/
H A Dsyntax.php162 if (preg_match("/^cf(.*)/i",$corps[$i],$val)) {
163 $idx=$val[1]-1;
172 $idx=$val[1]-1;
180 else if (preg_match("/^par/i",$corps[$i],$val)) {
188 else if (preg_match("/^ul/i",$corps[$i],$val)) {
192 else if (preg_match("/^b0/i",$corps[$i],$val)) {
196 else if (preg_match("/^b/i",$corps[$i],$val)) {
200 else if (preg_match("/^i0/i",$corps[$i],$val)) {
204 else if (preg_match("/^i/i",$corps[$i],$val)) {
214 if (preg_match("/^.*? (.*?)$/",$corps[$i],$val)) {
[all …]
/plugin/farmer/admin/
H A Dconfig.php68 ->val($farmconf['base']['farmhost']);
70 ->val($farmconf['base']['basedomain']);
74 foreach ($farmconf['inherit'] as $key => $val) {
78 if ($val) $chk->attr('checked', 'checked');
91 ->val($farmconf['notfound']['show']);
93 ->val($farmconf['notfound']['url']);
112 foreach ($data as $key => $val) {
113 if (is_array($val)) {
116 foreach ($val as $skey => $sval) {
120 $res[] = "$key = " . (is_numeric($val)
[all...]
/plugin/osm/
H A Dsyntax.php67 list($match, $key, $val) = $kvpair;
71 if (in_array($val, $this->layers))
72 $opts['layer'] = $val;
76 $val = (float) $val;
77 … if ($val >= $this->constraints[$key]['min'] && $val <= $this->constraints[$key]['max'])
78 $opts[$key] = $val;
83 $val = (int) $val;
84 … if ($val >= $this->constraints[$key]['min'] && $val <= $this->constraints[$key]['max'])
85 $opts[$key] = $val;
/plugin/authgoogle/google/service/
H A DGoogle_Model.php41 foreach ($array as $key => $val) {
42 $this->$key = $val;
47 if ($this->isAssociativeArray($val)) {
49 foreach($val as $arrayKey => $arrayItem) {
50 $val[$arrayKey] = $this->createObjectFromName($keyTypeName, $arrayItem);
52 $this->$key = $val;
54 $this->$key = $this->createObjectFromName($keyTypeName, $val);
56 } else if (is_array($val)) {
58 foreach ($val as $arrayIndex => $arrayItem) {
/plugin/authgooglesheets/vendor/google/apiclient/src/
H A DModel.php67 $val = $this->modelData[$key];
69 $val = array();
71 $val = null;
74 if ($this->isAssociativeArray($val)) {
83 } else if (is_array($val)) {
105 foreach ($array as $key => $val) {
118 $this->$key = $val;
120 $this->$key = new $keyType($val);
124 $this->$key = $val;
129 $this->$camelKey = $val;
[all …]
/plugin/jplayer/vendor/happyworm/jplayer/lib/circle-player/js/
H A Djquery.transform2d.js282 , split, prop, val
295 val = split[1];
309 val = val.split(",");
315 val = toRadian(val);
323 curr[0] = +val;
327 curr[3] = val;
331 val = val.split(",");
332 curr[0] = val[0];
333 curr[3] = val.length>1 ? val[1] : val[0];
345 val = val.split(",");
[all …]
/plugin/dyncontent/
H A Dscript.js14 dw_linkwiz_v2.val = props;
207 dw_linkwiz_v2.$entry.val(a.title);
226 var link = dw_linkwiz_v2.$entry.val(),
257 if(dw_linkwiz_v2.val){
258 if(dw_linkwiz_v2.val.open) {
267 if(dw_linkwiz_v2.val.close) {
288 dw_linkwiz_v2.$entry.val(entry_value);
316 q: dw_linkwiz_v2.$entry.val()
331 var temp = dw_linkwiz_v2.$entry.val();
332 dw_linkwiz_v2.$entry.val('');
[all …]
/plugin/etherpadlite/scripts/
H A Detherpadlite.js102 ep.password = ep.pwdlg.inp.val();
117 ep.pwdlg.inp.val(ep.password);
178 ep.dlg.encMode.val('noenc');
179 ep.dlg.encAMode.val('wikiwrite');
180 ep.dlg.readMode.val('wikiwrite');
182 ep.dlg.encPasswordFrm.val('');
183 ep.dlg.readPasswordFrm.val('');
184 ep.dlg.writePasswordFrm.val('');
229 ep.dlg.encMode.val(data.encMode);
234 ep.dlg.encPasswordFrm.val('');
[all …]
/plugin/pycode/
H A Dscript.js361 if (jQuery("#pycode__src-url").val() == "") {
376 data["name"] = jQuery("#pycode__lns-from").val()+":"+jQuery("#pycode__lns-to").val();
382 if (jQuery("#pycode__def").val() == "") {
393 if (jQuery("#pycode__def").val() == "" &&
394 jQuery("#pycode__cls").val() == "") {
397 else if (jQuery("#pycode__def").val() != "" &&
398 jQuery("#pycode__cls").val() == "") {
401 else if (jQuery("#pycode__def").val() == "" &&
406 data["name"] = jQuery("#pycode__def").val()+" "+jQuery("#pycode__cls").val();
413 if (jQuery("#pycode__cls").val() != "") {
[all …]
/plugin/dwcommits/
H A Dhelper.php299 $val = trim($val);
301 return '<option value="'. $val .'">' . $val .'</option>';
303 return '<option value="' .$val . '" selected>' . $val . '</option>';
560 $branch = $val;
615 $val = wordwrap($val, 80,"\n");
616 $val = hsc($val);
618 $val = preg_replace($regex,"<span class='dwc_hilite'>$1</span>",$val);
623 $val = date("D M d H:i:s Y" ,$val);
643 $result .= "$val\n";
655 if($val) return " $col LIKE '%$val%' ";
[all …]
/plugin/strata/driver/
H A Dpgsql.php20 public function castToNumber($val) { argument
21 return "SUBSTRING($val FROM E'^(-?[0-9]+\\\\.?[0-9]*)')::numeric";
24 public function orderBy($val) { argument
26 "$val IS NOT NULL",
27 $this->castToNumber($val),
28 $val
/plugin/bootswrapper/exe/
H A Dpopup.js14 $component.val(jQuery('ul.nav .active a').data('component'));
18 $component.val(jQuery(this).data('component'));
30 $output.val('');
36 var component = $component.val(),
45 if ($attribute.find('input:checked').val()) {
49 if ($attribute.find('input,select').val()) {
50 tag.push(' '+ data.attributeName + '="' + $attribute.find('input,select').val() + '"');
58 $output.val(tag.join(''));
77 opener.insertAtCarret('wiki__text', $output.val());
/plugin/ajaxloader/
H A Dscript.js17 for (val in more_params) {
18 if (more_params.hasOwnProperty(val)) {
19 params[val] = more_params[val];
27 for (val in params) {
28 if (params.hasOwnProperty(val)) {
29 ajax.setVar(val, params[val]);
/plugin/gplusone/
H A Dsyntax.php35 $val = $this->localConf[$setting];
36 if ($val == '') {
37 $val = parent::getConf($setting, $notset);
39 return $val;
54 foreach ($this->conf as $param => $val) {
55 $val = $this->getConf($param);
56 if ($val != '') {
57 $out .= ' data-' . $param . '="' . $val . '"';
/plugin/adhoctags/
H A Dhelper.php48 foreach($attList as $key => $val) {
67 $out .= ' '.$key. (is_null($val) ? '' : '="'.$val.'"');
72 if (in_array(strtolower(trim($val)), array('ltr','rtl','auto'))) {
73 $out .= ' dir="'. hsc($val).'"';
80 if (in_array(strtolower(trim($val)), array('hidden','until-found'))) {
81 $out .= ' hidden="'. hsc($val).'"';
89 $out .= ' '.$key.'="'.hsc($val).'"';
97 $out .= ' '.$key.'="'.hsc($val).'"';
102 $out .= ' '.$key.'="'.hsc($val)
[all...]
/plugin/googlemaps3/
H A Dsyntax.php129 foreach ($map as $key => $val) {
130 …$jsOptions .= is_numeric($val) ? "$key : $val," : (is_bool($val) ? "$key : ".(int)$val."," : "$key…
201 list($match, $key, $val) = $option;
202 if (isset($map[$key])) if ($key=='kml') $map[$key] = $val; else $map[$key] = strtolower($val);
204 if ($val=='true') $val = 1; elseif ($val=='false') $val = 0;
205 $map[$key] = $val;
/plugin/tplmod/
H A Dscript.js48 var elems = val.split(/[\/\\]/);
51 return val.replace(img,JSINFO['tmplft_logo']);
59 var elems = val.split(/[\/\\]/);
61 return val.replace(img,JSINFO['tmplft_logo']);
68 jQuery("p.claim,span#dw__tagline").html(function(i,val) { argument
70 if(val.match(/<.*?>/)) {
71 val = val.replace(/^\s*(<.*?>)(.*?)(<\/)/,function(m,m1,m2,m3) {
75 else val = JSINFO['tmplft_tag'] ;
79 return val;
88 jQuery("span#dw__title").html(function(index,val) { argument
[all …]
/plugin/struct/jsoneditor/
H A Dsetup.js18 $config.val(editor.getText());
25 editor.setText($config.val());
29 editor.setText($config.val());
37 var type = jQuery(this).val();
39 var conf = $editor.val();
40 $editor.val('"..."')[0].updateEditor();
50 $editor.val(conf)[0].updateEditor();
/plugin/fancysearch/
H A Dscript.js13 var curNS = $oldNamespaceSelect.val();
36 jQuery(".fancysearch_namespace").val(tgt.innerHTML);
43 var ns = jQuery(".fancysearch_namespace").val();
45 var val = jQuery(this).val();
47 $qin.val(val);
/plugin/semanticdata/syntax/
H A Dentry.php87 foreach($vals as $val){
88 $val = trim($this->dthlp->_cleanData($val,$column['type']));
89 if($val == '') continue;
90 if(!in_array($val,$data[$column['key']])) $data[$column['key']][] = $val;
132 foreach($data['data'] as $key => $val){
133 if($val == '' || !count($val)) continue;
140 $val = $ID . '|' . $val;
145 if(is_array($val)){
146 $cnt = count($val);
198 foreach ($data['data'] as $key => $val){
[all …]
/plugin/prosemirror/action/
H A Deditor.php203 $linkForm->addRadioButton('linktype', $this->getLang('type:wiki page'))->val('internallink');
204 $linkForm->addRadioButton('linktype', $this->getLang('type:interwiki'))->val('interwikilink');
205 $linkForm->addRadioButton('linktype', $this->getLang('type:email'))->val('emaillink');
206 $linkForm->addRadioButton('linktype', $this->getLang('type:external'))->val('externallink')->attr('checked', 'checked');
207 $linkForm->addRadioButton('linktype', $this->getLang('type:other'))->val('other');
216 $linkForm->addRadioButton('nametype', $this->getLang('type:automatic title'))->val('automatic')->attr('checked', 'checked');
217 $linkForm->addRadioButton('nametype', $this->getLang('type:custom title'))->val('custom');
218 $linkForm->addRadioButton('nametype', $this->getLang('type:image'))->val('image');
270 $mediaForm->addRadioButton('alignment', $this->getLang('label:default alignment'))->val('')->attr('checked', 'checked');
271 $mediaForm->addRadioButton('alignment', $this->getLang('label:float left'))->val('lef
[all...]
/plugin/davcal/syntax/
H A Dtable.php71 list($key, $val) = explode('=', $option);
73 $val = trim($val);
77 $lastid = $val;
78 if(!in_array($val, $data['id']))
79 $data['id'][$val] = '#3a87ad';
82 if(($val === 'on') || ($val === 'true'))
86 if(($val === 'on') || ($val === 'true'))
91 if(in_array($val, $tzlist) || $val === 'no')
92 $data['timezone'] = $val;
100 if(($val === 'on') || ($val === 'true'))
[all …]
/plugin/data/syntax/
H A Dentry.php115 foreach ($vals as $val) {
116 $val = trim($this->dthlp->cleanData($val, $column['type']));
117 if ($val == '') continue;
118 if (!in_array($val, $data[$column['key']])) {
119 $data[$column['key']][] = $val;
188 foreach ($data['data'] as $key => $val) {
189 if ($val == '' || is_null($val) || (is_array($val)
[all...]
/plugin/abc2/abc-libraries/abc2svg/
H A Dpedline-1.js14 de.val=de.s.x-de.x-5
16 de.prev.val=de.x-de.prev.x}else{de.x-=3
17 de.val+=10}}}
18 of()},out_lped:function(of,x,y,val,defl){if(!this.cfmt().pedline){of(x,y,val,defl) argument
22 val-=2.5}else{this.out_svg("v6")}
23 if(defl.noen){val-=2.5
24 this.out_svg("h"+val.toFixed(1)+'l2.5 -6"/>\n')}else{this.out_svg("h"+val.toFixed(1)+'v-6"/>\n')}},set_fmt:function(of,cmd,param){if(cmd=="pedline")
/plugin/jplayer/vendor/happyworm/jplayer/lib/
H A Dpopcorn.player.js64 basePlayer[ val ] = container[ val ];
81 }( val ));
91 }( val )),
135 set: function( val ) { argument
138 currentTime = +val;
151 set: function( val ) { argument
154 volume = +val;
166 set: function( val ) { argument
169 muted = +val;
181 set: function( val ) { argument
[all …]

12345678910>>...36