Home
last modified time | relevance | path

Searched refs:value (Results 51 – 75 of 4040) sorted by last modified time

12345678910>>...162

/plugin/struct/types/
H A DAbstractMultiBaseType.php25 $value = implode(', ', $rawvalues);
29 $this->valueEditor($name, $value, $htmlID) .
H A DAutoSummary.php48 * @param string|\string[] $value
51 public function filter(QueryBuilderWhere $add, $tablealias, $colname, $comp, $value, $op) argument
59 $pl = $QB->addValue($value);
H A DColor.php34 public function renderValue($value, \Doku_Renderer $R, $mode) argument
37 $R->doc .= '<div title="' . hsc($value) . '" style="background-color:' . hsc($value) . ';"
40 $R->cdata($value);
52 foreach ($values as $value) {
53 $this->renderValue($value, $R, $mode);
73 'value' => $rawvalue,
85 public function renderTagCloudLink($value, \Doku_Renderer $R, $mode, $page, $filter, $weight, $showCount = null) argument
87 $color = $this->displayValue($value);
103 public function getSortString($value) argument
[all...]
H A DDate.php19 * @param string|int $value the value stored in the database
24 public function renderValue($value, \Doku_Renderer $R, $mode) argument
26 $date = date_create($value);
38 * Return the editor to edit a single value
41 * @param string $rawvalue the current value
54 'value' => $rawvalue,
64 * Validate a single value
H A DDateTime.php36 * Return the editor to edit a single value
39 * @param string $rawvalue the current value
52 'value' => $rawvalue,
62 * Validate a single value
124 * @param string|\string[] $value
127 public function filter(QueryBuilderWhere $add, $tablealias, $colname, $comp, $value, $op) argument
140 if (is_array($value)) {
144 foreach ((array)$value as $item) {
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 DLongText.php20 * @param string|int $value the value stored in the database
25 public function renderValue($value, \Doku_Renderer $R, $mode) argument
28 $valueWithBR = nl2br(hsc($value));
31 $R->cdata($this->config['prefix'] . $value . $this->config['postfix']);
H A DLookup.php144 * @param int|string $value
149 public function renderValue($value, \Doku_Renderer $R, $mode)
151 [, $value] = \helper_plugin_struct::decodeJson($value);
154 return $column->getType()->renderValue($value, $R, $mode);
180 * @param string $value
183 public function rawValue($value)
185 [$value] = \helper_plugin_struct::decodeJson($value);
186 return $value; argument
152 renderValue($value, \\Doku_Renderer $R, $mode) global() argument
196 displayValue($value) global() argument
216 compareValue($value) global() argument
269 filter(QueryBuilderWhere $add, $tablealias, $colname, $comp, $value, $op) global() argument
[all...]
H A DMail.php17 * @param string|int $value the value stored in the database
22 public function renderValue($value, \Doku_Renderer $R, $mode) argument
24 $mail = $this->config['prefix'] . $value . $this->config['postfix'];
H A DMedia.php45 * @param string|int $value the value stored in the database
50 public function renderValue($value, \Doku_Renderer $R, $mode) argument
63 if (!media_isexternal($value)) {
66 $html = $R->internalmedia($value, null, null, $width, $height, null, 'direct', true);
68 $R->internalmedia($value, null, null, $width, $height, null, 'direct');
72 $html = $R->externalmedia($value, null, null, $width, $height, null, 'direct', true);
74 $R->externalmedia($value, null, null, $width, $height, null, 'direct');
79 [, $mime, ] = mimetype($value, false);
91 * Return the editor to edit a single value
129 renderTagCloudLink($value, \\Doku_Renderer $R, $mode, $page, $filter, $weight) 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...]
H A DTag.php22 * @param int|string $value
27 public function renderValue($value, \Doku_Renderer $R, $mode) argument
31 '[' . $context->getTable() . '.' . $context->getLabel() . '*~]=' . $value;
36 $R->internallink($page . '?' . $filter, $value);
69 'label' => $row['value'],
70 'value' => $row['value']
84 * @return string The sql with a single "?" placeholde for the search value
91 $sql .= "SELECT DISTINCT value
98 $sql .= "SELECT DISTINCT col{$context->getColref()} AS value
125 filter(QueryBuilderWhere $add, $tablealias, $colname, $comp, $value, $op) global() argument
[all...]
H A DText.php17 * @param string|int $value the value stored in the database
22 public function renderValue($value, \Doku_Renderer $R, $mode) argument
24 $R->cdata($this->config['prefix'] . $value . $this->config['postfix']);
H A DTraitFilterPrefix.php24 * @param string|string[] $value
27 public function filter(QueryBuilderWhere $add, $tablealias, $colname, $comp, $value, $op) argument
30 if (is_array($value)) {
35 foreach ((array)$value as $item) {
H A DUrl.php39 * @param string $value
44 public function renderValue($value, \Doku_Renderer $R, $mode) argument
46 $url = $this->buildURL($value);
83 * @param string $value
86 protected function buildURL($value) argument
88 $url = $this->config['prefix'] . trim($value) . $this->config['postfix'];
H A DUser.php42 * @param string $value the user to display
47 public function renderValue($value, \Doku_Renderer $R, $mode)
50 $name = userlink($value);
53 $name = userlink($value, true);
84 // Because a value might be interpreted as integer in the
108 'value' => $true_login
162 * @param string|string[] $value
165 public function filter(QueryBuilderWhere $add, $tablealias, $colname, $comp, $value, $op)
174 $pl = $QB->addValue($value);
179 parent::filter($add, $tablealias, $colname, $comp, $value,
46 renderValue($value, \\Doku_Renderer $R, $mode) global() argument
150 filter(QueryBuilderWhere $add, $tablealias, $colname, $comp, $value, $op) global() argument
[all...]
H A DWiki.php8 * @param int|string $value
13 public function renderValue($value, \Doku_Renderer $R, $mode) argument
16 $R->doc .= $value;
20 $value = $this->config['prefix'] . $value . $this->config['postfix'];
21 $doc = p_render($mode, p_get_instructions($value), $info);
/plugin/struct/jsoneditor/
H A Djsoneditor.min.css1 div.jsoneditor-field,div.jsoneditor-readonly,div.jsoneditor-value{border:1px solid transparent;min-height:16px;min-width:32px;padding:2px;margin:1px;word-wrap:break-word;float:left}div.jsoneditor-field p,div.jsoneditor-value p{margin:0}div.jsoneditor-value{word-break:break-word}div.jsoneditor-readonly{min-width:16px;color:gray}div.jsoneditor-empty{border-color:#d3d3d3;border-style:dashed;border-radius:2px}div.jsoneditor-field.jsoneditor-empty::after,div.jsoneditor-value.jsoneditor-empty::after{pointer-events:none;color:#d3d3d3;font-size:8pt}div.jsoneditor-field.jsoneditor-empty::after{content:"field"}div.jsoneditor-value.jsoneditor-empty::after{content:"value"}div.jsoneditor-value.jsoneditor-url{color:green;text-decoration:underline}a.jsoneditor-value.jsoneditor-url:focus,a.jsoneditor-value.jsoneditor-url:hover{color:#ee422e}div.jsoneditor td.jsoneditor-separator{padding:3px 0;vertical-align:top;color:gray}div.jsoneditor-field.jsoneditor-highlight,div.jsoneditor-field[contenteditable=true]:focus,div.jsoneditor-field[contenteditable=true]:hover,div.jsoneditor-value
[all...]
/plugin/struct/action/
H A Dbureaucracy.php96 $value = $field->getParam('value');
97 if (!is_array($value)) $value = [$value];
101 // find proper value
112 foreach ($value as $pid) {
128 //replace previous value
130 $field->opt['value'] = $new_value;
160 $tosave[$tbl][$lbl] = $field->getParam('value');
[all...]
H A Dinline.php96 $value = $this->schemadata->getDataColumn($this->column);
102 echo $value->getValueEditor('entry', $id);
141 $value = $INPUT->param('entry');
143 if (!$validator->validateValue($this->column, $value)) {
149 $tosave[$this->column->getLabel()] = $value;
182 $value = $this->schemadata->getDataColumn($this->column);
184 $value->render($R, 'xhtml'); // FIXME use configured default renderer
185 $data = json_encode(['value' => $R->doc, 'rev' => $this->schemadata->getTimestamp()], JSON_THROW_ON_ERROR);
H A Dmigration.php172 SET value = \'["\'||value||\'",0]\'
174 AND CAST(value AS DECIMAL) != value';
188 SET value = '[" . '""' . ",'||value||']'
190 AND CAST(value AS DECIMAL) = value";
231 * All lookups were presumed to reference lookup data, not pages, so the migrated value
277 $s = "SELECT colref, pid, rid, rev, row, value FRO
[all...]
H A Doutput.php115 foreach ($fields as $field => $value) {
120 $value = date($format, strtotime($value));
124 $event->data['replace'][$placeholder] = is_array($value) ? implode(', ', $value) : $value;
/plugin/struct/
H A Dhelper.php45 * @return array ('schema' => ( 'fieldlabel' => 'value', ...))
86 * @param array $data ('schema' => ( 'fieldlabel' => 'value', ...))
198 * Returns decoded JSON value or throws exception
201 * @param string $value
206 public static function decodeJson($value)
208 if (empty($value)) return $value;
209 if ($value[0] !== '[') throw new StructException('Lookup expects JSON');
210 return json_decode($value, null, 512, JSON_THROW_ON_ERROR);
204 decodeJson($value) global() argument
/plugin/struct/helper/
H A Dfield.php43 * Sets the value and validates it
45 * @param mixed $value
46 * @return bool value was set successfully validated
48 protected function setVal($value) argument
51 $value = '';
53 } elseif ($this->replace($value) == $value) {
55 $this->error = !$validator->validateValue($this->column, $value);
63 if ($value === [] || $value
[all...]
/plugin/openlayersmap/ol7/
H A Dol.js.map

12345678910>>...162