Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F93019169
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
Mon, Nov 25, 15:00
Size
5 KB
Mime Type
text/x-php
Expires
Wed, Nov 27, 15:00 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
22559213
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
();
$conpherence
=
$this
->
conpherence
;
// Local Links
if
(
$conpherence
)
{
$nav
->
addMenuItem
(
id
(
new
PHUIListItemView
())
->
setName
(
pht
(
'Joined Rooms'
))
->
setType
(
PHUIListItemView
::
TYPE_LINK
)
->
setHref
(
$this
->
getApplicationURI
()));
$nav
->
addMenuItem
(
id
(
new
PHUIListItemView
())
->
setName
(
pht
(
'Edit Room'
))
->
setType
(
PHUIListItemView
::
TYPE_LINK
)
->
setHref
(
$this
->
getApplicationURI
(
'update/'
.
$conpherence
->
getID
()).
'/'
)
->
setWorkflow
(
true
));
$nav
->
addMenuItem
(
id
(
new
PHUIListItemView
())
->
setName
(
pht
(
'Add Participants'
))
->
setType
(
PHUIListItemView
::
TYPE_LINK
)
->
setHref
(
'#'
)
->
addSigil
(
'conpherence-widget-adder'
)
->
setMetadata
(
array
(
'widget'
=>
'widgets-people'
)));
}
// Global Links
$nav
->
newLabel
(
pht
(
'Conpherence'
));
$nav
->
newLink
(
pht
(
'New Room'
),
$this
->
getApplicationURI
(
'new/'
));
$nav
->
newLink
(
pht
(
'Search Rooms'
),
$this
->
getApplicationURI
(
'search/'
));
return
$nav
;
}
protected
function
buildHeaderPaneContent
(
ConpherenceThread
$conpherence
)
{
$viewer
=
$this
->
getViewer
();
$header
=
null
;
$id
=
$conpherence
->
getID
();
if
(
$id
)
{
$data
=
$conpherence
->
getDisplayData
(
$this
->
getViewer
());
$header
=
id
(
new
PHUIHeaderView
())
->
setViewer
(
$viewer
)
->
setHeader
(
$data
[
'title'
])
->
setPolicyObject
(
$conpherence
)
->
setImage
(
$data
[
'image'
]);
if
(
strlen
(
$data
[
'topic'
]))
{
$topic
=
id
(
new
PHUITagView
())
->
setName
(
$data
[
'topic'
])
->
setColor
(
PHUITagView
::
COLOR_VIOLET
)
->
setType
(
PHUITagView
::
TYPE_SHADE
)
->
addClass
(
'conpherence-header-topic'
);
$header
->
addTag
(
$topic
);
}
$can_edit
=
PhabricatorPolicyFilter
::
hasCapability
(
$viewer
,
$conpherence
,
PhabricatorPolicyCapability
::
CAN_EDIT
);
if
(
$can_edit
)
{
$header
->
setImageURL
(
$this
->
getApplicationURI
(
"picture/{$id}/"
));
}
$participating
=
$conpherence
->
getParticipantIfExists
(
$viewer
->
getPHID
());
$header
->
addActionItem
(
id
(
new
PHUIIconCircleView
())
->
setHref
(
$this
->
getApplicationURI
(
'edit/'
.
$conpherence
->
getID
()).
'/'
)
->
setIcon
(
'fa-pencil'
)
->
addClass
(
'hide-on-device'
)
->
setColor
(
'violet'
)
->
setWorkflow
(
true
));
$header
->
addActionItem
(
id
(
new
PHUIIconCircleView
())
->
setHref
(
$this
->
getApplicationURI
(
"preferences/{$id}/"
))
->
setIcon
(
'fa-gear'
)
->
addClass
(
'hide-on-device'
)
->
setColor
(
'pink'
)
->
setWorkflow
(
true
));
$widget_key
=
PhabricatorConpherenceWidgetVisibleSetting
::
SETTINGKEY
;
$widget_view
=
(
bool
)
$viewer
->
getUserSetting
(
$widget_key
,
false
);
Javelin
::
initBehavior
(
'toggle-widget'
,
array
(
'show'
=>
(
int
)
$widget_view
,
'settingsURI'
=>
'/settings/adjust/?key='
.
$widget_key
,
));
$header
->
addActionItem
(
id
(
new
PHUIIconCircleView
())
->
addSigil
(
'conpherence-widget-toggle'
)
->
setIcon
(
'fa-group'
)
->
setHref
(
'#'
)
->
addClass
(
'conpherence-participant-toggle'
));
Javelin
::
initBehavior
(
'conpherence-search'
);
$header
->
addActionItem
(
id
(
new
PHUIIconCircleView
())
->
addSigil
(
'conpherence-search-toggle'
)
->
setIcon
(
'fa-search'
)
->
setHref
(
'#'
)
->
setColor
(
'green'
)
->
addClass
(
'conpherence-search-toggle'
));
if
(!
$participating
)
{
$action
=
ConpherenceUpdateActions
::
JOIN_ROOM
;
$uri
=
$this
->
getApplicationURI
(
"update/{$id}/"
);
$button
=
phutil_tag
(
'button'
,
array
(
'type'
=>
'SUBMIT'
,
'class'
=>
'button button-green mlr'
,
),
pht
(
'Join Room'
));
$hidden
=
phutil_tag
(
'input'
,
array
(
'type'
=>
'hidden'
,
'name'
=>
'action'
,
'value'
=>
ConpherenceUpdateActions
::
JOIN_ROOM
,
));
$form
=
phabricator_form
(
$viewer
,
array
(
'method'
=>
'POST'
,
'action'
=>
(
string
)
$uri
,
),
array
(
$hidden
,
$button
,
));
$header
->
addActionItem
(
$form
);
}
}
return
$header
;
}
public
function
buildSearchForm
()
{
$viewer
=
$this
->
getViewer
();
$conpherence
=
$this
->
conpherence
;
$name
=
$conpherence
->
getTitle
();
$bar
=
javelin_tag
(
'input'
,
array
(
'type'
=>
'text'
,
'id'
=>
'conpherence-search-input'
,
'name'
=>
'fulltext'
,
'class'
=>
'conpherence-search-input'
,
'sigil'
=>
'conpherence-search-input'
,
'placeholder'
=>
pht
(
'Search %s...'
,
$name
),
));
$id
=
$conpherence
->
getID
();
$form
=
phabricator_form
(
$viewer
,
array
(
'method'
=>
'POST'
,
'action'
=>
'/conpherence/threadsearch/'
.
$id
.
'/'
,
'sigil'
=>
'conpherence-search-form'
,
'class'
=>
'conpherence-search-form'
,
'id'
=>
'conpherence-search-form'
,
),
array
(
$bar
,
));
$form_view
=
phutil_tag
(
'div'
,
array
(
'class'
=>
'conpherence-search-form-view'
,
),
$form
);
$results
=
phutil_tag
(
'div'
,
array
(
'id'
=>
'conpherence-search-results'
,
'class'
=>
'conpherence-search-results'
,
));
$view
=
phutil_tag
(
'div'
,
array
(
'class'
=>
'conpherence-search-window'
,
),
array
(
$form_view
,
$results
,
));
return
$view
;
}
}
Event Timeline
Log In to Comment