Home
last modified time | relevance | path

Searched refs:result (Results 401 – 425 of 1997) sorted by path

1...<<11121314151617181920>>...80

/plugin/davcal/vendor/sabre/dav/lib/CalDAV/Xml/Filter/
H A DCalendarData.php53 $result = [
64 $result['expand'] = [
69 if (!$result['expand']['start'] || !$result['expand']['end']) {
72 if ($result['expand']['end'] <= $result['expand']['start']) {
80 return $result;
H A DCompFilter.php50 $result = [
59 $result['name'] = $att['name'];
68 $result['comp-filters'][] = $elem['value'];
71 $result['prop-filters'][] = $elem['value'];
74 $result['is-not-defined'] = true;
77 if ($result['name'] === 'VCALENDAR') {
80 $result['time-range'] = [
84 …if ($result['time-range']['start'] && $result['time-range']['end'] && $result['time-range']['end']…
93 return $result;
H A DParamFilter.php48 $result = [
55 $result['name'] = $att['name'];
64 $result['is-not-defined'] = true;
67 $result['text-match'] = [
78 return $result;
H A DPropFilter.php50 $result = [
59 $result['name'] = $att['name'];
68 $result['param-filters'][] = $elem['value'];
71 $result['is-not-defined'] = true;
74 $result['time-range'] = [
78 …if ($result['time-range']['start'] && $result['time-range']['end'] && $result['time-range']['end']…
83 $result['text-match'] = [
94 return $result;
/plugin/davcal/vendor/sabre/dav/lib/CalDAV/Xml/Request/
H A DFreeBusyQueryReport.php83 $result = new self();
84 $result->start = $start;
85 $result->end = $end;
87 return $result;
/plugin/davcal/vendor/sabre/dav/lib/CardDAV/Backend/
H A DPDO.php230 $result = [];
233 $result[] = $row;
235 return $result;
258 if (!$result) return false;
260 $result['etag'] = '"' . $result['etag'] . '"';
261 return $result;
286 $result = [];
289 $result[] = $row;
291 return $result;
469 $result = [
[all …]
/plugin/davcal/vendor/sabre/dav/lib/CardDAV/
H A DPlugin.php435 $result = [];
454 $result[] = $props;
463 …$this->server->httpResponse->setBody($this->server->generateMultiStatus($result, $prefer['return']…
751 $result = HTTP\Util::negotiate(
768 $mimeType = $result;
769 switch ($result) {
/plugin/davcal/vendor/sabre/dav/lib/CardDAV/Xml/Filter/
H A DAddressData.php49 $result = [
55 return $result;
H A DParamFilter.php49 $result = [
56 $result['name'] = $att['name'];
65 $result['is-not-defined'] = true;
73 $result['text-match'] = [
85 return $result;
H A DPropFilter.php49 $result = [
58 $result['name'] = $att['name'];
61 $result['test'] = 'allof';
71 $result['param-filters'][] = $elem['value'];
74 $result['is-not-defined'] = true;
82 $result['text-matches'][] = [
94 return $result;
/plugin/davcal/vendor/sabre/dav/lib/DAV/Auth/
H A DPlugin.php163 $result = $backend->check(
168 …if (!is_array($result) || count($result) !== 2 || !is_bool($result[0]) || !is_string($result[1])) {
172 if ($result[0]) {
173 $this->currentPrincipal = $result[1];
177 $reasons[] = $result[1];
/plugin/davcal/vendor/sabre/dav/lib/DAV/Browser/
H A DPropFindAll.php58 $this->result[$propertyName] = [200, $value];
79 $this->result[$propertyName] = [$status, $value];
91 return isset($this->result[$propertyName]) ? $this->result[$propertyName][1] : null;
106 return isset($this->result[$propertyName]) ? $this->result[$propertyName][0] : 404;
118 $result = [];
119 foreach ($this->result as $propertyName => $stuff) {
121 $result[] = $propertyName;
125 if (!$result) {
126 $result[] = '{http://sabredav.org/ns}idk';
128 return $result;
/plugin/davcal/vendor/sabre/dav/lib/DAV/
H A DClient.php234 $result = $this->parseMultiStatus($response->getBodyAsString());
238 reset($result);
239 $result = current($result);
240 return isset($result[200]) ? $result[200] : [];
244 foreach ($result as $href => $statusList) {
405 $result = [];
409 $result[$response->getHref()] = $response->getResponseProperties();
413 return $result;
H A DCorePlugin.php385 $result = $this->server->updateProperties($path, $newProperties);
396 foreach ($result as $prop => $code) {
417 foreach ($result as $propertyName => $code) {
590 $result = $this->server->createCollection($path, $mkcol);
592 if (is_array($result)) {
597 $this->server->generateMultiStatus([$result])
712 $result = $this->server->xml->parse(
893 if (isset($result['{http://sabredav.org/ns}sync-token'])) {
894 return $result['{http://sabredav.org/ns}sync-token'];
896 if (isset($result['{DAV:}sync-token'])) {
[all …]
H A DPropFind.php65 $this->result[$propertyName] = [404, null];
68 $this->itemsLeft = count($this->result);
96 …if ($this->itemsLeft && isset($this->result[$propertyName]) && $this->result[$propertyName][0] ===…
128 if (!isset($this->result[$propertyName])) {
139 $this->result[$propertyName] = [$status, $value];
151 return isset($this->result[$propertyName]) ? $this->result[$propertyName][1] : null;
166 return isset($this->result[$propertyName]) ? $this->result[$propertyName][0] : null;
227 $result = [];
230 $result[] = $propertyName;
233 return $result;
[all …]
H A DPropPatch.php38 protected $result = []; variable in Sabre\\DAV\\PropPatch
272 if (is_bool($result)) {
273 if ($result) {
276 $result = 204;
279 $result = 200;
283 $result = 403;
286 if (!is_int($result)) {
289 $this->result[$propertyName] = $result;
290 if ($result >= 400) {
312 if (is_array($result)) {
[all …]
H A DServer.php647 $result = [
661 $result,
669 return $result;
764 return $result[0][200];
782 $result = [];
791 return $result;
952 $result = [
973 return $result;
1161 return $result;
1560 $result = [];
[all …]
H A DTree.php264 $result = [];
272 $result[$fullPath] = $childNode;
278 $result[$fullPath] = $this->getNodeForPath($fullPath);
284 return $result;
/plugin/davcal/vendor/sabre/dav/lib/DAV/Locks/Backend/
H A DPDO.php93 $result = $stmt->fetchAll();
96 foreach ($result as $row) {
/plugin/davcal/vendor/sabre/dav/lib/DAV/Locks/
H A DPlugin.php553 $result = $this->server->xml->expect(
560 $lockInfo->owner = $result->owner;
562 $lockInfo->scope = $result->scope;
/plugin/davcal/vendor/sabre/dav/lib/DAVACL/
H A DAbstractPrincipalCollection.php148 …$result = $this->principalBackend->searchPrincipals($this->principalPrefix, $searchProperties, $te…
151 foreach ($result as $row) {
H A DPlugin.php332 $result = $node->getSupportedPrivilegeSet();
334 if ($result)
335 return $result;
586 $result = null;
598 if ($result) {
599 return $result;
648 foreach ($results as $result) {
1119 new DAV\Xml\Response\MultiStatus($result),
1141 $result = [];
1177 return $result;
[all …]
/plugin/davcal/vendor/sabre/dav/lib/DAVACL/PrincipalBackend/
H A DAbstractBackend.php42 $result = $this->searchPrincipals(
47 if ($result) {
48 return $result[0];
H A DPDO.php101 … $result = $this->pdo->query('SELECT ' . implode(',', $fields) . ' FROM ' . $this->tableName);
105 while ($row = $result->fetch(\PDO::FETCH_ASSOC)) {
297 $result = [];
299 $result[] = $row['uri'];
301 return $result;
319 $result = [];
321 $result[] = $row['uri'];
323 return $result;
/plugin/davcal/vendor/sabre/dav/lib/DAVACL/Xml/Property/
H A DCurrentUserPrivilegeSet.php122 $result = [];
129 $result[] = $element['value'][0];
131 return new self($result);

1...<<11121314151617181920>>...80