File Manager

Current Directory: /home/astoriaah/www/administrator/components/com_akeeba/BackupEngine/Filter
Viewing File: /home/astoriaah/www/administrator/components/com_akeeba/BackupEngine/Filter/Skipfiles.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(); /** * Directory contents (files) exclusion filter */ class Skipfiles extends Base { public function __construct() { $this->object = 'dir'; $this->subtype = 'content'; $this->method = 'direct'; if (empty($this->filter_name)) { $this->filter_name = strtolower(basename(__FILE__, '.php')); } parent::__construct(); } }