| Current Path : /home/sunflowe/www2/j15/administrator/components/com_akeeba/akeeba/filters/ |
| Current File : /home/sunflowe/www2/j15/administrator/components/com_akeeba/akeeba/filters/tables.php |
<?php
/**
* Akeeba Engine
* The modular PHP5 site backup engine
* @copyright Copyright (c)2009-2012 Nicholas K. Dionysopoulos
* @license GNU GPL version 3 or, at your option, any later version
* @package akeebaengine
* @version $Id: tables.php 596 2011-05-12 08:26:18Z nikosdion $
*/
// Protection against direct access
defined('AKEEBAENGINE') or die('Restricted access');
/**
* Database table exclusion filter
*/
class AEFilterTables extends AEAbstractFilter
{
function __construct()
{
$this->object = 'dbobject';
$this->subtype = 'all';
$this->method = 'direct';
if(AEFactory::getKettenrad()->getTag() == 'restorepoint') $this->enabled = false;
if(empty($this->filter_name)) $this->filter_name = strtolower(basename(__FILE__,'.php'));
parent::__construct();
}
}