Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F102098974
PhabricatorConduitConfigOptions.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
Mon, Feb 17, 02:37
Size
854 B
Mime Type
text/x-php
Expires
Wed, Feb 19, 02:37 (2 d)
Engine
blob
Format
Raw Data
Handle
24281561
Attached To
rPH Phabricator
PhabricatorConduitConfigOptions.php
View Options
<?php
final
class
PhabricatorConduitConfigOptions
extends
PhabricatorApplicationConfigOptions
{
public
function
getName
()
{
return
pht
(
"Conduit"
);
}
public
function
getDescription
()
{
return
pht
(
"Configure conduit."
);
}
public
function
getOptions
()
{
return
array
(
$this
->
newOption
(
"conduit.servers"
,
"list<string>"
,
array
())
->
setLocked
(
true
)
->
setSummary
(
pht
(
"Servers that conduit can connect to."
))
->
setDescription
(
pht
(
"Set an array of servers where conduit can connect to. This is "
.
"an advanced option. Don't touch this unless you know what you "
.
"are doing."
))
->
addExample
(
'["http://phabricator2.example.com/", '
.
'"http://phabricator3.example.com/]"'
,
pht
(
'Valid Setting'
)),
);
}
}
Event Timeline
Log In to Comment