Home
last modified time | relevance | path

Searched refs:result (Results 1726 – 1750 of 1997) sorted by path

1...<<61626364656667686970>>...80

/plugin/struct/
H A Dhelper.php62 $result = [];
65 $result[$schema] = $schemaData->getDataArray();
68 return $result;
175 $result = [];
177 $result[$table] = new Schema($table);
179 return $result;
187 * @param string|null $schema limit the result to a given schema
H A Dremote.php110 $result = [];
113 $result[$name] = [];
117 $result[$name][] = [
123 return $result;
/plugin/struct/meta/
H A DAccessDataValidator.php71 $result = true;
74 $result = $result && $this->validateValue($col, $this->data[$label]);
76 return $result;
H A DAccessTable.php424 $result = '';
431 $result .= sprintf("% -20s : %s\n", $key, $value);
433 return $result;
449 * Creates a proper result array from the database data
H A DAggregationCloud.php25 foreach ($rows as $result) {
26 $this->renderTag($result);
34 * @param ['tag' => Value, 'count' => int] $result
36 protected function renderTag($result)
41 $value = $result['tag'];
42 $count = $result['count'];
35 protected $result; global() variable in dokuwiki\\plugin\\struct\\meta\\AggregationCloud
114 renderTag($result) global() argument
H A DAggregationEditorTable.php59 * Renders the first result row and returns it
H A DAggregationList.php35 * Recursively render the result tree
66 foreach ($results as $result) {
69 $this->renderListItem($result, $node->getDepth() + 1); // zero based depth, one deeper
37 protected $result; global() variable in dokuwiki\\plugin\\struct\\meta\\AggregationList
H A DAggregationTable.php241 * Is the result set currently dynamically filtered?
339 * Render a single result row
37 protected $result; global() variable in dokuwiki\\plugin\\struct\\meta\\AggregationTable
H A DAggregationValue.php22 // limit to first result
38 // Check that we actually got a result
41 // only one result
39 protected $result; global() variable in dokuwiki\\plugin\\struct\\meta\\AggregationValue
H A DAssignments.php261 $result = [];
265 if (!isset($result[$pid])) $result[$pid] = [];
266 $result[$pid][$tbl] = (bool)$row['assigned'];
269 return $result;
H A DCSVExporter.php37 $result = $search->getRows();
44 foreach ($result as $i => $row) {
H A DQueryBuilder.php258 $result = array_slice($array, 0, $key_pos);
259 $result = array_merge($result, $pairs);
260 $result = array_merge($result, array_slice($array, $key_pos));
261 return $result;
H A DSchema.php91 $result = array_shift($schema);
92 $this->id = $result['id'];
93 $this->user = $result['user'];
94 $this->ts = $result['ts'];
95 $config = json_decode($result['config'], true, 512, JSON_THROW_ON_ERROR);
178 $result = [];
180 $result[] = $row['tbl'];
182 return $result;
H A DSearch.php16 * This separator will be used to concat multi values to flatten them in the result set
38 /** @var array the sorting of the result */
59 protected $result;
385 * If the search result object does not exist yet,
386 * the search is run and the result object returned
392 if (is_null($this->result)) {
395 return $this->result;
407 * Returns the PID associated with each result row
415 * Returns the rid associated with each result row
435 * Returns the actual result row
[all...]
H A DSearchCloud.php99 * Execute this search and return the result
101 * The result is a two dimensional array of Value()s.
113 $result = [];
122 $result[] = $row;
126 return $result;
/plugin/struct/script/
H A Dfunctions.js17 .fail(function (result) { argument
18 if (result.responseJSON) {
19 if (result.responseJSON.stacktrace) {
20 console.error(result.responseJSON.error + "\n" + result.responseJSON.stacktrace);
22 alert(result.responseJSON.error);
25 alert(jQuery(result.responseText).text());
/plugin/struct/types/
H A DLookup.php127 $result = $search->getRows();
130 $len = count($result);
135 $options[$val] = $result[$i][0]->getDisplayValue();
H A DPage.php87 $result = [];
104 $result[] = [
113 return $result;
H A DTag.php66 $result = [];
68 $result[] = [
74 return $result;
/plugin/structacl/
H A Daction.php77 $event->result = AUTH_UPLOAD;
/plugin/structat/action/
H A Dcache.php96 $event->result = false;
/plugin/structautolink/_test/
H A DRendererTest.php26 $result = $R->findMatchingTokens($text);
43 $result
47 … $this->assertEquals($result[0]['term'], substr($text, $result[0]['pos'], $result[0]['len']));
48 … $this->assertEquals($result[1]['term'], substr($text, $result[1]['pos'], $result[1]['len']));
64 $result = $R->doc;
66 $this->assertStringStartsWith('Was wir über <a href', $result);
67 $this->assertStringEndsWith('dl ist egal.', $result);
70 $pq = (new \DOMWrap\Document())->html($result);
73 $pq = \phpQuery::newDocumentHTML($result);
/plugin/structcombolookup/
H A Daction.php73 $result = $search->execute();
75 if (!isset($result[0][0])) continue;
76 $parentValue = $result[0][0]->getDisplayValue();
/plugin/structcombolookup/types/
H A DNarrowingLookup.php51 foreach ($results as $result) {
52 $options[$result[0]->getRawValue()] = $result[0]->getDisplayValue();
67 $result = $search->execute();
68 if (!isset($result[0])) return '';
69 return $result[0][0]->getRawValue();
95 $result = $search->execute();
97 $len = count($result);
102 … $options[$pids[$i]] = array($result[$i][0]->getDisplayValue(), $result[$i][1]->getRawValue());
/plugin/structcondstyle/
H A Daction.php184 $result = $searchConfig->execute();
187 foreach ($result as $rownum => $row) {

1...<<61626364656667686970>>...80