I format my code as to be easily readible ie (function and brackets on seperate lines), plus the comments...
However if you inline the code and IF() calls, remove comments, and disregard the variables/replace text.. the core script works out to about 9-10 lines.
The starting PHP, and ending PHP are just routine cron sanity check, and then logging if enabled... in cronjob setting.
PHP Code:
<?php
error_reporting(E_ALL & ~E_NOTICE);
if (!is_object($DB_site)) { exit; }
// Max Sigs
$maxSigs = 3;
$maxSpoilers = 2;
$maxQuotes = 1;
// Message To Display
$message = "Your signature has been removed due to signature violation.
Signatures are limited to a maximum of $maxSigs images, a maximum
of $maxSpoilers spoilers, and a maximum of $maxQuotes quote tags.
Please remake your signature with the limit in mind.
Note: This has been done via auto Signature Removal.
";
// Signature Query
$signatures = $DB_site->query("SELECT userid, signature FROM usertextfield WHERE signature <> ''");
// Loop Signatures
$total = 0;
while ($signature = $DB_site->fetch_array($signatures))
{
$sig = strtolower($signature['signature']);
if (
substr_count($sig,'[img') > $maxSigs OR
substr_count($sig,'[spoiler') > $maxSpoilers OR
substr_count($sig,'[quote') > $maxQuotes
)
{
$total++;
$DB_site->query(
"UPDATE " . TABLE_PREFIX . "usertextfield " .
"SET signature = '" . $message . "' " .
"WHERE userid = '". $signature['userid']. "'"
);
}
}
// Finished
if ($total)
{
log_cron_action("[#$total] Signatures with violations have been removed.", $nextitem);
}
else
{
log_cron_action('No Signatures found in violation.', $nextitem);
}
?>
PS. I never said it "had" all the functionality of the Thread Authors script..
I just said I wouldn't install an entirely new hack over my simple crontab I have now..