Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F1013754
102.heraldcleanup.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
833 B
Referenced Files
None
Subscribers
None
102.heraldcleanup.php
View Options
<?php
echo
"Cleaning up old Herald rule applied rows...
\n
"
;
$table
=
new
HeraldRule
();
$table
->
openTransaction
();
$table
->
beginReadLocking
();
$rules
=
$table
->
loadAll
();
foreach
(
$rules
as
$key
=>
$rule
)
{
$first_policy
=
HeraldRepetitionPolicyConfig
::
toInt
(
HeraldRepetitionPolicyConfig
::
FIRST
);
if
(
$rule
->
getRepetitionPolicy
()
!=
$first_policy
)
{
unset
(
$rules
[
$key
]);
}
}
$conn_w
=
$table
->
establishConnection
(
'w'
);
$clause
=
''
;
if
(
$rules
)
{
$clause
=
qsprintf
(
$conn_w
,
'WHERE ruleID NOT IN (%Ld)'
,
mpull
(
$rules
,
'getID'
));
}
echo
"This may take a moment"
;
do
{
queryfx
(
$conn_w
,
'DELETE FROM %T %Q LIMIT 1000'
,
HeraldRule
::
TABLE_RULE_APPLIED
,
$clause
);
echo
"."
;
}
while
(
$conn_w
->
getAffectedRows
());
$table
->
endReadLocking
();
$table
->
saveTransaction
();
echo
"
\n
Done.
\n
"
;
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Thu, Jun 19, 6:46 PM (2 d)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
246591
Default Alt Text
102.heraldcleanup.php (833 B)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment