Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/phabricator
Path: blob/master/src/applications/calendar/parser/data/PhutilCalendarDocumentNode.php
12262 views
1
<?php
2
3
final class PhutilCalendarDocumentNode
4
extends PhutilCalendarContainerNode {
5
6
const NODETYPE = 'document';
7
8
public function getEvents() {
9
return $this->getChildrenOfType(PhutilCalendarEventNode::NODETYPE);
10
}
11
12
}
13
14