*
* 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, see .
*/
/**
* \file htdocs/exports/index.php
* \ingroup export
* \brief Home page of export tools
* \version $Id: index.php,v 1.31 2011/07/31 23:50:55 eldy Exp $
*/
require_once("../main.inc.php");
require_once(DOL_DOCUMENT_ROOT."/exports/class/export.class.php");
$langs->load("exports");
if (! $user->societe_id == 0)
accessforbidden();
$export=new Export($db);
$export->load_arrays($user);
/*
* View
*/
$html=new Form($db);
llxHeader('',$langs->trans("ExportsArea"),'EN:Module_Exports_En|FR:Module_Exports|ES:Módulo_Exportaciones');
print_fiche_titre($langs->trans("ExportsArea"));
print $langs->trans("FormatedExportDesc1").'
';
print $langs->trans("FormatedExportDesc2").' ';
print $langs->trans("FormatedExportDesc3").'
';
print '
';
print '
';
print '';
// List of available export format
$var=true;
print '';
print '';
print '| '.$langs->trans("AvailableFormats").' | ';
print ''.$langs->trans("LibraryShort").' | ';
print ''.$langs->trans("LibraryVersion").' | ';
print ' ';
include_once(DOL_DOCUMENT_ROOT.'/includes/modules/export/modules_export.php');
$model=new ModeleExports();
$liste=$model->liste_modeles($db);
$var=true;
foreach($liste as $key => $val)
{
$var=!$var;
print '';
print '| '.img_picto_common($model->getDriverLabel($key),$model->getPicto($key)).' | ';
$text=$model->getDriverDesc($key);
print ''.$html->textwithpicto($model->getDriverLabel($key),$text).' | ';
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 ' ';
$var=true;
if (sizeof($export->array_export_code))
{
foreach ($export->array_export_code as $key => $value)
{
$var=!$var;
print '| ';
//print img_object($export->array_export_module[$key]->getName(),$export->array_export_module[$key]->picto).' ';
print $export->array_export_module[$key]->getName();
print ' | ';
print img_object($export->array_export_module[$key]->getName(),$export->array_export_icon[$key]).' ';
$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 ' ';
}
}
else
{
print '| '.$langs->trans("NoExportableData").' | ';
}
print ' ';
print ' ';
print '';
if (sizeof($export->array_export_code))
{
if ($user->rights->export->creer)
{
print ''.$langs->trans("NewExport").'';
}
else
{
print ''.$langs->trans("NewExport").'';
}
/*
print '';
*/
}
print '';
print ' |
';
print '
';
$db->close();
llxFooter('$Date: 2011/07/31 23:50:55 $ - $Revision: 1.31 $');
?>