Lines Matching refs:row

179         while ($row = $stmt->fetch(\PDO::FETCH_ASSOC)) {
182 if ($row['components']) {
183 $components = explode(',', $row['components']);
187 … => [(int)$row['calendarid'], (int)$row['id']],
188 'uri' => $row['uri'],
189 … 'principaluri' => $row['principaluri'],
193 …alendar-transp' => new CalDAV\Xml\Property\ScheduleCalendarTransp($row['transparent'] ? 't…
194 …resource-uri' => '/ns/share/' . $row['calendarid'],
197 $calendar['share-access'] = (int)$row['access'];
199 if ($row['access'] > 1) {
206 … $calendar['read-only'] = (int)$row['access'] === \Sabre\DAV\Sharing\Plugin::ACCESS_READ;
210 $calendar[$xmlName] = $row[$dbName];
439 foreach ($stmt->fetchAll(\PDO::FETCH_ASSOC) as $row) {
441 'id' => $row['id'],
442 'uri' => $row['uri'],
443 'lastmodified' => (int)$row['lastmodified'],
444 'etag' => '"' . $row['etag'] . '"',
445 'size' => (int)$row['size'],
446 'component' => strtolower($row['componenttype']),
479 $row = $stmt->fetch(\PDO::FETCH_ASSOC);
481 if (!$row) return null;
484 'id' => $row['id'],
485 'uri' => $row['uri'],
486 'lastmodified' => (int)$row['lastmodified'],
487 'etag' => '"' . $row['etag'] . '"',
488 'size' => (int)$row['size'],
489 'calendardata' => $row['calendardata'],
490 'component' => strtolower($row['componenttype']),
524 while ($row = $stmt->fetch(\PDO::FETCH_ASSOC)) {
527 'id' => $row['id'],
528 'uri' => $row['uri'],
529 'lastmodified' => (int)$row['lastmodified'],
530 'etag' => '"' . $row['etag'] . '"',
531 'size' => (int)$row['size'],
532 'calendardata' => $row['calendardata'],
533 'component' => strtolower($row['componenttype']),
851 while ($row = $stmt->fetch(\PDO::FETCH_ASSOC)) {
853 if (!$this->validateFilterForObject($row, $filters)) {
857 $result[] = $row['uri'];
903 if ($row = $stmt->fetch(\PDO::FETCH_ASSOC)) {
904 return $row['calendaruri'] . '/' . $row['objecturi'];
999 while ($row = $stmt->fetch(\PDO::FETCH_ASSOC)) {
1001 $changes[$row['uri']] = $row['operation'];
1102 while ($row = $stmt->fetch(\PDO::FETCH_ASSOC)) {
1105 'id' => $row['id'],
1106 'uri' => $row['uri'],
1107 'principaluri' => $row['principaluri'],
1108 'source' => $row['source'],
1109 'lastmodified' => $row['lastmodified'],
1115 if (!is_null($row[$dbName])) {
1116 $subscription[$xmlName] = $row[$dbName];
1262 $row = $stmt->fetch(\PDO::FETCH_ASSOC);
1264 if (!$row) return null;
1267 'uri' => $row['uri'],
1268 'calendardata' => $row['calendardata'],
1269 'lastmodified' => $row['lastmodified'],
1270 'etag' => '"' . $row['etag'] . '"',
1271 'size' => (int)$row['size'],
1293 foreach ($stmt->fetchAll(\PDO::FETCH_ASSOC) as $row) {
1295 'calendardata' => $row['calendardata'],
1296 'uri' => $row['uri'],
1297 'lastmodified' => $row['lastmodified'],
1298 'etag' => '"' . $row['etag'] . '"',
1299 'size' => (int)$row['size'],
1479 while ($row = $stmt->fetch(\PDO::FETCH_ASSOC)) {
1482 …'href' => isset($row['share_href']) ? $row['share_href'] : \Sabre\HTTP\encodePath($row['principa…
1483 'access' => (int)$row['access'],
1485 'inviteStatus' => (int)$row['share_invitestatus'],
1487 !empty($row['share_displayname'])
1488 ? ['{DAV:}displayname' => $row['share_displayname']]
1490 'principal' => $row['principaluri'],