*
* 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.
*
* $Id$
* $Source$
*/
/**
\file htdocs/exports/index.php
\ingroup core
\brief Page accueil de la zone export
\version $Revision$
*/
require_once("./pre.inc.php");
require_once(DOL_DOCUMENT_ROOT."/exports/export.class.php");
$langs->load("exports");
$user->getrights();
if (! $user->societe_id == 0)
accessforbidden();
$export=new Export($db);
$export->load_arrays($user);
llxHeader('',$langs->trans("ExportsArea"));
print_fiche_titre($langs->trans("ExportsArea"));
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 ''.img_picto($langs->trans("NewExport"),'filenew').'';
print ' | ';
}
}
else
{
print '| '.$langs->trans("NoExportableData").' | ';
}
print ' ';
// Affiche les profils d'exports
$sql = "SELECT rowid, label, public, fk_user, ".$db->pdate("datec");
$sql .= " FROM ".MAIN_DB_PREFIX."export as e";
$result=$db->query($sql);
if ($result)
{
print ' ';
print '';
print '';
print '| '.$langs->trans("ExportProfiles").' | ';
print ''.$langs->trans("Public").' | ';
$num = $db->num_rows($result);
if ($num > 0)
{
$var = true;
$i = 0;
while ($i < $num )
{
$obj = $db->fetch_object($result);
$var=!$var;
print "";
print '| '.$obj->label.' | ';
print ''.$yn($obj->public).' | ';
print ' ';
$i++;
}
}
print " ";
}
print ' |
';
print '
';
$db->close();
llxFooter('$Date$ - $Revision$');
?>