*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see .
*/
/**
* \file htdocs/exports/index.php
* \ingroup export
* \brief Home page of export wizard
*/
require_once '../main.inc.php';
require_once DOL_DOCUMENT_ROOT.'/exports/class/export.class.php';
// Load translation files required by the page
$langs->load("exports");
// Security check
$result=restrictedArea($user, 'export');
$export=new Export($db);
$export->load_arrays($user);
/*
* View
*/
$form=new Form($db);
llxHeader('', $langs->trans("ExportsArea"), 'EN:Module_Exports_En|FR:Module_Exports|ES:Módulo_Exportaciones');
print load_fiche_titre($langs->trans("ExportsArea"));
print $langs->trans("FormatedExportDesc1").'
';
print '
';
print '
';
print '
';
// List of available export formats
print ''; // You can use div-table-responsive-no-min if you dont need reserved height for your table
print '
';
print '';
print '| '.$langs->trans("AvailableFormats").' | ';
print ''.$langs->trans("LibraryShort").' | ';
print ''.$langs->trans("LibraryVersion").' | ';
print '
';
include_once DOL_DOCUMENT_ROOT.'/core/modules/export/modules_export.php';
$model=new ModeleExports($db);
$liste=$model->liste_modeles($db); // This is not a static method for exports because method load non static properties
foreach($liste as $key => $val)
{
if (preg_match('/__\(Disabled\)__/', $liste[$key]))
{
$liste[$key]=preg_replace('/__\(Disabled\)__/', '('.$langs->transnoentitiesnoconv("Disabled").')', $liste[$key]);
}
print '';
print '| '.img_picto_common($model->getDriverLabelForKey($key), $model->getPictoForKey($key)).' | ';
$text=$model->getDriverDescForKey($key);
$label=$liste[$key];
print ''.$form->textwithpicto($label, $text).' | ';
print ''.$model->getLibLabelForKey($key).' | ';
print ''.$model->getLibVersionForKey($key).' | ';
print '
';
}
print '
';
print '
';
// End of page
llxFooter();
$db->close();