Home
last modified time | relevance | path

Searched refs:value (Results 101 – 125 of 3912) sorted by relevance

12345678910>>...157

/plugin/securelogin/
H A Dsecurelogin.js23 …m.securelogin.value = encrypt("newpass="+esc(newpass.value)+"&passchk="+esc(passchk.value)+"&oldpa…
24 oldpass.value = "******";
25 newpass.value = "******";
26 passchk.value = "******";
37 form.securelogin.value = encrypt("p="+esc(pass.value)+";"+sectok.value);
38 pass.value = "******";
45 el.value = encrypt(esc(el.value));
56 …form.securelogin.value = encrypt("userpass="+esc(pass.value)+"&userpass2="+esc(pass2.value)+";"+se…
57 pass.value = "******";
69 …form.securelogin.value = encrypt("userpass="+esc(pass.value)+"&userpass2="+esc(pass2.value)+";"+se…
[all …]
/plugin/authgooglesheets/vendor/monolog/monolog/src/Monolog/Formatter/
H A DMongoDBFormatter.php82 foreach ($array as $name => $value) {
83 if ($value instanceof \DateTimeInterface) {
85 } elseif ($value instanceof \Throwable) {
87 } elseif (is_array($value)) {
89 } elseif (is_object($value) && !$value instanceof Type) {
98 * @param mixed $value
101 protected function formatObject($value, int $nestingLevel) argument
103 $objectVars = get_object_vars($value);
104 $objectVars['class'] = Utils::getClass($value);
133 return $this->legacyGetMongoDbDateTime($value);
[all …]
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/
H A DPHP.php105 $x = (strlen($this->value) & 1) ? '0' . $this->value : $this->value;
107 $this->value = $temp->value;
134 $this->value = $temp->value;
758 $value = &$result->value;
765 $value = static::trim($value);
772 $value[$i] = $value[$i] & $result->bitmask->value[$i];
775 $value = static::trim($value);
824 $temp->value = $this->value;
863 $temp->value = $this->value;
882 $temp->value = $this->value;
[all …]
/plugin/icalevents/vendor/sabre/vobject/lib/
H A DProperty.php49 protected $value; variable in Sabre\\VObject\\Property
83 if (!is_null($value)) {
94 * @param string|array $value
98 function setValue($value) { argument
100 $this->value = $value;
126 return $this->value;
140 $this->value = $parts;
157 return $this->value;
283 * @param array $value
333 * @param array $value
[all …]
/plugin/webdav/vendor/sabre/vobject/lib/
H A DProperty.php49 protected $value; variable in Sabre\\VObject\\Property
81 if (!is_null($value)) {
91 * @param string|array $value
95 $this->value = $value;
120 return $this->value;
131 $this->value = $parts;
147 return $this->value;
149 return [$this->value];
266 * @param array $value
313 * @param array $value
[all …]
/plugin/odt/ODT/elements/
H A DODTStateElement.php37 public function setClass($value) { argument
38 $this->clazz = $value;
55 * @param string $value Count
57 public function setCount($value) { argument
58 $this->count = $value;
75 public function setStyleName($value) { argument
76 $this->style_name = $value;
109 * @param mixed $value
111 public function setTemp($value) { argument
112 $this->temp = $value;
[all …]
/plugin/davcard/vendor/sabre/vobject/lib/
H A DProperty.php47 protected $value; variable in Sabre\\VObject\\Property
80 if (!is_null($value)) {
91 * @param string|array $value
94 function setValue($value) { argument
96 $this->value = $value;
122 return $this->value;
135 $this->value = $parts;
152 return $this->value;
278 * @param array $value
283 if (count($value)===1) {
[all …]
/plugin/webdavclient/vendor/sabre/vobject/lib/
H A DProperty.php47 protected $value; variable in Sabre\\VObject\\Property
80 if (!is_null($value)) {
91 * @param string|array $value
94 function setValue($value) { argument
96 $this->value = $value;
122 return $this->value;
135 $this->value = $parts;
152 return $this->value;
278 * @param array $value
283 if (count($value)===1) {
[all …]
/plugin/davcal/vendor/sabre/vobject/lib/
H A DProperty.php47 protected $value; variable in Sabre\\VObject\\Property
80 if (!is_null($value)) {
91 * @param string|array $value
94 function setValue($value) { argument
96 $this->value = $value;
122 return $this->value;
135 $this->value = $parts;
152 return $this->value;
278 * @param array $value
283 if (count($value)===1) {
[all …]
/plugin/struct/types/
H A DAbstractBaseType.php103 foreach ($current as $key => $value) {
106 $this->mergeConfig($value, $config[$key]);
108 $config[$key] = $value;
238 * Split a single value into multiple values
240 * This function is called on saving data when only a single value instead of an array
243 * Types implementing their own @param string $value
248 public function splitValues($value)
250 return array_map('trim', explode(',', $value));
266 foreach ($rawvalues as $value) {
268 $html .= $this->valueEditor($name . '[]', $value, '');
247 splitValues($value) global() argument
316 renderValue($value, \\Doku_Renderer $R, $mode) global() argument
353 renderTagCloudLink($value, \\Doku_Renderer $R, $mode, $page, $filter, $weight) global() argument
374 filter(QueryBuilderWhere $add, $tablealias, $colname, $comp, $value, $op) global() argument
441 getSortString($value) global() argument
466 rawValue($value) global() argument
478 displayValue($value) global() argument
492 compareValue($value) global() argument
[all...]
/plugin/icalevents/vendor/sabre/vobject/lib/Property/
H A DTime.php45 * @param array $value
49 function setJsonValue(array $value) { argument
52 $value = str_replace(
55 $value
58 if (count($value) === 1) {
61 $this->setValue($value);
128 * @param array $value
134 $value = array_map(
135 function($value) {
138 $value
[all …]
/plugin/webdav/vendor/sabre/vobject/lib/Property/
H A DTime.php44 * @param array $value
49 $value = str_replace(
52 $value
55 if (1 === count($value)) {
56 $this->setValue(reset($value));
58 $this->setValue($value);
123 * @param array $value
127 $value = array_map(
128 function ($value) {
131 $value
[all …]
/plugin/combo/ComboStrap/
H A DTagAttributes.php54 * @var string the alt attribute value (known as the title for dokuwiki)
140 * If an attribute has this value,
291 foreach ($componentAttributes as $key => $value) {
292 if (is_null($value)) {
331 * @param array|null $callStackArray - an array of key value pair
376 * @param $value
380 public static function toQualifiedCssValue($value): string argument
382 return ConditionalLength::createFromString($value)->toCssLength();
415 foreach ($tagAttributes->getStyleDeclarations() as $property => $value) {
416 $newTagAttributes->addStyleDeclarationIfNotSet($property, $value);
769 addOutputAttributeValue($key, $value) global() argument
792 addOutputAttributeValueIfNotEmpty($key, $value) global() argument
907 addStyleDeclarationIfNotSet($property, $value) global() argument
913 setStyleDeclaration($property, $value) global() argument
[all...]
/plugin/html2pdf/html2pdf/html2ps/
H A Dcss.pseudo.link.target.inc.php8 function is_external_link($value) { argument
9 return (strlen($value) > 0 && $value{0} != "#");
12 function is_local_link($value) { argument
13 return (strlen($value) > 0 && $value{0} == "#");
16 function parse($value, &$pipeline) { argument
18 if (CSSPseudoLinkTarget::is_local_link($value)) { return $value; }
20 $data = @parse_url($value);
22 return $pipeline->guess_url($value);
24 return $value;
H A Dcss.vertical-align.inc.php114 function parse($value) { argument
115 if ($value === 'inherit') {
121 $value = strtolower($value);
123 if ($value === 'baseline') { return VA_BASELINE; };
124 if ($value === 'sub') { return VA_SUB; };
125 if ($value === 'super') { return VA_SUPER; };
126 if ($value === 'top') { return VA_TOP; };
127 if ($value === 'middle') { return VA_MIDDLE; };
131 if ($value === 'center') { return VA_MIDDLE; }
133 if ($value === 'bottom') { return VA_BOTTOM; };
[all …]
H A Dvalue.generic.percentage.php14 function init($value, $status) { argument
15 $this->_value = $value;
19 function &_fromString($value, &$class_object) { argument
20 if ($value == 'inherit') {
25 if ($value == 'auto' || $value == '') {
30 $strlen = strlen($value);
31 if ($value{$strlen-1} == '%') {
66 function &_copy(&$value) { argument
70 $value->_value = $this->_value;
73 $value->_status = $this->_status;
[all …]
/plugin/sequencediagram/bower_components/lodash/dist/
H A Dlodash.js819 return value === value
854 return value !== value;
2792 value = (comparator || value !== 0) ? value : 0;
3161 value = (comparator || value !== 0) ? value : 0;
4278 value = (comparator || value !== 0) ? value : 0;
6394 return value === value && !isObject(value);
11000 return isArray(value) ? value : [value];
11896 return isNumber(value) && value != +value;
12367 return value === value ? value : 0;
12469 return value === 0 ? value : +value;
[all …]
/plugin/sequencediagram/bower_components/lodash/
H A Dlodash.js819 return value === value
854 return value !== value;
2792 value = (comparator || value !== 0) ? value : 0;
3161 value = (comparator || value !== 0) ? value : 0;
4278 value = (comparator || value !== 0) ? value : 0;
6394 return value === value && !isObject(value);
11000 return isArray(value) ? value : [value];
11896 return isNumber(value) && value != +value;
12367 return value === value ? value : 0;
12469 return value === 0 ? value : +value;
[all …]
/plugin/webdav/vendor/sabre/vobject/lib/Property/VCard/
H A DDateAndOrTime.php72 public function setValue($value) argument
75 $this->setDateTime($value);
77 parent::setValue($value);
95 $value = $dt->format('Ymd\\THisO');
98 $this->value = $value;
241 $value = '';
268 $value .= '---'.$r('date');
283 $value .= '--'.$r('second');
286 $value .= $r('timezone');
299 $value .= '---'.$r('date');
[all …]
/plugin/icalevents/vendor/sabre/vobject/lib/Property/VCard/
H A DDateAndOrTime.php78 function setValue($value) { argument
81 $this->setDateTime($value);
83 parent::setValue($value);
104 $value = $dt->format('Ymd\\THisO');
107 $this->value = $value;
265 $value = '';
293 $value .= '---' . $r('date');
309 $value .= '--' . $r('second');
312 $value .= $r('timezone');
326 $value .= '---' . $r('date');
[all …]
/plugin/jplayer/vendor/mustache/mustache/src/Mustache/
H A DContext.php37 public function push($value) argument
39 array_push($this->stack, $value);
134 if ($value === '') {
135 return $value;
138 $value = $this->findVariableInStack($chunk, array($value));
141 return $value;
167 $value = $this->last();
170 if ($value === '') {
171 return $value;
174 $value = $this->findVariableInStack($chunk, array($value));
[all …]
/plugin/elasticsearch/vendor/ezimuel/ringphp/src/Client/
H A DStreamHandler.php173 foreach ($err as $key => $value) {
174 $message .= "[$key] $value" . PHP_EOL;
207 foreach ($request['client'] as $key => $value) {
210 $this->{$method}($request, $options, $value, $params);
226 foreach ($request['headers'] as $name => $value) {
227 foreach ((array) $value as $val) {
256 private function add_proxy(array $request, &$options, $value, &$params) argument
258 if (!is_array($value)) {
259 $options['http']['proxy'] = $value;
262 if (isset($value[
268 add_timeout(array $request, & $options, $value, & $params) global() argument
273 add_verify(array $request, & $options, $value, & $params) global() argument
298 add_cert(array $request, & $options, $value, & $params) global() argument
312 add_progress(array $request, & $options, $value, & $params) global() argument
326 add_debug(array $request, & $options, $value, & $params) global() argument
[all...]
/plugin/findologicxmlexport/vendor/phpspec/prophecy/src/Prophecy/Argument/Token/
H A DExactValueToken.php25 private $value; variable in Prophecy\\Argument\\Token\\ExactValueToken
33 * @param mixed $value
39 $this->value = $value;
54 if (is_object($argument) && is_object($this->value)) {
56 $argument, $this->value
60 $comparator->assertEquals($argument, $this->value);
66 if (is_object($argument) xor is_object($this->value)) {
71 if (is_object($this->value) && !method_exists($this->value, '__toString')) {
76 } elseif (gettype($argument) !== gettype($this->value)) {
80 return $argument == $this->value ? 10 : false;
[all …]
/plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Framework/Constraint/
H A DTraversableContains.php30 protected $value; variable in PHPUnit_Framework_Constraint_TraversableContains
33 * @param mixed $value
53 $this->value = $value;
67 return $other->contains($this->value);
70 if (is_object($this->value)) {
72 if ($this->checkForObjectIdentity && $element === $this->value) {
74 } elseif (!$this->checkForObjectIdentity && $element == $this->value) {
80 if ($this->checkForNonObjectIdentity && $element === $this->value) {
98 if (is_string($this->value) && strpos($this->value, "\n") !== false) {
99 return 'contains "' . $this->value . '"';
[all …]
/plugin/authgooglesheets/vendor/guzzlehttp/promises/src/
H A DFulfilledPromise.php13 private $value; variable in GuzzleHttp\\Promise\\FulfilledPromise
15 public function __construct($value) argument
17 if (is_object($value) && method_exists($value, 'then')) {
23 $this->value = $value;
37 $value = $this->value;
38 $queue->add(static function () use ($p, $value, $onFulfilled) {
41 $p->resolve($onFulfilled($value));
60 return $unwrap ? $this->value : null;
68 public function resolve($value) argument
70 if ($value !== $this->value) {

12345678910>>...157