Home
last modified time | relevance | path

Searched refs:value (Results 176 – 200 of 3912) sorted by relevance

12345678910>>...157

/plugin/findologicxmlexport/vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/
H A DDocLexer.php115 protected function getType(&$value) argument
119 if ($value[0] === '"') {
120 $value = str_replace('""', '"', substr($value, 1, strlen($value) - 2));
125 if (isset($this->noCase[$value])) {
126 return $this->noCase[$value];
129 if ($value[0] === '_' || $value[0] === '\\' || ctype_alpha($value[0])) {
133 $lowerValue = strtolower($value);
140 if (is_numeric($value)) {
141 return (strpos($value, '.') !== false || stripos($value, 'e') !== false)
/plugin/webdav/vendor/sabre/dav/lib/CalDAV/Xml/Property/
H A DScheduleCalendarTransp.php37 protected $value; variable in Sabre\\CalDAV\\Xml\\Property\\ScheduleCalendarTransp
42 * @param string $value
44 function __construct($value) { argument
46 if ($value !== self::TRANSPARENT && $value !== self::OPAQUE) {
49 $this->value = $value;
60 return $this->value;
85 switch ($this->value) {
122 $value = self::TRANSPARENT;
124 $value = self::OPAQUE;
126 return new self($value);
/plugin/findologicxmlexport/vendor/hoa/zformat/
H A DParameter.php219 * @param mixed $value Value.
231 $this->_parameters[$key] = $value;
263 return $this->zFormat($value);
362 * @param mixed $value Value.
374 $this->_keywords[$key] = $value;
486 public function zFormat($value) argument
488 if (!is_string($value)) {
489 return $value;
493 return $this->_cache[$value];
557 [$key, $value]
[all …]
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Operation/Request/
H A DExtendedRequest.php124 $value = $this->requestValue;
126 if ($value instanceof AbstractType) {
127 $value = $encoder->encode($value);
128 } elseif ($value instanceof ProtocolElementInterface) {
129 $value = $encoder->encode($value->toAsn1());
131 $asn1->addChild(Asn1::context(1, Asn1::octetString($value)));
155 [1 => $value] = self::parseAsn1ExtendedRequest($type);
157 return $value !
[all...]
/plugin/authgooglesheets/vendor/guzzlehttp/psr7/src/
H A DServerRequest.php91 foreach ($files as $key => $value) {
93 $normalized[$key] = $value;
94 } elseif (is_array($value) && isset($value['tmp_name'])) {
96 } elseif (is_array($value)) {
113 * @param array $value $_FILES struct
119 if (is_array($value['tmp_name'])) {
124 $value['tmp_name'],
125 (int) $value['size'],
126 (int) $value['error'],
127 $value['name'],
[all …]
/plugin/combo/ComboStrap/
H A DMetadataSingleArrayStore.php35 foreach ($data as $key => $value) {
37 $this->data[$key] = $value;
53 $value = $this->data[$metadata::getPersistentName()] ?? null;
54 if ($value !== null) {
55 return $value;
58 $value = $this->data[$name] ?? null;
59 if ($value !== null) {
60 $this->data[$metadata::getPersistentName()] = $value;
62 return $value;
95 $value
102 setFromPersistentName(string $name, $value, $default = null) global() argument
[all...]
/plugin/pureldap/vendor/freedsx/asn1/src/FreeDSx/Asn1/Type/
H A DBooleanType.php23 * @param bool $value
25 public function __construct(bool $value) argument
27 parent::__construct($value);
31 * @param bool $value
34 public function setValue(bool $value) argument
36 $this->value = $value;
44 * @param bool $value
47 public static function withTag($tagNumber, int $class, bool $value) argument
49 $type = new self($value);
[all...]
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/
H A DIntegrationTest.php53 function test_foo($value = 'foo') argument
55 return $value;
95 public function strToLower($value) argument
97 return strtolower($value);
189 public function §Filter($value) argument
191 return "§{$value}§";
194 public function §Function($value) argument
196 return "§{$value}§";
234 return strtoupper($value);
239 return strtoupper($value);
[all …]
/plugin/findologicxmlexport/vendor/symfony/yaml/Tests/
H A DInlineTest.php30 public function testParse($yaml, $value, $flags = 0) argument
52 $this->assertSame($value, $actual);
91 … $this->assertSame($value, Inline::parse(Inline::dump($value), $parseFlags), 'check consistency');
116 $value = '686e444';
118 $this->assertSame($value, Inline::parse(Inline::dump($value)));
143 $value = "'don't do somthin' like that'";
144 Inline::parse($value);
152 $value = '"don"t do somthin" like that"';
153 Inline::parse($value);
161 $value = '{ "foo " bar": "bar" }';
[all …]
/plugin/gtime/gtlib/asn1/
H A DASN1Boolean.php31 protected $value; variable in ASN1Boolean
36 * @param bool $value the value of this boolean, either true or false
39 public function __construct($value = null) { argument
41 if (!is_null($value)) {
43 if ($value) {
44 $this->value = true;
47 $this->value = false;
61 return $this->value;
76 if ($this->value) {
101 $this->value = true;
[all …]
/plugin/combo/ComboStrap/Meta/Api/
H A DMetadataJson.php27 $value = parent::toStoreValue();
30 return Json::createFromString($value)->toArray();
33 return $value;
44 public function setFromStoreValueWithoutException($value): Metadata argument
47 parent::setFromStoreValueWithoutException($this->toInternalValue($value));
57 private function toInternalValue($value) argument
59 if ($value === null) {
63 if (is_array($value)) {
64 return Json::createFromArray($value)->toPrettyJsonString();
66 if (!is_string($value)) {
[all...]
/plugin/bootswrapper/syntax/
H A Dbootstrap.php91 foreach ($attributes as $name => $value) {
108 switch ($value) {
111 $value = false;
115 $value = true;
121 $value = explode(' ', $value);
124 $checked_attributes[$name] = $value;
127 if ($required && empty($value)) {
164 if (empty($value)) {
318 $value = trim(implode(' ', array_unique($value)));
326 $value = $tmp;
[all …]
/plugin/botbouncer/lib/
H A Dmollom.php134 * @param mixed $value
136 private function buildValue($value) argument
139 $type = gettype($value);
146 $value = htmlspecialchars($value, ENT_QUOTES, 'ISO-8859-15');
155 …foreach ($value as $key => $value) $struct .= str_replace("\n", '', '<member>'. "\n" .'<name>'. $k…
164 return '<value>'. $value .'</value>'."\n";
272 $value = (string) $part->value->int;
274 switch($value)
445 …isset($responseXML->fault->value->struct->member[0]->value->int)) ? (int) $responseXML->fault->val…
446 …et($responseXML->fault->value->struct->member[1]->value->string)) ? (string) $responseXML->fault->
[all …]
/plugin/struct/types/
H A DDecimal.php33 * @param string|int $value the value stored in the database
38 public function renderValue($value, \Doku_Renderer $R, $mode) argument
45 $exp = floor(log10($value) / 3);
62 $value / 10 ** ($exp * 3) . "\xE2\x80\xAF" . $units[$pfkey] .
70 $value = $this->formatWithoutRounding(
71 $value,
76 $value = (float) $value;
77 $value
165 filter(QueryBuilderWhere $add, $tablealias, $colname, $comp, $value, $op) global() argument
[all...]
H A DPage.php32 * @param string $value the value stored in the database - JSON when titles are used
37 public function renderValue($value, \Doku_Renderer $R, $mode) argument
40 [$id, $title] = \helper_plugin_struct::decodeJson($value);
42 $id = $value;
106 'value' => $id
159 * @param string $value
162 public function rawValue($value)
165 [$value] = \helper_plugin_struct::decodeJson($value);
174 rawValue($value) global() argument
188 displayValue($value) global() argument
209 filter(QueryBuilderWhere $add, $tablealias, $colname, $comp, $value, $op) global() argument
[all...]
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/
H A DLdapUrlExtension.php37 protected $value;
46 * @param null|string $value
49 public function __construct(string $name, ?string $value = null, bool $isCritical = false)
52 $this->value = $value;
80 return $this->value;
84 * @param null|string $value
87 public function setValue(?string $value)
89 $this->value = $value;
32 protected $value; global() variable in FreeDSx\\Ldap\\LdapUrlExtension
44 __construct(string $name, string $value = null, bool $isCritical = false) global() argument
82 setValue(string $value) global() argument
[all...]
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/CSS/
H A DOpacitySniff.php77 $value = $tokens[$next]['content'];
79 if ($value !== '0' && $value !== '1') {
84 if (strlen($value) > 3) {
87 } else if ($value === '0.0' || $value === '1.0') {
89 $data = array($value{0});
92 $phpcsFile->fixer->replaceToken($next, $value{0});
94 } else if ($value{0} === '.') {
96 $data = array($value);
99 $phpcsFile->fixer->replaceToken($next, '0'.$value);
101 } else if ($value{0} !== '0') {
/plugin/jplayer/vendor/mustache/mustache/src/Mustache/
H A DTemplate.php110 * @param mixed $value
114 protected function isIterable($value) argument
116 switch (gettype($value)) {
118 return $value instanceof Traversable;
122 foreach ($value as $k => $v) {
165 * @param mixed $value
170 protected function resolveValue($value, Mustache_Context $context) argument
172 … if (($this->strictCallables ? is_object($value) : !is_string($value)) && is_callable($value)) {
174 ->loadLambda((string) call_user_func($value))
178 return $value;
/plugin/bez/mdl/
H A DValidator.php46 protected function check_against_val_method($value, $method, $args) { argument
52 array_unshift($args, $value);
57 protected function validate_one($value, $method, $args, $null) { argument
58 if ($null === 'NOT NULL' && $value == '') {
60 } else if ($null === 'NULL' && $value == '') {
64 return $this->check_against_val_method($value, $method, $args);
67 public function validate_field($field, $value) { argument
76 list($result, $code) = $this->validate_one($value, $method, $args, $null);
82 return (string) $value;
92 foreach ($data as $key => $value) {
123 validate_select($value, $options) global() argument
146 validate_numeric($value) global() argument
153 validate_length($value, $max_length) global() argument
200 validate_must_be_empty($value) global() argument
[all...]
/plugin/webdav/vendor/sabre/vobject/lib/Property/ICalendar/
H A DDateTime.php62 public function setValue($value) argument
64 if (is_array($value) && isset($value[0]) && $value[0] instanceof DateTimeInterface) {
65 $this->setDateTimes($value);
67 $this->setDateTimes([$value]);
69 parent::setValue($value);
234 $this->value = $values;
283 * @param array $value
296 $value
306 * @param mixed $value
310 parent::offsetSet($name, $value);
[all …]
/plugin/icalevents/vendor/sabre/vobject/lib/Property/ICalendar/
H A DDateTime.php67 function setValue($value) { argument
69 if (is_array($value) && isset($value[0]) && $value[0] instanceof DateTimeInterface) {
70 $this->setDateTimes($value);
72 $this->setDateTimes([$value]);
74 parent::setValue($value);
258 $this->value = $values;
312 * @param array $value
316 function setJsonValue(array $value) { argument
329 $value
340 * @param mixed $value
[all …]
/plugin/combo/ComboStrap/Meta/Field/
H A DRegion.php37 public function setFromStoreValue($value): Metadata argument
40 $this->validityCheck($value);
41 return parent::setFromStoreValue($value);
46 * @param string|null $value
50 public function setValue($value): Metadata argument
52 $this->validityCheck($value);
53 return parent::setValue($value);
90 private function validityCheck($value) argument
92 if ($value === "" || $value
[all...]
/plugin/dw2pdf/vendor/mpdf/mpdf/src/
H A DFpdiTrait.php198 $annotations = PdfType::resolve($parser->getIndirectObject($annotations->value), $parser);
204 foreach ($annotations->value as $annotation) {
213 if ($type->value !== 'Annot' || $subtype->value !== 'Link') {
227 'url' => $uri->value
345 * @param PdfType $value
348 public function writePdfType(PdfType $value)
351 if ($value instanceof PdfIndirectObject) {
353 * @var $value PdfIndirectObject
355 $n = $this->objectMap[$this->currentReaderId][$value
359 writePdfType(PdfType $value) global() argument
[all...]
/plugin/html2pdf/html2pdf/html2ps/
H A Dcss.padding.inc.php15 function parse_in($value) { argument
16 $values = preg_split('/\s+/', trim($value));
63 function parse($value) { argument
65 return PaddingSideValue::init($value);
78 function parse($value) { argument
80 $result = PaddingSideValue::init($value);
94 function parse($value) { argument
96 return PaddingSideValue::init($value);
109 function parse($value) { argument
110 if ($value === 'inherit') {
[all …]
/plugin/sequencediagram/bower_components/raphael/
H A Draphael.js65 /******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
67 /******/ Object.defineProperty(exports, '__esModule', { value: true });
75 /******/ __webpack_require__.t = function(value, mode) { argument
76 /******/ if(mode & 1) value = __webpack_require__(value);
77 /******/ if(mode & 8) return value;
78 /******/ if((mode & 4) && typeof value === 'object' && value && value.__esModule) return value;
81 /******/ Object.defineProperty(ns, 'default', { enumerable: true, value: value });
82 …/ if(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, …

12345678910>>...157