Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F117310051
PhabricatorPhrictionConfigOptions.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
Thu, Jun 12, 21:08
Size
744 B
Mime Type
text/x-php
Expires
Sat, Jun 14, 21:08 (2 d)
Engine
blob
Format
Raw Data
Handle
26746885
Attached To
rPH Phabricator
PhabricatorPhrictionConfigOptions.php
View Options
<?php
final
class
PhabricatorPhrictionConfigOptions
extends
PhabricatorApplicationConfigOptions
{
public
function
getName
()
{
return
pht
(
"Phriction"
);
}
public
function
getDescription
()
{
return
pht
(
"Options related to Phriction (wiki)."
);
}
public
function
getOptions
()
{
return
array
(
$this
->
newOption
(
'phriction.enabled'
,
'bool'
,
true
)
->
setBoolOptions
(
array
(
pht
(
"Enable Phriction"
),
pht
(
"Disable Phriction"
),
))
->
setDescription
(
pht
(
"Enable or disable Phriction."
)),
$this
->
newOption
(
'metamta.phriction.subject-prefix'
,
'string'
,
'[Phriction]'
)
->
setDescription
(
pht
(
"Subject prefix for Phriction email."
)),
);
}
}
Event Timeline
Log In to Comment