Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F2895188
PhabricatorFactManagementDestroyWorkflow.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Award Token
Flag For Later
Advanced/Developer...
View Handle
View Hovercard
Size
1 KB
Referenced Files
None
Subscribers
None
PhabricatorFactManagementDestroyWorkflow.php
View Options
<?php
final
class
PhabricatorFactManagementDestroyWorkflow
extends
PhabricatorFactManagementWorkflow
{
protected
function
didConstruct
(
)
{
$this
->
setName
(
'destroy'
)
->
setSynopsis
(
pht
(
'Destroy all facts.'
)
)
->
setArguments
(
array
(
)
)
;
}
public
function
execute
(
PhutilArgumentParser
$args
)
{
$console
=
PhutilConsole
::
getConsole
(
)
;
$question
=
pht
(
'Really destroy all facts? They will need to be rebuilt through '
.
'analysis, which may take some time.'
)
;
$ok
=
$console
->
confirm
(
$question
,
$default
=
false
)
;
if
(
!
$ok
)
{
return
1
;
}
$tables
=
array
(
)
;
$tables
[
]
=
new
PhabricatorFactCursor
(
)
;
$tables
[
]
=
new
PhabricatorFactIntDatapoint
(
)
;
$tables
[
]
=
new
PhabricatorFactObjectDimension
(
)
;
$tables
[
]
=
new
PhabricatorFactKeyDimension
(
)
;
foreach
(
$tables
as
$table
)
{
$conn
=
$table
->
establishConnection
(
'w'
)
;
$name
=
$table
->
getTableName
(
)
;
$console
->
writeOut
(
"%s\n"
,
pht
(
"Destroying table '%s'..."
,
$name
)
)
;
queryfx
(
$conn
,
'TRUNCATE TABLE %T'
,
$name
)
;
}
$console
->
writeOut
(
"%s\n"
,
pht
(
'Done.'
)
)
;
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Jan 19 2025, 21:04 (6 w, 1 d ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
1128736
Default Alt Text
PhabricatorFactManagementDestroyWorkflow.php (1 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment