Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F93094406
PhabricatorEmailDeliverySettingsPanel.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, 04:23
Size
593 B
Mime Type
text/x-php
Expires
Thu, Nov 28, 04:23 (2 d)
Engine
blob
Format
Raw Data
Handle
22574533
Attached To
rPH Phabricator
PhabricatorEmailDeliverySettingsPanel.php
View Options
<?php
final
class
PhabricatorEmailDeliverySettingsPanel
extends
PhabricatorEditEngineSettingsPanel
{
const
PANELKEY
=
'emaildelivery'
;
public
function
getPanelName
()
{
return
pht
(
'Email Delivery'
);
}
public
function
getPanelMenuIcon
()
{
return
'fa-envelope-o'
;
}
public
function
getPanelGroupKey
()
{
return
PhabricatorSettingsEmailPanelGroup
::
PANELGROUPKEY
;
}
public
function
isManagementPanel
()
{
if
(
$this
->
getUser
()->
getIsMailingList
())
{
return
true
;
}
return
false
;
}
public
function
isTemplatePanel
()
{
return
true
;
}
}
Event Timeline
Log In to Comment