Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F540087
PhabricatorEmailSelfActionsSetting.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
891 B
Referenced Files
None
Subscribers
None
PhabricatorEmailSelfActionsSetting.php
View Options
<?php
final
class
PhabricatorEmailSelfActionsSetting
extends
PhabricatorSelectSetting
{
const
SETTINGKEY
=
'self-mail'
;
const
VALUE_SEND_SELF
=
'0'
;
const
VALUE_NO_SELF
=
'1'
;
public
function
getSettingName
()
{
return
pht
(
'Self Actions'
);
}
public
function
getSettingPanelKey
()
{
return
PhabricatorEmailDeliverySettingsPanel
::
PANELKEY
;
}
protected
function
getSettingOrder
()
{
return
200
;
}
protected
function
getControlInstructions
()
{
return
pht
(
'If you disable **Self Actions**, this server will not notify '
.
'you about actions you take.'
);
}
public
function
getSettingDefaultValue
()
{
return
self
::
VALUE_SEND_SELF
;
}
protected
function
getSelectOptions
()
{
return
array
(
self
::
VALUE_SEND_SELF
=>
pht
(
'Enable Self Action Mail'
),
self
::
VALUE_NO_SELF
=>
pht
(
'Disable Self Action Mail'
),
);
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Mon, May 12, 9:26 AM (2 d)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
120434
Default Alt Text
PhabricatorEmailSelfActionsSetting.php (891 B)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment