Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F91072403
PhabricatorRepositoryConfigOptions.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, Nov 7, 14:17
Size
844 B
Mime Type
text/x-php
Expires
Sat, Nov 9, 14:17 (1 d, 21 h)
Engine
blob
Format
Raw Data
Handle
22190707
Attached To
rPH Phabricator
PhabricatorRepositoryConfigOptions.php
View Options
<?php
final
class
PhabricatorRepositoryConfigOptions
extends
PhabricatorApplicationConfigOptions
{
public
function
getName
()
{
return
pht
(
'Repositories'
);
}
public
function
getDescription
()
{
return
pht
(
'Configure repositories.'
);
}
public
function
getOptions
()
{
return
array
(
$this
->
newOption
(
'repository.default-local-path'
,
'string'
,
'/var/repo/'
)
->
setLocked
(
true
)
->
setSummary
(
pht
(
'Default location to store local copies of repositories.'
))
->
setDescription
(
pht
(
'The default location in which to store working copies and other '
.
'data about repositories. Phabricator will control and manage '
.
'data here, so you should **not** choose an existing directory '
.
'full of data you care about.'
)),
);
}
}
Event Timeline
Log In to Comment