Lines Matching refs:node

76         $node = $this->server->tree->getNodeForPath($parent);
78 if ($node instanceof DAV\IExtendedCollection) {
80 $node->getChild($name);
102 // principals root node, which contains users directly under it.
153 $node = $this->server->tree->getNodeForPath($uri);
156 if ($node instanceof ICalendarObjectContainer || $node instanceof ICalendarObject) {
160 if ($node instanceof ICalendar) {
166 if ($node instanceof CalendarHome && $this->server->getPlugin('sync')) {
320 * @param DAV\INode $node
323 function propFind(DAV\PropFind $propFind, DAV\INode $node) {
327 if ($node instanceof ICalendarObjectContainer) {
339 if ($node instanceof DAVACL\IPrincipal) {
341 $principalUrl = $node->getPrincipalUrl();
352 $propFind->handle('{' . self::NS_CALDAV . '}calendar-user-address-set', function() use ($node) {
353 $addresses = $node->getAlternateUriSet();
354 $addresses[] = $this->server->getBaseUri() . $node->getPrincipalUrl() . '/';
359 $propFind->handle('{' . self::NS_CALENDARSERVER . '}email-address-set', function() use ($node) {
360 $addresses = $node->getAlternateUriSet();
388 // If the node is either ap proxy-read or proxy-write
407 if ($node instanceof ICalendarObject) {
412 $propFind->handle('{' . self::NS_CALDAV . '}calendar-data', function() use ($node) {
413 $val = $node->get();
512 $node = $this->server->tree->getNodeForPath($this->server->getRequestUri());
541 if ($depth == 0 && $node instanceof ICalendarObject) {
603 if ($node instanceof ICalendarObjectContainer && $depth === 0) {
622 if ($node instanceof ICalendarObjectContainer && $depth == 1) {
624 $nodePaths = $node->calendarQuery($report->filters);
746 * @param DAV\IFile $node
752 function beforeWriteContent($path, DAV\IFile $node, &$data, &$modified) {
754 if (!$node instanceof ICalendarObject)
965 * that are supported on a particular node.
967 * @param INode $node
970 function getSupportedPrivilegeSet(INode $node, array &$supportedPrivilegeSet) {
972 if ($node instanceof ICalendar) {
985 * @param DAV\INode $node
989 function htmlActionsPanel(DAV\INode $node, &$output) {
991 if (!$node instanceof CalendarHome)