Home
last modified time | relevance | path

Searched refs:value (Results 326 – 350 of 4040) sorted by relevance

1...<<11121314151617181920>>...162

/plugin/pureldap/vendor/freedsx/asn1/src/FreeDSx/Asn1/Type/
H A DIntegerType.php25 * @param int|string $value
28 public function setValue($value) argument
30 $this->value = $value;
38 * @param string|int $value
41 public static function withTag($tagNumber, int $class, $value) argument
43 $type = new self($value);
H A DOidType.php23 * @param string $value
25 public function __construct(string $value) argument
27 parent::__construct($value);
36 $this->value = $oid;
44 * @param string $value
47 public static function withTag($tagNumber, int $class, string $value) argument
49 $type = new self($value);
/plugin/webdav/vendor/sabre/vobject/lib/Property/
H A DUri.php95 $this->value = $newVal;
97 $this->value = strtr($val, ['\,' => ',']);
108 if (is_array($this->value)) {
109 $value = $this->value[0];
111 $value = $this->value;
114 return strtr($value, [',' => '\,']);
H A DFloatValue.php97 * @param array $value
99 public function setXmlValue(array $value) argument
101 $value = array_map('floatval', $value);
102 parent::setXmlValue($value);
118 $value = array_map('floatval', $this->getParts());
120 $writer->writeElement('latitude', $value[0]);
121 $writer->writeElement('longitude', $value[1]);
/plugin/icalevents/vendor/sabre/vobject/lib/Property/
H A DUri.php98 $this->value = $newVal;
100 $this->value = strtr($val, ['\,' => ',']);
112 if (is_array($this->value)) {
113 $value = $this->value[0];
115 $value = $this->value;
118 return strtr($value, [',' => '\,']);
H A DFloatValue.php103 * @param array $value
107 function setXmlValue(array $value) { argument
109 $value = array_map('floatval', $value);
110 parent::setXmlValue($value);
130 $value = array_map('floatval', $this->getParts());
132 $writer->writeElement('latitude', $value[0]);
133 $writer->writeElement('longitude', $value[1]);
/plugin/dw2pdf/vendor/setasign/fpdi/src/PdfParser/Type/
H A DPdfName.php33 $v->value = (string) $tokenizer->getNextToken();
37 $v->value = '';
44 * @param string $value
47 static public function unescape($value) argument
49 if (strpos($value, '#') === false)
50 return $value;
54 }, $value);
66 $v->value = $string;
72 * Ensures that the passed value is a PdfName instance.
80 return PdfType::ensureType(self::class, $name, 'Name value expecte
[all...]
/plugin/findologicxmlexport/vendor/findologic/libflexport/src/FINDOLOGIC/Export/Data/
H A DUsergroup.php11 private $value; variable in FINDOLOGIC\\Export\\Data\\Usergroup
13 public function __construct($value) argument
15 $this->value = $value;
20 return $this->value;
29 $usergroupElem = XMLHelper::createElementWithText($document, 'usergroup', $this->value);
44 return $this->value;
/plugin/html2pdf/html2pdf/html2ps/
H A Dcss.state.class.php108 if ($value != CSS_PROPERTY_INHERIT) {
109 return $value;
117 $value =& Value::fromData(1, UNIT_EM);
118 return $value;
144 return $value;
152 $this->_state[$level][$code] = $value;
155 function set_propertyDefault($code, $value) { argument
157 $state[$code] = $value;
163 function set_property($code, $value) { argument
164 $this->set_propertyDefault($code, $value);
[all …]
H A Dcss.border.bottom.width.inc.php9 function set_value(&$owner_value, &$value) { argument
10 if ($value != CSS_PROPERTY_INHERIT) {
11 $owner_value->bottom->width = $value->copy();
13 $owner_value->bottom->width = $value;
29 function parse($value) { argument
30 if ($value == 'inherit') {
35 $width = $width_handler->parse_value($value);
H A Dcss.border.left.width.inc.php9 function set_value(&$owner_value, &$value) { argument
10 if ($value != CSS_PROPERTY_INHERIT) {
11 $owner_value->left->width = $value->copy();
13 $owner_value->left->width = $value;
29 function parse($value) { argument
30 if ($value == 'inherit') {
35 $width = $width_handler->parse_value($value);
H A Dcss.border.right.width.inc.php9 function set_value(&$owner_value, &$value) { argument
10 if ($value != CSS_PROPERTY_INHERIT) {
11 $owner_value->right->width = $value->copy();
13 $owner_value->right->width = $value;
29 function parse($value) { argument
30 if ($value == 'inherit') {
35 $width = $width_handler->parse_value($value);
H A Dcss.border.top.width.inc.php9 function set_value(&$owner_value, &$value) { argument
10 if ($value != CSS_PROPERTY_INHERIT) {
11 $owner_value->top->width = $value->copy();
13 $owner_value->top->width = $value;
29 function parse($value) { argument
30 if ($value == 'inherit') {
35 $width = $width_handler->parse_value($value);
/plugin/structjoin/types/
H A DJoin.php21 * @param int|string $value
29 return $column->getType()->renderValue($value, $R, $mode);
47 * @param string $value
50 public function rawValue($value) { argument
51 return $value;
55 * @param string $value
58 public function displayValue($value) { argument
61 return $column->getType()->displayValue($value);
72 * @param string $value
76 public function compareValue($value) { argument
[all …]
/plugin/davcal/vendor/sabre/http/lib/
H A DMessage.php192 * @param string|string[] $value
195 function setHeader($name, $value) { argument
197 $this->headers[strtolower($name)] = [$name, (array)$value];
214 foreach ($headers as $name => $value) {
215 $this->setHeader($name, $value);
228 * @param string $value
231 function addHeader($name, $value) { argument
237 (array)$value
242 (array)$value
258 foreach ($headers as $name => $value) {
[all …]
/plugin/findologicxmlexport/vendor/twig/twig/src/TokenParser/
H A DAutoEscapeTokenParser.php45 $value = 'html';
51 $value = $expr->getAttribute('value');
53 $compat = true === $value || false === $value;
55 if (true === $value) {
56 $value = 'html';
62 if (false === $value) {
66 $value = $stream->next()->getValue();
74 return new AutoEscapeNode($value, $body, $lineno, $this->getTag());
/plugin/findologicxmlexport/vendor/findologic/libflexport/src/FINDOLOGIC/Export/Helpers/
H A DUsergroupAwareMultiValue.php25 public function addValue(UsergroupAwareMultiValueItem $value) argument
27 if (!array_key_exists($value->getUsergroup(), $this->values)) {
28 $this->values[$value->getUsergroup()] = [];
31 array_push($this->values[$value->getUsergroup()], $value);
55 foreach ($usergroupValues as $value) {
56 $usergroupCollectionElem->appendChild($value->getDomSubtree($document));
71 foreach ($this->values[''] as $value) {
72 $escapedValue = preg_replace('/' . $this->csvDelimiter . '/', ' ', $value);
/plugin/findologicxmlexport/vendor/phpspec/prophecy/src/Prophecy/Argument/Token/
H A DObjectStateToken.php26 private $value; variable in Prophecy\\Argument\\Token\\ObjectStateToken
34 * @param mixed $value Expected return value
40 $value, argument
45 $this->value = $value;
64 $this->value, $actual
68 $comparator->assertEquals($this->value, $actual);
76 return $argument->{$this->name} === $this->value ? 8 : false;
101 $this->util->stringify($this->value)
/plugin/findologicxmlexport/vendor/phpunit/phpunit-mock-objects/src/Framework/MockObject/Stub/
H A DConsecutiveCalls.php21 protected $value; variable in PHPUnit_Framework_MockObject_Stub_ConsecutiveCalls
30 $this->value = array_shift($this->stack);
32 if ($this->value instanceof PHPUnit_Framework_MockObject_Stub) {
33 $this->value = $this->value->invoke($invocation);
36 return $this->value;
45 $exporter->export($this->value)
/plugin/mytemplate/
H A Daction.php55 $value = '';
61 $value .= trim($line);
64 $map[$key] = $value;
66 $value = '';
70 $value = trim($value);
75 $map[$key] = $value;
305 $value = '';
313 $value = '';
320 $value = $param1;
324 $value = str_replace($var[0], $this->variables[$var[0]], $value);
[all …]
/plugin/siteexport/
H A Dscript.js206 value: site
209 value: this.pattern
212 value: DOKU_BASE
294 …if ( element.value == NS || element.value == JSINFO.id || element.value == JSINFO.namespace ) { el…
295 if ( !isNaN(element.value) ) { element.value = parseInt(element.value); }
296 …_options.indexOf(element.name) < 0 && (element.value.length > 0 || (!isNaN(element.value) && eleme…
383 … var value = $('<input/>').addClass('edit dummy').attr({ value: valueVal}).change(function(event)
385 customOption.attr({ value: this.value }); regenerate(event);
417 default: elem.val(value);
434 var value = values[node];
[all …]
/plugin/gallery/script/
H A Dprosemirror.js30 * Get the fields for the key value form with values
41 value: attrs['namespace'],
49 value: attrs['thumbnailsize'],
57 value: attrs['imagesize'],
63 value: '1',
70 value: attrs['filter'],
76 value: '1',
83 value: '1',
90 value: '1',
97 value
[all...]
/plugin/combo/ComboStrap/
H A DLang.php131 $lang->value = $langValue;
156 public function setFromStoreValue($value): Metadata argument
159 $this->validityCheck($value);
160 return parent::setFromStoreValue($value);
165 * @param string|null $value
169 public function setValue($value): Metadata argument
171 $this->validityCheck($value);
172 return parent::setValue($value);
212 private function validityCheck($value) argument
214 if ($value
[all...]
/plugin/strata/types/
H A Ddate.php13 function render($mode, &$R, &$triples, $value, $hint) { argument
14 if(is_numeric($value)) {
20 $date->setTimestamp((int)$value);
25 $R->cdata($value);
30 function normalize($value, $hint) { argument
35 // try and parse the value
36 $date = date_create_from_format($format, $value);
40 return $value;
/plugin/scrape/HTMLPurifier/Printer/
H A DConfigForm.php

1...<<11121314151617181920>>...162