Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F548180
PhabricatorDashboardColumn.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
818 B
Referenced Files
None
Subscribers
None
PhabricatorDashboardColumn.php
View Options
<?php
final
class
PhabricatorDashboardColumn
extends
Phobject
{
private
$columnKey
;
private
$classes
=
array
();
private
$refs
=
array
();
public
function
setColumnKey
(
$column_key
)
{
$this
->
columnKey
=
$column_key
;
return
$this
;
}
public
function
getColumnKey
()
{
return
$this
->
columnKey
;
}
public
function
addClass
(
$class
)
{
$this
->
classes
[]
=
$class
;
return
$this
;
}
public
function
getClasses
()
{
return
$this
->
classes
;
}
public
function
setPanelRefs
(
array
$refs
)
{
assert_instances_of
(
$refs
,
'PhabricatorDashboardPanelRef'
);
$this
->
refs
=
$refs
;
return
$this
;
}
public
function
addPanelRef
(
PhabricatorDashboardPanelRef
$ref
)
{
$this
->
refs
[]
=
$ref
;
return
$this
;
}
public
function
getPanelRefs
()
{
return
$this
->
refs
;
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Mon, May 12, 1:45 PM (1 d, 23 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
101111
Default Alt Text
PhabricatorDashboardColumn.php (818 B)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment