Home
last modified time | relevance | path

Searched refs:val (Results 251 – 275 of 887) sorted by relevance

1...<<11121314151617181920>>...36

/plugin/fksnewsfeed/
H A Daction.php271 $input->val($data->text);
278 $input->val($data->newsDate ?: 'now');
282 $input->val($data->category);
286 $input->val($data->image);
292 $input->val($data->linkHref);
298 $input->val($data->linkTitle);
306 $input->val($data->authorName);
312 $input->val($data->authorEmail);
320 $input->val($data->title);
/plugin/metadisplay/helper/
H A Dhtml.php161 $val = $contribs[$search];
164 $contribs[$search] = $val;
271 foreach ($ar As $key=>$val) {
272 if(!empty($val)) {
275 $val = date("r", $val);
278 $val = $types[$val];
282 $retv .= "<tr><td>$key:</td><td>$val</td></tr>\n";
H A Dplaintext.php161 $val = $contribs[$search];
164 $contribs[$search] = $val;
269 foreach ($ar As $key=>$val) {
270 if(!empty($val)) {
273 $val = date("r", $val);
276 $val = $types[$val];
280 $retv .= "$key: $val\n";
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/
H A DRSA.php282 * @param int $val
284 public static function setExponent($val) argument
286 self::$defaultExponent = $val;
295 * @param int $val
297 public static function setSmallestPrime($val) argument
299 self::$smallestPrime = $val;
308 * @param string $val
310 public static function setOpenSSLConfigPath($val) argument
312 self::$configFile = $val;
/plugin/struct/meta/
H A DAccessTable.php464 $val = (string) $DBdata[0]['out' . $col->getColref()];
466 $val = '';
469 // multi val data is concatenated
471 $val = explode($sep, $val);
472 $val = array_filter($val);
475 $value = new Value($col, $val);
637 $colrefs = array_unique(array_map(static fn($val) => $val[
[all...]
H A DValueValidator.php114 * @param string $val
117 public function filter($val)
119 return !blank($val);
111 filter($val) global() argument
/plugin/siteexport/
H A Dscript.js41 $('#copyurl').val(data[0]);
42 $('#wgeturl').val(data[1]);
43 $('#curlurl').val(data[2]);
397 case 'checkbox': elem.prop('checked', elem.val() == value); break;
403 if ( $(this).val() == value ) {
417 default: elem.val(value);
423 $(_.allElements + ':not(:checkbox)').val(null);
436 for ( var val in value ) {
437 if ( !value.hasOwnProperty(val)) {
440 … _.updateValue($('#siteexport #'+node+'_'+value[val]+':input[name='+node+'\\[\\]]'), value[val]);
[all …]
/plugin/findologicxmlexport/vendor/sebastian/exporter/src/
H A DExporter.php153 foreach ((array) $value as $key => $val) {
167 $array[$key] = $val;
186 foreach ($value as $key => $val) {
187 $array[spl_object_hash($val)] = array(
188 'obj' => $val,
/plugin/showif/
H A Dsyntax.php.alternative.version139 foreach($conditions as $val) {
143 (($val == "mayedit") && (auth_quickaclcheck($INFO['id'])) >= AUTH_EDIT)
146 (($val == "mayonlyread") && (auth_quickaclcheck($INFO['id'])) == AUTH_READ)
148 (($val == "mayatleastread") && (auth_quickaclcheck($INFO['id'])) >= AUTH_READ)
150 ($val == "isloggedin" && ($_SERVER['REMOTE_USER']))
152 ($val == "isnotloggedin" && !($_SERVER['REMOTE_USER']))
154 (($val == "isadmin") && ($INFO['isadmin'] || $INFO['ismanager'] ))
/plugin/icalevents/vendor/sabre/vobject/lib/Property/ICalendar/
H A DPeriod.php36 * @param string $val
40 function setRawMimeDirValue($val) { argument
42 $this->setValue(explode($this->delimiter, $val));
/plugin/webdav/vendor/sabre/vobject/lib/Property/ICalendar/
H A DPeriod.php36 * @param string $val
38 public function setRawMimeDirValue($val) argument
40 $this->setValue(explode($this->delimiter, $val));
/plugin/amazon_heavy/
H A Dclass.xmlreader.php124 foreach($array as $key=>$val)
126 if ( is_array($val) )
128 traverse_xmlize($val, $arrName . "[" . $key . "]", $level + 1);
132 $GLOBALS['traverse_array'][] = '$' . $arrName . '[' . $key . '] = "' . $val . "\"\n";
/plugin/dataloop/syntax/
H A Dloop.php159 $val = trim($matches[3]);
160 $val = sqlite_escape_string($val); //pre escape
166 $val = str_replace('*','%',$val);
170 'value' => $val,
470 list($col,$val) = split(':',$_GET['dataflt'],2);
477 $where .= ' AND '.$tables[$col].".value = '".sqlite_escape_string($val)."'";
/plugin/strata/driver/
H A Dsqlite.php15 public function ci($val='?') { argument
16 return "$val COLLATE NOCASE";
/plugin/jcapture/src/com/hammurapi/jcapture/
H A DWavFile.java345 long val = buffer[pos] & 0xFF; in getLE() local
347 val = (val << 8) + (buffer[--pos] & 0xFF); in getLE()
349 return val; in getLE()
354 buffer[pos] = (byte) (val & 0xFF); in putLE()
355 val >>= 8; in putLE()
362 private void writeSample(long val) throws IOException { in writeSample() argument
369 buffer[bufferPointer] = (byte) (val & 0xFF); in writeSample()
370 val >>= 8; in writeSample()
376 long val = 0; in readSample() local
390 val += v << (b * 8); in readSample()
[all …]
/plugin/bez/scripts/
H A Dtask.js149 value = selected.val() ? selected.text() : "";
153 .val( value )
235 var value = this.input.val(),
252 .val( "" )
255 this.element.val( "" );
293 if ($contentTextarea.val() === '') {
/plugin/quickstats/
H A Daction.php268 foreach($temp as $name=>$val) {
270 if(!$val) $val = '_empty_';
271 $this->set_queries($queries['extern'],urldecode($val),'val');
272 $this->set_named_values($queries['extern']['name'][urldecode($name)],urldecode($val));
282 function set_named_values(&$queries,$val="_empty_") { argument
290 if(!in_array($val, $queries['values'][$this->ipaddr])) {
291 $queries['values'][$this->ipaddr][] = $val;
528 function set_browser_value($val, $which='browser') { argument
529 if(!isset($this->misc_data[$which][$val])) {
530 $this->misc_data[$which] [$val] =1;
[all …]
/plugin/watchcycle/
H A Dscript.js47 * @param {string} val
50 const autcmpl_split = function(val) { argument
51 return val.split(/,\s*/);
110 const maintainers = $picker.find('[name="watchcycle_user"]').val().replace(new RegExp("[, ]+?$"), "");
113 const cycle = $picker.find('[name="watchcycle_cycle"]').val();
/plugin/xcom/scripts/
H A Dxml.php51 list($key,$val) = explode (':' , $el);
52 $key = trim($key); $val = trim($val); variable
53 $ar[$key] = ($val+=1);
/plugin/tagging/script/
H A Dsearch.js127 const parts = getQueryElement().val().split(' ');
145 const q = $q.val();
149 $q.val(q.replace(tag, ''));
151 $q.val(q.trim() + ' ' + tag);
/plugin/diagramsnet/lib/shapes/pid2/
H A DmxPidValves.js71 {val:'open', dispName:'Open'}
75 {val:'man', dispName:'Manual'},
78 {val:'motor', dispName:'Motor'},
79 {val:'none', dispName:'None'},
81 {val:'pilot', dispName:'Pilot'},
90 {val:'key', dispName:'Key'},
96 {val:'check', dispName:'check'},
97 {val:'gate', dispName:'Gate'},
98 {val:'globe', dispName:'Globe'},
100 {val:'plug', dispName:'Plug'},
[all …]
/plugin/structtasks/meta/
H A DRemovedNotifier.php24 function ($val) use ($editor_email) {return $val !== $editor_email;}
H A DAssignedNotifier.php26 function ($val) use ($editor_email) {return $val !== $editor_email;}
H A DDateNotifier.php26 function ($val) use ($editor_email) {return $val !== $editor_email;}
H A DSelfRemovalNotifier.php25 function ($val) use ($editor_email) {return $val !== $editor_email;}

1...<<11121314151617181920>>...36