%PDF- %PDF-
| Direktori : /home1/lightco1/www/administrator/components/com_akeeba/BackupEngine/Dump/Native/ |
| Current File : //home1/lightco1/www/administrator/components/com_akeeba/BackupEngine/Dump/Native/Postgresql.php |
<?php
/**
* Akeeba Engine
* The modular PHP5 site backup engine
*
* @copyright Copyright (c)2006-2017 Nicholas K. Dionysopoulos / Akeeba Ltd
* @license GNU GPL version 3 or, at your option, any later version
* @package akeebaengine
*
*/
namespace Akeeba\Engine\Dump\Native;
// Protection against direct access
defined('AKEEBAENGINE') or die();
use Akeeba\Engine\Dump\Reverse\Postgresql as ReverseDumpEngine;
use Akeeba\Engine\Factory;
use Psr\Log\LogLevel;
/**
* Dump class for the "None" database driver (ie no database used by the application)
*
*/
class Postgresql extends ReverseDumpEngine
{
public function __construct()
{
parent::__construct();
Factory::getLog()->log(LogLevel::INFO, "There is no native engine for backing up PostgreSQL databases. Using the Reverse Engineering class instead.");
}
}