????JFIF??x?x????'
Server IP : 104.21.112.1 / Your IP : 216.73.216.145 Web Server : LiteSpeed System : Linux premium151.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64 User : tempvsty ( 647) PHP Version : 8.0.30 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/tempvsty/pontiacques.org/wp-content/plugins/give/src/Log/Migrations/ |
Upload File : |
<?php declare(strict_types=1); namespace Give\Log\Migrations; use Give\Framework\Database\DB; use Give\Framework\Migrations\Contracts\Migration; use Give\Log\Log; /** * Removes logs that contain sensitive information. * * @since 2.20.0 */ class RemoveSensitiveLogs extends Migration { /** * @inheritdoc */ public static function id(): string { return 'remove_sensitive_logs'; } /** * @inheritdoc */ public static function title(): string { return 'Remove logs wth sensitive information'; } /** * @inheritdoc */ public static function timestamp() { return strtotime('2022-05-04'); } /** * @inheritdoc */ public function run() { $tableName = DB::prefix('give_log'); $redactions = implode('|', Log::getRedactionList()); DB::query(" DELETE FROM $tableName WHERE data REGEXP '$redactions' "); } }