Home
last modified time | relevance | path

Searched refs:values (Results 226 – 250 of 925) sorted by relevance

12345678910>>...37

/plugin/strata/aggregates/
H A Dfirst.php13 function aggregate($values, $hint = null) { argument
14 $val = reset($values);
/plugin/findologicxmlexport/vendor/doctrine/annotations/docs/en/
H A Dcustom.rst17 Inject annotation values
21 if so then we will pass the value array, otherwise will try to inject values into public properties…
37 public function __construct(array $values)
39 $this->foo = $values['foo'];
149 public function __construct(array $values)
151 $this->stringProperty = $values['stringProperty'];
152 $this->annotProperty = $values['annotProperty'];
189 Enumerated values
192 - An annotation property marked with ``@Enum`` is a field that accept a fixed set of scalar values.
193 - You should use ``@Enum`` fields any time you need to represent fixed values.
/plugin/captcha/
H A DEasySVG.php48 $values = [];
56 if (count($values) == 0) $lookingFor = ($thisValue < 224) ? 2 : 3;
57 $values[] = $thisValue;
58 if (count($values) == $lookingFor) {
60 (($values[0] % 16) * 4096) + (($values[1] % 64) * 64) + ($values[2] % 64) :
61 (($values[0] % 32) * 64) + ($values[1] % 64);
64 $values
[all...]
/plugin/html2pdf/html2pdf/html2ps/samples/API/events/1/
H A Dhtml2pdf.php100 $values = explode ( ",", $row_info ); variable
103 if ( count ( $values ) > 0 ) {
105 $POST_PROCESSING_DIRECTIVES[$row_type] = $values;
107 …PROCESSING_DIRECTIVES[$row_type] = array_merge ( $POST_PROCESSING_DIRECTIVES[$row_type], $values );
112 if ( ! isset ( $values[0] ) ) {
115 $POST_PROCESSING_DIRECTIVES[$row_type] = $values[0];
/plugin/webdav/vendor/sabre/dav/lib/CalDAV/Xml/Notification/
H A DInvite.php139 * @param array $values All the options
141 function __construct(array $values) { argument
154 if (!isset($values[$item])) {
159 foreach ($values as $key => $value) {
/plugin/findologicxmlexport/vendor/hoa/iterator/Test/Unit/
H A DCallbackFilter.php82 $values = [],
89 &$values
96 $values[] = $value;
110 ->array(array_combine($keys, $values))
/plugin/struct/meta/
H A DCSVExporter.php79 * @param Value[] $values
83 protected function row($values, $pid)
91 foreach ($values as $value) {
82 row($values, $pid) global() argument
H A DConfigParser.php267 * Split values at the commas,
276 $values = [];
293 $values[] = $value;
310 $values[] = trim($value);
318 $values[] = trim($value);
320 return $values;
H A DQueryBuilder.php11 /** @var array placeholder -> values */
12 protected $values = []; variable in dokuwiki\\plugin\\struct\\meta\\QueryBuilder
187 $this->values[$placeholder] = $value;
205 * Returns the complete SQL statement and the values to apply
244 return [$sql, array_values($this->values)];
/plugin/fedauth/Auth/OpenID/
H A DMessage.php133 $this->values = array();
163 function values() function in Auth_OpenID_Mapping
165 return $this->values;
177 $this->values[$i]);
199 $this->values[$index] = $value;
202 $this->values[] = $value;
216 return $this->values[$index];
230 $old_values = $this->values;
233 $this->values = array();
240 $this->values[] = $v;
[all …]
/plugin/strata/
H A Dmanual.txt18 Data entry is done with ''<data>'' tags. The following example is a data block for Jane Doe. The block is meant to add some extra data to the page it is on (we assume it is on the page ''persons:jane_doe''). The example shows you how to add simple values, how to declare a class, and how to use types.
27 **Simple Values**: You add simple values to the data block by adding a line like ''field: value''. The field and value are sometimes called the predicate and object respectively.
44 -- Multiple values
50 **Empty values**: Any field that doesn't have a value is ignored. This way you can quickly write down some fields you want to use, but fill in their values later.
52 **Type hints**: You can change how a [[#types|type]] behaves by adding a type hint. Type hints are added by appending them to the type with ''::''. For example ''[page::places]'' uses the page type, and will try to resolve values without an explicit namespace as if they were in the ''places:'' namespace. For a list of types and their hints, see [[#Types]].
54 **Multiple Values**: You can have multiple values with a field. Do this by either putting a ''*'' after the field (or after the type, if it has any), or by simply adding the field multiple times.
79 **Types**: In a query, you can use [[#types]]. You can use types for fields and values, and you can use them in the opening tag. Types are 'sticky': if you put ''?p Birthday [date]: ?b'' the date type will automatically stick to the ''?b'' variable (you could have achieved the same with ''?p Birthday: ?b [date]'').
81 **Comparisons**: You can use normal operators (e.g, ''<'', ''>'', ''>='', ''%%<=%%'', ''='', ''!='') to compare values. A variable's type will be taken into account for the comparison. See [[#Comparison Operators]] for more information.
116 **Aggregates**: Variables can have multiple values (usuall
[all...]
/plugin/davcard/vendor/sabre/vobject/lib/Property/ICalendar/
H A DRecur.php165 $values = array();
167 $values[strtolower($k)] = $v;
169 return array($values);
/plugin/webdavclient/vendor/sabre/vobject/lib/Property/ICalendar/
H A DRecur.php165 $values = array();
167 $values[strtolower($k)] = $v;
169 return array($values);
/plugin/davcal/vendor/sabre/vobject/lib/Property/ICalendar/
H A DRecur.php165 $values = array();
167 $values[strtolower($k)] = $v;
169 return array($values);
/plugin/confmanager/configTypes/
H A DConfigManagerTwoLine.php84 $values = $INPUT->arr('values');
88 if (count($keys) !== count($values) || count($newKey) !== count($newValue)) {
95 $lines = array_combine($keys, $values);
/plugin/data-au/syntax/
H A Drelated.php82 $values = array();
90 $values[] = $value['value'];
92 if(!count($values)) continue; // no values? ignore the column.
96 " AND T1.value IN (" . $sqlite->quote_and_join($values, ',') . ") )\n";
/plugin/davcal/vendor/sabre/dav/lib/CalDAV/Xml/Notification/
H A DInvite.php138 * @param array $values All the options
140 function __construct(array $values) { argument
153 if (!isset($values[$item])) {
158 foreach ($values as $key => $value) {
/plugin/data/syntax/
H A Drelated.php86 // get values for current page:
93 if (!$rows) continue; // no values? ignore the column.
94 $values = array_column($rows, 'value');
97 $in = implode(',', array_map([$sqlite->getPdo(), 'quote'], $values));
/plugin/findologicxmlexport/vendor/twig/twig/doc/functions/
H A Drandom.rst33 * ``values``: The values
34 * ``max``: The max value when values is an integer
/plugin/webdav/vendor/sabre/dav/lib/CalDAV/Backend/
H A DPDO.php240 $values = [
268 $values[':calendarid'] = $calendarId;
273 $values[':' . $dbName] = $properties[$xmlName];
280 $stmt->execute($values);
829 $values = [
835 $values['componenttype'] = $componentType;
844 $values['enddate'] = $timeRange['end']->getTimeStamp();
848 $stmt->execute($values);
1152 $values = [
1162 $values[':' . $dbName] = $properties[$xmlName];
[all …]
/plugin/openid/Auth/OpenID/
H A DMessage.php137 private $values = []; variable in Auth_OpenID_Mapping
178 function values() function in Auth_OpenID_Mapping
180 return $this->values;
193 $this->values[$i]
219 $this->values[$index] = $value;
222 $this->values[] = $value;
240 return $this->values[$index];
254 $old_values = $this->values;
257 $this->values = [];
264 $this->values[] = $v;
[all …]
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Operation/Response/
H A DSearchResultEntry.php75 $values = [];
81 $values[] = $attrValue->getValue();
85 $attributes[] = new Attribute($partialAttribute->getChild(0)->getValue(), ...$values);
/plugin/jplayer/vendor/kriswallsmith/assetic/src/Assetic/Asset/
H A DAssetInterface.php156 * @param array $values
158 public function setValues(array $values); argument
/plugin/diagramsnet/lib/img/lib/allied_telesis/buildings/
H A DSecure_Building.svg1values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"/></filter><path id="B" d="M225.212 68.12c-1.146 3…
/plugin/jquery-syntax/jquery-syntax/
H A Djquery.syntax.brush.smalltalk.js5 …sh){var operators=["[","]","|",":=","."];var values=["self","super","true","false","nil"];brush.pu…

12345678910>>...37