Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F90513033
PhabricatorMetaMTAApplication.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 2, 08:58
Size
1 KB
Mime Type
text/x-php
Expires
Mon, Nov 4, 08:58 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
22090964
Attached To
rPH Phabricator
PhabricatorMetaMTAApplication.php
View Options
<?php
final
class
PhabricatorMetaMTAApplication
extends
PhabricatorApplication
{
public
function
getName
()
{
return
pht
(
'Mail'
);
}
public
function
getBaseURI
()
{
return
'/mail/'
;
}
public
function
getFontIcon
()
{
return
'fa-send'
;
}
public
function
getShortDescription
()
{
return
pht
(
'Send and Receive Mail'
);
}
public
function
getFlavorText
()
{
return
pht
(
'Every program attempts to expand until it can read mail.'
);
}
public
function
getApplicationGroup
()
{
return
self
::
GROUP_ADMIN
;
}
public
function
canUninstall
()
{
return
false
;
}
public
function
getTypeaheadURI
()
{
return
'/mail/'
;
}
public
function
getRoutes
()
{
return
array
(
'/mail/'
=>
array
(
'(query/(?P<queryKey>[^/]+)/)?'
=>
'PhabricatorMetaMTAMailListController'
,
'detail/(?P<id>[1-9]
\d
*)/'
=>
'PhabricatorMetaMTAMailViewController'
,
'sendgrid/'
=>
'PhabricatorMetaMTASendGridReceiveController'
,
'mailgun/'
=>
'PhabricatorMetaMTAMailgunReceiveController'
,
),
);
}
public
function
getTitleGlyph
()
{
return
'@'
;
}
}
Event Timeline
Log In to Comment