File Manager

Current Directory: /home/astoriaah/www/administrator/components/com_akeeba/BackupEngine/Filter
Viewing File: /home/astoriaah/www/administrator/components/com_akeeba/BackupEngine/Filter/Regextabledata.php
<?php /** * Akeeba Engine * * @package akeebaengine * @copyright Copyright (c)2006-2022 Nicholas K. Dionysopoulos / Akeeba Ltd * @license GNU General Public License version 3, or later */ namespace Akeeba\Engine\Filter; defined('AKEEBAENGINE') || die(); /** * Database table records exclusion filter * * This is simple stuff. If a table's on the list, it will backup just its structure, not * its contents. Fair and square... */ class Regextabledata extends Base { public function __construct() { $this->object = 'dbobject'; $this->subtype = 'content'; $this->method = 'regex'; if (empty($this->filter_name)) { $this->filter_name = strtolower(basename(__FILE__, '.php')); } parent::__construct(); } }