Home
last modified time | relevance | path

Searched refs:value (Results 926 – 950 of 4040) sorted by relevance

1...<<31323334353637383940>>...162

/plugin/ckgdoku/fckeditor/editor/filemanager/browser/default/js/
H A Dcommon.js63 oOption.value = optionValue ;
74 function StringBuilder( value ) argument
76 this._Strings = new Array( value || '' ) ;
79 StringBuilder.prototype.Append = function( value ) argument
81 if ( value )
82 this._Strings.push( value ) ;
/plugin/pot/source/
H A Dtext.php31 foreach ($this->cargo as $key => $value) {
34 if (isset($value['output']['result'])) {
35 $forkey .= " ".$value['output']['result'];
45 foreach ($this->cargo as $key => $value) {
49 if (isset($value['output']['result'])) {
50 $forkey .= " ".$value['output']['result'];
/plugin/ckgedit/fckeditor/editor/filemanager/browser/default/js/
H A Dcommon.js63 oOption.value = optionValue ;
74 function StringBuilder( value ) argument
76 this._Strings = new Array( value || '' ) ;
79 StringBuilder.prototype.Append = function( value ) argument
81 if ( value )
82 this._Strings.push( value ) ;
/plugin/combo/ComboStrap/Meta/Field/
H A DPageImage.php65 $value = trim($usage);
66 if ($value === "") {
69 if (!in_array($value, PageImageUsage::getUsageValues())) {
70 throw new ExceptionCompile("The page image usage value ($value) is not valid.");
72 $this->usages[$value] = $value;
/plugin/combo/vendor/php-webdriver/webdriver/lib/Firefox/
H A DFirefoxOptions.php42 * @param mixed $value
45 public function setOption($name, $value) argument
54 $this->options[$name] = $value;
80 * @param string|bool|int $value
83 public function setPreference($name, $value) argument
85 $this->preferences[$name] = $value;
/plugin/authucenter/lib/uc_client/model/
H A Dpm.php79 $authoridarr[$value['authorid']] = $value['authorid'];
94 $value['touid'] = 0;
96 $value['author'] = $authorarr[$value['authorid']];
98 $value['msgfromid'] = $value['authorid'];
99 $value['msgfrom'] = $value['author'];
100 $value['msgtoid'] = $value['touid'];
123 if($uid == $value || !$value) {
196 if($fromuid == $value || !$value) {
204 $blackls[$value] = $_ENV['user']->name2id($blackls[$value]);
205 if(!(isset($blackls[$value]) && !in_array($fromuid, $blackls[$value]))) {
[all …]
/plugin/webdav/vendor/sabre/dav/lib/DAV/PropertyStorage/Backend/
H A DPDO.php149 foreach ($properties as $name => $value) {
151 if (!is_null($value)) {
152 if (is_scalar($value)) {
154 } elseif ($value instanceof Complex) {
156 $value = $value->getXml();
159 $value = serialize($value);
165 $updateStmt->bindParam('value', $value, \PDO::PARAM_LOB);
/plugin/combo/ComboStrap/Meta/Form/
H A DFormMeta.php156 $value = $field->getValue();
158 if ($value === $field->getDefaultValue() || $value === null) {
162 if ($value === null) {
164 $value = "";
166 if (is_array($value)) {
168 foreach ($value as $subValue) {
179 $value = $temp;
181 $data[$field->getName()] = $value;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Spanner/
H A DContextValue.php35 public $value; variable in Google\\Service\\Spanner\\ContextValue
82 public function setValue($value) argument
84 $this->value = $value;
91 return $this->value;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/PeopleService/
H A DExternalId.php35 public $value; variable in Google\\Service\\PeopleService\\ExternalId
82 public function setValue($value) argument
84 $this->value = $value;
91 return $this->value;
H A DUrl.php35 public $value; variable in Google\\Service\\PeopleService\\Url
82 public function setValue($value) argument
84 $this->value = $value;
91 return $this->value;
H A DGender.php35 public $value; variable in Google\\Service\\PeopleService\\Gender
82 public function setValue($value) argument
84 $this->value = $value;
91 return $this->value;
H A DMiscKeyword.php35 public $value; variable in Google\\Service\\PeopleService\\MiscKeyword
82 public function setValue($value) argument
84 $this->value = $value;
91 return $this->value;
H A DSipAddress.php35 public $value; variable in Google\\Service\\PeopleService\\SipAddress
82 public function setValue($value) argument
84 $this->value = $value;
91 return $this->value;
/plugin/quickstats/
H A Dscript.js56 if(parseInt(year.value) < 2010) {
70 QuickstatsShowPage(which.options[which.selectedIndex].value) ;
125 var p = '&' + inp[el].name + '=' + inp[el].value;
151 if(option.value != 0) {
162 if(option.value != 0) {
168 var page = document.getElementById('page').value;
170 var ip = document.getElementById('ip').value;
207 var year = document.getElementById('year').value;
240 params += '&cc_cntry=' + dom.value;
247 alert("Nothing found for " + dom.value);
[all …]
/plugin/authgooglesheets/vendor/guzzlehttp/guzzle/src/
H A DClient.php421 $value = $options['auth'];
422 $type = isset($value[2]) ? strtolower($value[2]) : 'basic';
428 . base64_encode("$value[0]:$value[1]");
433 $options['curl'][CURLOPT_USERPWD] = "$value[0]:$value[1]";
437 $options['curl'][CURLOPT_USERPWD] = "$value[0]:$value[1]";
443 $value = $options['query'];
444 if (is_array($value)) {
445 $value = http_build_query($value, null, '&', PHP_QUERY_RFC3986);
447 if (!is_string($value)) {
450 $modify['query'] = $value;
/plugin/diagram/syntax/
H A Dmain.php267 list ($key, $value) = explode(':', $param);
269 $value = trim ($value);
275 $is_valid = $this->_validateCSSColor ($value);
281 $is_valid = $this->_validateCSSPadding ($value);
1023 foreach ($params as $param => $value)
1024 $css_props[] = "$param: $value;";
1067 * @param string $value checked string
1070 function _validateCSSTextAlign ($value) argument
1072 return $value == 'center' || $value == 'justify' || $value == 'left' || $value == 'right';
1078 * @param string $value checked string
[all …]
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Apigee/
H A DGoogleCloudApigeeV1QueryMetric.php41 public $value; variable in Google\\Service\\Apigee\\GoogleCloudApigeeV1QueryMetric
102 public function setValue($value) argument
104 $this->value = $value;
111 return $this->value;
/plugin/jplayer/vendor/james-heinrich/getid3/demos/
H A Ddemo.write.php175 foreach ($RawTrackNumberArray as $key => $value) {
176 if (strlen($value) > strlen($TrackNumber)) {
178 $TrackNumber = $value;
187 foreach ($ArrayOfGenresTemp as $key => $value) { // change keys to match displayed value
188 $ArrayOfGenres[$value] = $value;
200 foreach ($ArrayOfGenres as $key => $value) {
207 echo '>'.htmlentities($value).'</option>';
245 foreach ($APICtypes as $key => $value) {
246 echo '<option value="'.htmlentities($key, ENT_QUOTES).'">'.htmlentities($value).'</option>';
/plugin/authgooglesheets/vendor/guzzlehttp/guzzle/src/Cookie/
H A DSetCookie.php47 $value = isset($cookieParts[1])
54 $data['Value'] = $value;
58 $data[$search] = $value;
62 $data[$key] = $value;
138 * @param string $value Cookie value
140 public function setValue($value) argument
142 $this->data['Value'] = $value;
388 $value = $this->getValue();
389 if (empty($value) && !is_numeric($value)) {
/plugin/highlight2wiki/
H A Dscript.js32 // document.testform.selectedtext.value += selectedText +"\n";
33 if (document.getElementById("edtop").contentWindow.document.getElementsByTagName("textarea")[0].value == ""){
34 document.getElementById("edtop").contentWindow.document.getElementsByTagName("textarea")[0].value += "====== "+papertitle+" ====== \r\n [["+url+"|" + papertitle + "]] [[?do=highlight2wiki&ur="+url+"|✍Highlight]]--"+timestamp+"\r\n\n";
35 document.getElementById("edtop").contentWindow.document.getElementsByTagName("textarea")[0].value += "{{tag> }}\r\n\n"; //add tag syntax
38 let selectedTextString = document.getElementById("edtop").contentWindow.document.getElementsByTagName("textarea")[0].value;
39 document.getElementById("edtop").contentWindow.document.getElementsByTagName("textarea")[0].value += selectedTextString + selectedText + "\n\n";
54 document.getElementById("edtop").contentWindow.document.getElementsByTagName("textarea")[0].value += lines[j] + "\n\n";
60 var textArea = document.getElementById("edtop").contentWindow.document.getElementsByTagName("textarea")[0].value;
80 var textArea = document.getElementById("edtop").contentWindow.document.getElementsByTagName("textarea")[0].value;
134 var textArea = document.getElementById("edtop").contentWindow.document.getElementsByTagName("textarea")[0].value;
[all...]
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Utils/
H A DMap.php71 * @param mixed $value
73 public function put(Hashable $key, $value) : void argument
83 $this->table[$hash][$index] = [$key, $value];
89 $this->table[$hash][] = [$key, $value];
138 foreach ($bucket as $index => [$key, $value]) {
142 || !self::isEqual($value, $otherValue)) {
173 foreach ($bucket as [, $value]) {
174 $values[] = $value;
184 foreach ($bucket as [$key, $value]) {
185 yield $key => $value;
[all...]
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Dialogflow/
H A DGoogleCloudDialogflowCxV3PageInfoFormInfoParameterInfo.php41 public $value; variable in Google\\Service\\Dialogflow\\GoogleCloudDialogflowCxV3PageInfoFormInfoParameterInfo
102 public function setValue($value) argument
104 $this->value = $value;
111 return $this->value;
H A DGoogleCloudDialogflowCxV3beta1PageInfoFormInfoParameterInfo.php41 public $value; variable in Google\\Service\\Dialogflow\\GoogleCloudDialogflowCxV3beta1PageInfoFormInfoParameterInfo
102 public function setValue($value) argument
104 $this->value = $value;
111 return $this->value;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Contactcenterinsights/
H A DGoogleCloudContactcenterinsightsV1View.php41 public $value; variable in Google\\Service\\Contactcenterinsights\\GoogleCloudContactcenterinsightsV1View
102 public function setValue($value) argument
104 $this->value = $value;
111 return $this->value;

1...<<31323334353637383940>>...162