Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F93123173
PhabricatorConpherenceNotificationsSetting.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
Tue, Nov 26, 09:17
Size
1 KB
Mime Type
text/x-php
Expires
Thu, Nov 28, 09:17 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
22579626
Attached To
rPH Phabricator
PhabricatorConpherenceNotificationsSetting.php
View Options
<?php
final
class
PhabricatorConpherenceNotificationsSetting
extends
PhabricatorSelectSetting
{
const
SETTINGKEY
=
'conph-notifications'
;
const
VALUE_CONPHERENCE_EMAIL
=
'0'
;
const
VALUE_CONPHERENCE_NOTIFY
=
'1'
;
public
function
getSettingName
()
{
return
pht
(
'Conpherence Notifications'
);
}
public
function
getSettingPanelKey
()
{
return
PhabricatorConpherencePreferencesSettingsPanel
::
PANELKEY
;
}
protected
function
getControlInstructions
()
{
return
pht
(
'Choose the default notification behavior for Conpherence rooms.'
);
}
protected
function
isEnabledForViewer
(
PhabricatorUser
$viewer
)
{
return
PhabricatorApplication
::
isClassInstalledForViewer
(
'PhabricatorConpherenceApplication'
,
$viewer
);
}
public
function
getSettingDefaultValue
()
{
return
self
::
VALUE_CONPHERENCE_EMAIL
;
}
protected
function
getSelectOptions
()
{
return
self
::
getOptionsMap
();
}
public
static
function
getSettingLabel
(
$key
)
{
$labels
=
self
::
getOptionsMap
();
return
idx
(
$labels
,
$key
,
pht
(
'Unknown ("%s")'
,
$key
));
}
private
static
function
getOptionsMap
()
{
return
array
(
self
::
VALUE_CONPHERENCE_EMAIL
=>
pht
(
'Send Email'
),
self
::
VALUE_CONPHERENCE_NOTIFY
=>
pht
(
'Send Notifications'
),
);
}
}
Event Timeline
Log In to Comment