Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F482364
PhutilCalendarContainerNode.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
570 B
Referenced Files
None
Subscribers
None
PhutilCalendarContainerNode.php
View Options
<?php
abstract
class
PhutilCalendarContainerNode
extends
PhutilCalendarNode
{
private
$children
=
array
();
final
public
function
getChildren
()
{
return
$this
->
children
;
}
final
public
function
getChildrenOfType
(
$type
)
{
$result
=
array
();
foreach
(
$this
->
getChildren
()
as
$key
=>
$child
)
{
if
(
$child
->
getNodeType
()
!=
$type
)
{
continue
;
}
$result
[
$key
]
=
$child
;
}
return
$result
;
}
final
public
function
appendChild
(
PhutilCalendarNode
$node
)
{
$this
->
children
[]
=
$node
;
return
$this
;
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Wed, May 7, 1:47 PM (2 d)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
89389
Default Alt Text
PhutilCalendarContainerNode.php (570 B)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment