Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F104792191
PhabricatorRepositoryDestructibleCodex.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
Wed, Mar 12, 10:31
Size
605 B
Mime Type
text/x-php
Expires
Fri, Mar 14, 10:31 (2 d)
Engine
blob
Format
Raw Data
Handle
24854305
Attached To
rPH Phabricator
PhabricatorRepositoryDestructibleCodex.php
View Options
<?php
final
class
PhabricatorRepositoryDestructibleCodex
extends
PhabricatorDestructibleCodex
{
public
function
getDestructionNotes
()
{
$repository
=
$this
->
getObject
();
$notes
=
array
();
if
(
$repository
->
hasLocalWorkingCopy
())
{
$notes
[]
=
pht
(
'Database records for repository "%s" were destroyed, but this '
.
'script does not remove working copies on disk. If you also want to '
.
'destroy the repository working copy, manually remove "%s".'
,
$repository
->
getDisplayName
(),
$repository
->
getLocalPath
());
}
return
$notes
;
}
}
Event Timeline
Log In to Comment