*
* 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 2 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, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
/**
\file htdocs/exports/index.php
\ingroup core
\brief Page accueil de la zone export
\version $Id$
*/
require_once("./pre.inc.php");
require_once(DOL_DOCUMENT_ROOT."/exports/export.class.php");
$langs->load("exports");
if (! $user->societe_id == 0)
accessforbidden();
$export=new Export($db);
$export->load_arrays($user);
/*
* View
*/
llxHeader('',$langs->trans("ExportsArea"));
print_fiche_titre($langs->trans("ExportsArea"));
print $langs->trans("FormatedExportDesc1").'
';
print $langs->trans("FormatedExportDesc2").' ';
print $langs->trans("FormatedExportDesc3").'
';
print '
';
print '
';
print '';
// Liste des formats d'exports disponibles
$var=true;
print '';
print '';
print '| '.$langs->trans("AvailableFormats").' | ';
print ''.$langs->trans("LibraryUsed").' | ';
print ''.$langs->trans("LibraryVersion").' | ';
print ' ';
include_once(DOL_DOCUMENT_ROOT.'/includes/modules/export/modules_export.php');
$model=new ModeleExports();
$liste=$model->liste_modeles($db);
foreach($liste as $key)
{
$var=!$var;
print '';
print '| '.$model->getDriverLabel($key).' | ';
print ''.$model->getLibLabel($key).' | ';
print ''.$model->getLibVersion($key).' | ';
print ' ';
}
print ' ';
print ' | ';
// Affiche les modules d'exports
print '';
print '';
print '| '.$langs->trans("Module").' | ';
print ''.$langs->trans("ExportableDatas").' | ';
//print ' | ';
print ' ';
$val=true;
if (sizeof($export->array_export_code))
{
foreach ($export->array_export_code as $key => $value)
{
$val=!$val;
print '| ';
print img_object($export->array_export_module[$key]->getName(),$export->array_export_module[$key]->picto).' ';
print $export->array_export_module[$key]->getName();
print ' | ';
$string=$langs->trans($export->array_export_label[$key]);
print ($string!=$export->array_export_label[$key]?$string:$export->array_export_label[$key]);
print ' | ';
// print '';
// print ''.img_picto($langs->trans("NewExport"),'filenew').'';
// print ' | ';
print ' ';
}
print ' | ';
}
else
{
print '| '.$langs->trans("NoExportableData").' | ';
}
print ' ';
print ' |
';
print '
';
$db->close();
llxFooter('$Date$ - $Revision$');
?>