Home
last modified time | relevance | path

Searched refs:value (Results 276 – 300 of 4040) sorted by relevance

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

/plugin/combo/vendor/symfony/polyfill-php80/
H A DPhp80.php28 public static function get_debug_type($value): string argument
31 case null === $value: return 'null';
32 case \is_bool($value): return 'bool';
33 case \is_string($value): return 'string';
34 case \is_array($value): return 'array';
35 case \is_int($value): return 'int';
36 case \is_float($value): return 'float';
37 case \is_object($value): break;
38 case $value instanceof \__PHP_Incomplete_Class: return '__PHP_Incomplete_Class';
40 if (null === $type = @get_resource_type($value)) {
[all...]
/plugin/fedauth/Auth/OpenID/
H A DKVForm.php61 $value = $kv[1];
62 $tval = trim($value);
63 if ($tval != $value) {
90 foreach ($values as $key => $value) {
91 if (is_array($value)) {
92 list($key, $value) = array($value[0], $value[1]);
103 if (strpos($value, "\n") !== false) {
106 $serialized .= "$key:$value\n";
/plugin/combo/ComboStrap/
H A DCacheExpirationFrequency.php32 * @param string|null $value
34 * @throws ExceptionBadArgument - if the value cannot be persisted
37 public function setValue($value): Metadata argument
40 if ($value === null) {
41 parent::setValue($value);
45 $value = trim($value);
46 if ($value === "") {
52 $cacheExpirationCalculatedDate = Cron::getDate($value);
54 throw new ExceptionBadSyntax("The cache frequency expression ($value) i
[all...]
H A DPipelineUtility.php41 * Get the value (called the message in a pipeline)
98 * We replace after the split to be sure that there is not a | separator in the variable value
164 private static function replace(array $commandArgs, $value) argument
168 return str_replace($search, $replace, $value);
173 * @param $value
177 public static function head(array $commandArgs, $value) argument
180 if (strlen($value) < $length) {
181 return $value;
183 $words = explode(" ", $value);
204 static function concat(array $commandArgs, $value, argument
221 tail(array $commandArgs, $value) global() argument
228 cut(array $commandArgs, $value) global() argument
272 format(array $commandArgs, $value) global() argument
[all...]
/plugin/openid/Auth/OpenID/
H A DKVForm.php64 $value = $kv[1];
65 $tval = trim($value);
66 if ($tval != $value) {
95 foreach ($values as $key => $value) {
96 if (is_array($value)) {
97 list($key, $value) = [$value[0], $value[1]];
108 if (strpos($value, "\n") !== false) {
111 $serialized .= "$key:$value\n";
/plugin/struct/meta/
H A DSearch.php164 * @param string|string[] $value
168 public function addFilter($colname, $value, $comp, $op = 'OR')
170 $filter = $this->createFilter($colname, $value, $comp, $op);
178 * @param string|string[] $value
182 public function addDynamicFilter($colname, $value, $comp, $op = 'OR')
184 $filter = $this->createFilter($colname, $value, $comp, $op);
192 * @param string|string[] $value
195 * @return array|null [Column col, string|string[] value, string comp, string op]
197 protected function createFilter($colname, $value, $comp, $op = 'OR')
202 $value
159 addFilter($colname, $value, $comp, $op = 'OR') global() argument
212 parseFilterValueList($value) global() argument
253 filterWrapAsterisks($value) global() argument
273 filterChangeToLike($value) global() argument
710 isEmptyValue(Value $value) global() argument
[all...]
/plugin/html2pdf/html2pdf/html2ps/
H A Dcss.line-height.inc.php23 function parse($value) { argument
24 if ($value === 'inherit') {
31 if (preg_match("/^\d+(\.\d+)?$/",$value)) {
32 return new LineHeight_Relative((float)$value);
38 if (preg_match("/^\d+%$/",$value)) {
39 return new LineHeight_Relative(((float)$value)/100);
46 if (trim($value) === "normal") {
53 return new LineHeight_Absolute($value);
H A Dcss.border.style.inc.php18 function set_value(&$owner_value, &$value) { argument
19 if ($value != CSS_PROPERTY_INHERIT) {
20 $owner_value->top->style = $value->top;
23 $owner_value->left->style = $value->left;
51 function parse_style($value) { argument
52 switch ($value) {
74 function parse_in($value) { argument
75 $values = explode(" ",$value);
101 function parse($value) { argument
102 if ($value == 'inherit') {
[all …]
H A Dcss.inc.php84 $value = $handler->default_value();
86 if (is_object($value)) {
87 return $value->copy();
89 return $value;
152 $value = $matches[1];
155 $value = CSS::remove_backslash_at_newline($value);
157 return array($value, $rest);
161 $value = $matches[1];
164 $value = CSS::remove_backslash_at_newline($value);
166 return array($value, $rest);
[all …]
H A Dcss.font.inc.php21 function detect_font_value_type($value) { argument
22 if (preg_match("/^normal|italic|oblique$/",$value)) { return FONT_VALUE_STYLE; }
25 if (preg_match("#/#",$value)) { return FONT_VALUE_SIZE; }
26 if (preg_match("#^\d+\.?\d*%$#",$value)) { return FONT_VALUE_SIZE; }
28 if (preg_match("#^(larger|smaller)$#",$value)) { return FONT_VALUE_SIZE; }
62 function parse($value) { argument
65 if ($value === 'inherit') {
87 $value = preg_replace("/\s+/"," ",$value);
88 $value = preg_replace("/,\s+/",",",$value);
89 $value = preg_replace("#\s*/\s*#","/",$value);
[all …]
/plugin/yuriigantt/3rd/dhtmlxgantt/sources/locale/
H A Dlocale_cn.js68 /******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
70 /******/ Object.defineProperty(exports, '__esModule', { value: true });
78 /******/ __webpack_require__.t = function(value, mode) { argument
79 /******/ if(mode & 1) value = __webpack_require__(value);
80 /******/ if(mode & 8) return value;
81 /******/ if((mode & 4) && typeof value === 'object' && value && value.__esModule) return value;
84 /******/ Object.defineProperty(ns, 'default', { enumerable: true, value: value });
85 …/ if(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, …
/plugin/ireadit/syntax/
H A Dlist.php53 $value = trim($pair[1]);
55 $states = array_map('trim', explode(',', strtolower($value)));
56 $value = [];
59 $value = array_merge($value, $statemap[$state]);
67 $value = trim(cleanID($value), ':');
69 $value = trim($value, '/');
70 if (preg_match('/' . $value . '/', null) === false) {
75 if ($value != '0' && $value != '1') {
80 if ($value != '0' && $value != '1') {
85 $params[$key] = $value;
/plugin/odt/ODT/elements/
H A DODTElementTable.php144 * @param array $value
153 * @param array $value
171 * @param array $value
181 * @param boolean $value
200 * @param integer $value
218 * @param integer $value
248 * @param boolean $value
266 * @param boolean $value
326 $value = $params->document->toPoints($value, 'y');
329 $value = $params->document->toPoints($value, 'y');
[all …]
/plugin/typography/helper/
H A Dparser.php136 $value = $item[1];
141 $value = 'small-caps';
144 $value = htmlspecialchars($item[1], ENT_COMPAT, 'UTF-8');
149 $elem['classes'] += array('webfont' => 'wf-'.$value);
152 $elem['declarations'] += array($name => $value);
172 foreach ($declarations as $name => $value) {
173 $css[] = $name.':'.$value.';';
190 foreach ($elem['declarations'] as $name => $value) {
191 $css[] = $name.':'.$value.';';
205 foreach ($attr as $key => $value) {
[all …]
/plugin/pureldap/vendor/freedsx/asn1/src/FreeDSx/Asn1/Type/
H A DBitStringType.php23 * @param string $value
25 public function __construct(string $value = '') argument
27 parent::__construct($value);
35 return $this->value;
39 * @param string $value
42 public function setValue(string $value) argument
44 $this->value = $value;
68 foreach (str_split($this->value, 8) as $piece) {
76 * Construct the bit string from a binary string value
130 withTag($tagNumber, int $class, bool $isConstructed, string $value = '') global() argument
[all...]
/plugin/rrdgraph/inc/
H A Dsvgbinding.php28 public $value; variable in AttrBinding
33 * @param String $value Value to set for the given attribute.
35 public function __construct($attribute, $value) { argument
37 $this->value = $value;
92 fwrite($this->output, $value);
101 foreach ($attributes as $attr => $value) {
102 fwrite($this->output, ' ' . $attr . '="' . $value. '"');
199 … $data["data"] = array_filter($data["data"], function ($value) { return !is_nan($value); });
234 foreach ($data["data"] as $ts => $value) {
236 if (!is_nan($value)) {
[all …]
/plugin/diagramsnet/lib/js/diagramly/util/
H A DmxAsyncCanvas.js93 this.state.fontColor = value;
98 if (value == mxConstants.NONE)
100 value = null;
103 this.state.fontBackgroundColor = value;
108 if (value == mxConstants.NONE)
110 value = null;
113 this.state.fontBorderColor = value;
116 mxAsyncCanvas.prototype.setFontSize = function(value) argument
118 this.state.fontSize = value;
123 this.state.fontFamily = value;
[all …]
H A DmxJsCanvas.js191 value = null;
228 if (value == null)
251 this.state.dashed = value;
253 if (value)
308 this.ctx.lineCap = value;
313 this.ctx.lineJoin = value;
318 this.ctx.lineJoin = value;
330 value = null;
340 value = null;
391 if (value == null || value == mxConstants.NONE)
[all …]
/plugin/html2pdf/html2pdf/html2ps/classes/org/active-link/xml/
H A DLeaf.php37 var $value; variable in Leaf
45 function Leaf($value = "") { argument
46 $this->setValue($value);
55 return $this->value;
64 function setValue($value) { argument
65 $this->value = $value;
/plugin/odt/ODT/css/
H A Dcsscolors.php303 $value = '#000000';
306 $value = self::$values [strtolower($name)];
308 $value = '#000000';
311 return $value;
315 * @param null $value
318 public static function getValueName ($value=NULL) { argument
320 if (isset($value)) {
321 $name = self::$names [$value];
/plugin/icalevents/vendor/sabre/vobject/lib/Property/ICalendar/
H A DPeriod.php76 * @param array $value
80 function setJsonValue(array $value) { argument
82 $value = array_map(
88 $value
90 parent::setJsonValue($value);
141 $value = $this->getJsonValue();
142 $writer->writeElement('start', $value[0][0]);
144 if ($value[0][1][0] === 'P') {
145 $writer->writeElement('duration', $value[0][1]);
148 $writer->writeElement('end', $value[0][1]);
/plugin/webdav/vendor/sabre/vobject/lib/Property/ICalendar/
H A DPeriod.php71 * @param array $value
73 public function setJsonValue(array $value) argument
75 $value = array_map(
79 $value
81 parent::setJsonValue($value);
126 $value = $this->getJsonValue();
127 $writer->writeElement('start', $value[0][0]);
129 if ('P' === $value[0][1][0]) {
130 $writer->writeElement('duration', $value[0][1]);
132 $writer->writeElement('end', $value[0][1]);
/plugin/dw2pdf/vendor/setasign/fpdi/src/PdfParser/Type/
H A DPdfIndirectObject.php41 $value = $parser->readValue();
42 if ($value === false) {
48 $value = PdfStream::parse($value, $reader, $parser);
56 $v->value = $value;
66 * @param PdfType $value
69 public static function create($objectNumber, $generationNumber, PdfType $value) argument
74 $v->value = $value;
[all...]
/plugin/news/
H A Dscript.js11 prev += inputs[i].value + ",";
16 if(prev_del.value && prev) {
17 prev_del.value += "," + prev;
19 else if (prev) prev_del.value = prev;
20 prev_del.value = prev_del.value.replace(/\s*,$/,"");
21 document.news_data.subfeed_dir.value=document.news_data.subfeeds.value;
32 document.news_data.subfeed_inx.value = index;
/plugin/todo/syntax/
H A Dlist.php72 @list($key, $value) = explode(':', $option, 2);
75 if(in_array($value, array('id', 'firstheader', 'none'))) {
76 $data['header'] = $value;
80 if(in_array($value, $allowedvalues)) {
81 $data['short'] = ($value == 'yes');
85 if(in_array($value, $allowedvalues)) {
86 $data['showdate'] = ($value == 'yes');
90 if(in_array($value, $allowedvalues)) {
91 $data['checkbox'] = ($value == 'yes');
95 if(in_array($value,
[all...]

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