<?php
/**
* Test code for Export class. It should not be used in production.
*
* @author Olivier G <hide@address.com>
* @version 1.0
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
* @link http://gemibloo.fr
*/
require_once(dirname(__FILE__).'/../core/class/class.PluginLoader.php');
try{
$export = new PluginLoader(EXPORT_PLUGINS_DIR);
$export->fExecutePlugin('fExport');
}catch (Exception $e) {
echo $e->getCode().': '.$e->getMessage();
}
?>