Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F969031
ConpherenceController.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
2 KB
Referenced Files
None
Subscribers
None
ConpherenceController.php
View Options
<?php
abstract
class
ConpherenceController
extends
PhabricatorController
{
private
$conpherence
;
public
function
setConpherence
(
ConpherenceThread
$conpherence
)
{
$this
->
conpherence
=
$conpherence
;
return
$this
;
}
public
function
getConpherence
()
{
return
$this
->
conpherence
;
}
public
function
buildApplicationMenu
()
{
$nav
=
new
PHUIListView
();
$nav
->
newLink
(
pht
(
'New Room'
),
$this
->
getApplicationURI
(
'new/'
));
$nav
->
addMenuItem
(
id
(
new
PHUIListItemView
())
->
setName
(
pht
(
'Add Participants'
))
->
setType
(
PHUIListItemView
::
TYPE_LINK
)
->
setHref
(
'#'
)
->
addSigil
(
'conpherence-widget-adder'
)
->
setMetadata
(
array
(
'widget'
=>
'widgets-people'
)));
$nav
->
addMenuItem
(
id
(
new
PHUIListItemView
())
->
setName
(
pht
(
'New Calendar Item'
))
->
setType
(
PHUIListItemView
::
TYPE_LINK
)
->
setHref
(
'/calendar/event/create/'
)
->
addSigil
(
'conpherence-widget-adder'
)
->
setMetadata
(
array
(
'widget'
=>
'widgets-calendar'
)));
return
$nav
;
}
protected
function
buildApplicationCrumbs
()
{
return
$this
->
buildConpherenceApplicationCrumbs
();
}
protected
function
buildConpherenceApplicationCrumbs
(
$is_rooms
=
false
)
{
$crumbs
=
parent
::
buildApplicationCrumbs
();
if
(
$is_rooms
)
{
$crumbs
->
addAction
(
id
(
new
PHUIListItemView
())
->
setName
(
pht
(
'New Room'
))
->
setHref
(
$this
->
getApplicationURI
(
'new/'
))
->
setIcon
(
'fa-plus-square'
)
->
setWorkflow
(
true
));
}
else
{
$crumbs
->
addAction
(
id
(
new
PHUIListItemView
())
->
setName
(
pht
(
'New Room'
))
->
setHref
(
$this
->
getApplicationURI
(
'new/'
))
->
setIcon
(
'fa-plus-square'
)
->
setWorkflow
(
true
))
->
addAction
(
id
(
new
PHUIListItemView
())
->
setName
(
pht
(
'Room'
))
->
setHref
(
'#'
)
->
setIcon
(
'fa-bars'
)
->
setStyle
(
'display: none;'
)
->
addClass
(
'device-widgets-selector'
)
->
addSigil
(
'device-widgets-selector'
));
}
return
$crumbs
;
}
protected
function
buildHeaderPaneContent
(
ConpherenceThread
$conpherence
,
array
$policy_objects
)
{
assert_instances_of
(
$policy_objects
,
'PhabricatorPolicy'
);
$crumbs
=
$this
->
buildApplicationCrumbs
();
$data
=
$conpherence
->
getDisplayData
(
$this
->
getViewer
());
$crumbs
->
addCrumb
(
id
(
new
PHUICrumbView
())
->
setName
(
$data
[
'title'
])
->
setHref
(
$this
->
getApplicationURI
(
'update/'
.
$conpherence
->
getID
().
'/'
))
->
setWorkflow
(
true
));
return
hsprintf
(
'%s'
,
array
(
phutil_tag
(
'div'
,
array
(
'class'
=>
'header-loading-mask'
,
),
''
),
$crumbs
,
));
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Wed, Jun 18, 4:02 AM (2 d)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
225440
Default Alt Text
ConpherenceController.php (2 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment