Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F101921388
PhabricatorExtendingPhabricatorConfigOptions.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, Feb 15, 04:25
Size
2 KB
Mime Type
text/x-php
Expires
Mon, Feb 17, 04:25 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
24246064
Attached To
rPH Phabricator
PhabricatorExtendingPhabricatorConfigOptions.php
View Options
<?php
final
class
PhabricatorExtendingPhabricatorConfigOptions
extends
PhabricatorApplicationConfigOptions
{
public
function
getName
()
{
return
pht
(
"Extending Phabricator"
);
}
public
function
getDescription
()
{
return
pht
(
"Make Phabricator even cooler!"
);
}
public
function
getOptions
()
{
return
array
(
$this
->
newOption
(
'load-libraries'
,
'list<string>'
,
null
)
->
setSummary
(
pht
(
"Paths to additional phutil libraries to load."
))
->
addExample
(
'/srv/our-libs/sekrit-phutil'
,
pht
(
'Valid Setting'
)),
$this
->
newOption
(
'events.listeners'
,
'list<string>'
,
null
)
->
setSummary
(
pht
(
"Listeners receive callbacks when interesting things occur."
))
->
setDescription
(
pht
(
"You can respond to various application events by installing "
.
"listeners, which will receive callbacks when interesting things "
.
"occur. Specify a list of classes which extend "
.
"PhabricatorEventListener here."
))
->
addExample
(
'MyEventListener'
,
pht
(
'Valid Setting'
)),
$this
->
newOption
(
'celerity.resource-path'
,
'string'
,
'__celerity_resource_map__.php'
)
->
setSummary
(
pht
(
"Custom celerity resource map."
))
->
setDescription
(
pht
(
"Path to custom celerity resource map relative to "
.
"'phabricator/src'. See also `scripts/celerity_mapper.php`."
))
->
addExample
(
'local/my_celerity_map.php'
,
pht
(
'Valid Setting'
)),
$this
->
newOption
(
'aphront.default-application-configuration-class'
,
'class'
,
'AphrontDefaultApplicationConfiguration'
)
->
setBaseClass
(
'AphrontApplicationConfiguration'
)
// TODO: This could probably use some better documentation.
->
setDescription
(
pht
(
"Application configuration class."
)),
$this
->
newOption
(
'controller.oauth-registration'
,
'class'
,
'PhabricatorOAuthDefaultRegistrationController'
)
->
setBaseClass
(
'PhabricatorOAuthRegistrationController'
)
->
setDescription
(
pht
(
"OAuth registration controller."
)),
);
}
}
Event Timeline
Log In to Comment