Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F97554093
ConpherenceController.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Sun, Jan 5, 05:34
Size
2 KB
Mime Type
text/x-php
Expires
Tue, Jan 7, 05:34 (2 d)
Engine
blob
Format
Raw Data
Handle
23424617
Attached To
rPH Phabricator
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
();
$crumbs
->
setBorder
(
true
);
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
,
));
}
}
Event Timeline
Log In to Comment