Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F1285928
FuelMapView.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
704 B
Referenced Files
None
Subscribers
None
FuelMapView.php
View Options
<?php
final
class
FuelMapView
extends
FuelComponentView
{
private
$items
=
array
();
public
function
newItem
()
{
$item
=
new
FuelMapItemView
();
$this
->
items
[]
=
$item
;
return
$item
;
}
public
function
render
()
{
require_celerity_resource
(
'fuel-map-css'
);
$items
=
$this
->
items
;
if
(!
$items
)
{
return
null
;
}
$body
=
phutil_tag
(
'div'
,
array
(
'class'
=>
'fuel-map-items'
,
),
$items
);
$map
=
phutil_tag
(
'div'
,
array
(
'class'
=>
'fuel-map'
,
),
$body
);
return
$this
->
newComponentTag
(
'div'
,
array
(
'class'
=>
'fuel-map-component'
,
),
$map
);
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Fri, Jul 4, 4:47 PM (1 d, 18 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
304097
Default Alt Text
FuelMapView.php (704 B)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment