Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F93606563
PhabricatorSettingsPanelConpherencePreferences.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
Sat, Nov 30, 02:59
Size
2 KB
Mime Type
text/x-php
Expires
Mon, Dec 2, 02:59 (2 d)
Engine
blob
Format
Raw Data
Handle
22674899
Attached To
rPH Phabricator
PhabricatorSettingsPanelConpherencePreferences.php
View Options
<?php
final
class
PhabricatorSettingsPanelConpherencePreferences
extends
PhabricatorSettingsPanel
{
public
function
isEnabled
()
{
return
PhabricatorApplication
::
isClassInstalled
(
'PhabricatorApplicationConpherence'
);
}
public
function
getPanelKey
()
{
return
'conpherence'
;
}
public
function
getPanelName
()
{
return
pht
(
'Conpherence Preferences'
);
}
public
function
getPanelGroup
()
{
return
pht
(
'Application Settings'
);
}
public
function
processRequest
(
AphrontRequest
$request
)
{
$user
=
$request
->
getUser
();
$preferences
=
$user
->
loadPreferences
();
$pref
=
PhabricatorUserPreferences
::
PREFERENCE_CONPH_NOTIFICATIONS
;
if
(
$request
->
isFormPost
())
{
$notifications
=
$request
->
getInt
(
$pref
);
$preferences
->
setPreference
(
$pref
,
$notifications
);
$preferences
->
save
();
return
id
(
new
AphrontRedirectResponse
())
->
setURI
(
$this
->
getPanelURI
(
'?saved=true'
));
}
$form
=
id
(
new
AphrontFormView
())
->
setUser
(
$user
)
->
appendChild
(
id
(
new
AphrontFormSelectControl
())
->
setLabel
(
pht
(
'Conpherence Notifications'
))
->
setName
(
$pref
)
->
setValue
(
$preferences
->
getPreference
(
$pref
))
->
setOptions
(
array
(
ConpherenceSettings
::
EMAIL_ALWAYS
=>
pht
(
'Email Always'
),
ConpherenceSettings
::
NOTIFICATIONS_ONLY
=>
pht
(
'Notifications Only'
),
))
->
setCaption
(
pht
(
'Should Conpherence send emails for updates or '
.
'notifications only? This global setting can be overridden '
.
'on a per-thread basis within Conpherence.'
)))
->
appendChild
(
id
(
new
AphrontFormSubmitControl
())
->
setValue
(
pht
(
'Save Preferences'
)));
$error_view
=
null
;
if
(
$request
->
getBool
(
'saved'
))
{
$error_view
=
id
(
new
AphrontErrorView
())
->
appendChild
(
pht
(
'Preferences Saved'
))
->
setSeverity
(
AphrontErrorView
::
SEVERITY_NOTICE
);
}
$form_box
=
id
(
new
PHUIObjectBoxView
())
->
setHeaderText
(
pht
(
'Conpherence Preferences'
))
->
setForm
(
$form
);
if
(
$error_view
)
{
$form_box
->
setErrorView
(
$error_view
);
}
return
array
(
$form_box
,
);
}
}
Event Timeline
Log In to Comment