forked from Wavyzz/dolibarr
Fix: SpaceAfterOpenBracket, SpaceAfterCloseBracket, SpaceBeforeCloseBracket, SpaceBeforeOpenBracket
269 lines
9.4 KiB
PHP
269 lines
9.4 KiB
PHP
<?php
|
|
/* Copyright (C) 2005-2009 Regis Houssin <regis@dolibarr.fr>
|
|
* Copyright (C) 2007 Rodolphe Quiedeville <rodolphe@quiedeville.org>
|
|
* Copyright (C) 2010 Destailleur Laurent <eldy@users.sourceforge.net>
|
|
*
|
|
* 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 <http://www.gnu.org/licenses/>.
|
|
* or see http://www.gnu.org/
|
|
*/
|
|
|
|
/**
|
|
* \file htdocs/product/traduction.php
|
|
* \ingroup product
|
|
* \brief Page de traduction des produits
|
|
*/
|
|
|
|
require("../main.inc.php");
|
|
require_once(DOL_DOCUMENT_ROOT."/lib/product.lib.php");
|
|
require_once(DOL_DOCUMENT_ROOT."/lib/functions2.lib.php");
|
|
require_once(DOL_DOCUMENT_ROOT."/product/class/product.class.php");
|
|
require_once(DOL_DOCUMENT_ROOT."/core/class/html.formadmin.class.php");
|
|
|
|
$langs->load("products");
|
|
$langs->load("languages");
|
|
|
|
// Security check
|
|
if (isset($_GET["id"]) || isset($_GET["ref"]))
|
|
{
|
|
$id = isset($_GET["id"])?$_GET["id"]:(isset($_GET["ref"])?$_GET["ref"]:'');
|
|
}
|
|
$fieldid = isset($_GET["ref"])?'ref':'rowid';
|
|
if ($user->societe_id) $socid=$user->societe_id;
|
|
$result=restrictedArea($user,'produit|service',$id,'product','','',$fieldid);
|
|
|
|
|
|
/*
|
|
* Actions
|
|
*/
|
|
|
|
// retour a l'affichage des traduction si annulation
|
|
if ($_POST["cancel"] == $langs->trans("Cancel"))
|
|
{
|
|
$_GET["action"] = '';
|
|
}
|
|
|
|
// Validation de l'ajout
|
|
if ($_POST["action"] == 'vadd' &&
|
|
$_POST["cancel"] != $langs->trans("Cancel") &&
|
|
($user->rights->produit->creer || $user->rights->service->creer))
|
|
{
|
|
$product = new Product($db);
|
|
$product->fetch($_POST["id"]);
|
|
$current_lang = $langs->getDefaultLang();
|
|
|
|
// update de l'objet
|
|
if ( $_POST["lang"] == $current_lang )
|
|
{
|
|
$product->libelle = $_POST["libelle"];
|
|
$product->description = dol_htmlcleanlastbr($_POST["desc"]);
|
|
$product->note = dol_htmlcleanlastbr($_POST["note"]);
|
|
}
|
|
else
|
|
{
|
|
$product->multilangs[$_POST["lang"]]["libelle"] = $_POST["libelle"];
|
|
$product->multilangs[$_POST["lang"]]["description"] = dol_htmlcleanlastbr($_POST["desc"]);
|
|
$product->multilangs[$_POST["lang"]]["note"] = dol_htmlcleanlastbr($_POST["note"]);
|
|
}
|
|
|
|
// sauvegarde en base
|
|
if ( $product->setMultiLangs() > 0 )
|
|
{
|
|
$_GET["action"] = '';
|
|
}
|
|
else
|
|
{
|
|
$_GET["action"] = 'add';
|
|
$mesg = $product->mesg_error;
|
|
}
|
|
}
|
|
|
|
// Validation de l'edition
|
|
if ($_POST["action"] == 'vedit' &&
|
|
$_POST["cancel"] != $langs->trans("Cancel") &&
|
|
($user->rights->produit->creer || $user->rights->service->creer))
|
|
{
|
|
$product = new Product($db);
|
|
$product->fetch($_POST["id"]);
|
|
$current_lang = $langs->getDefaultLang();
|
|
|
|
foreach ( $product->multilangs as $key => $value ) // enregistrement des nouvelles valeurs dans l'objet
|
|
{
|
|
if ( $key == $current_lang )
|
|
{
|
|
$product->libelle = $_POST["libelle-".$key];
|
|
$product->description = dol_htmlcleanlastbr($_POST["desc-".$key]);
|
|
$product->note = dol_htmlcleanlastbr($_POST["note-".$key]);
|
|
}
|
|
else
|
|
{
|
|
$product->multilangs[$key]["libelle"] = $_POST["libelle-".$key];
|
|
$product->multilangs[$key]["description"] = dol_htmlcleanlastbr($_POST["desc-".$key]);
|
|
$product->multilangs[$key]["note"] = dol_htmlcleanlastbr($_POST["note-".$key]);
|
|
}
|
|
}
|
|
|
|
if ( $product->setMultiLangs() > 0 )
|
|
{
|
|
$_GET["action"] = '';
|
|
}
|
|
else
|
|
{
|
|
$_GET["action"] = 'edit';
|
|
$mesg = $product->mesg_error;
|
|
}
|
|
}
|
|
|
|
$product = new Product($db);
|
|
if ($_GET["ref"]) $result = $product->fetch('',$_GET["ref"]);
|
|
if ($_GET["id"]) $result = $product->fetch($_GET["id"]);
|
|
|
|
|
|
/*
|
|
* View
|
|
*/
|
|
|
|
llxHeader("","",$langs->trans("Translation"));
|
|
|
|
$html = new Form($db);
|
|
$formadmin=new FormAdmin($db);
|
|
|
|
$head=product_prepare_head($product, $user);
|
|
$titre=$langs->trans("CardProduct".$product->type);
|
|
$picto=($product->type==1?'service':'product');
|
|
dol_fiche_head($head, 'translation', $titre, 0, $picto);
|
|
|
|
if ($mesg) print '<div class="error">'.$mesg.'</div>';
|
|
|
|
print '<table class="border" width="100%">';
|
|
|
|
// Reference
|
|
print '<tr>';
|
|
print '<td width="15%">'.$langs->trans("Ref").'</td><td colspan="2">';
|
|
print $html->showrefnav($product,'ref','',1,'ref');
|
|
print '</td>';
|
|
print '</tr>';
|
|
print '</table>';
|
|
|
|
if ($_GET["action"] == 'edit')
|
|
{
|
|
print '<form action="" method="POST">';
|
|
print '<input type="hidden" name="token" value="'.$_SESSION['newtoken'].'">';
|
|
print '<input type="hidden" name="action" value="vedit">';
|
|
print '<input type="hidden" name="id" value="'.$_GET["id"].'">';
|
|
|
|
foreach ( $product->multilangs as $key => $value)
|
|
{
|
|
print "<br><b><u>".$langs->trans('Language_'.$key)." :</u></b><br>";
|
|
print '<table class="border" width="100%">';
|
|
print '<tr><td valign="top" width="15%" class="fieldrequired">'.$langs->trans('Label').'</td><td><input name="libelle-'.$key.'" size="40" value="'.$product->multilangs[$key]["libelle"].'"></td></tr>';
|
|
print '<tr><td valign="top" width="15%">'.$langs->trans('Description').'</td><td>';
|
|
require_once(DOL_DOCUMENT_ROOT."/lib/doleditor.class.php");
|
|
$doleditor=new DolEditor('desc-'.$key.'',$product->multilangs[$key]["description"],'',160,'dolibarr_notes','',false,true,$conf->fckeditor->enabled && $conf->global->FCKEDITOR_ENABLE_PRODUCTDESC,3,80);
|
|
$doleditor->Create();
|
|
print '</td></tr>';
|
|
print '<tr><td valign="top" width="15%">'.$langs->trans('Note').'</td><td>';
|
|
require_once(DOL_DOCUMENT_ROOT."/lib/doleditor.class.php");
|
|
$doleditor=new DolEditor('note-'.$key.'',$product->multilangs[$key]["note"],'',160,'dolibarr_notes','',false,true,$conf->fckeditor->enabled && $conf->global->FCKEDITOR_ENABLE_PRODUCTDESC,3,80);
|
|
$doleditor->Create();
|
|
print '</td></tr>';
|
|
print '</tr>';
|
|
print '</table>';
|
|
}
|
|
|
|
print '<br><center>';
|
|
print '<input type="submit" class="button" value="'.$langs->trans("Save").'"> ';
|
|
print '<input type="submit" class="button" name="cancel" value="'.$langs->trans("Cancel").'"></center>';
|
|
|
|
print '</form>';
|
|
|
|
}
|
|
else
|
|
{
|
|
$cnt_trans = 0;
|
|
foreach ( $product->multilangs as $key => $value)
|
|
{
|
|
$cnt_trans++;
|
|
$s=picto_from_langcode($key);
|
|
print "<br>".($s?$s.' ':'')." <b>".$langs->trans('Language_'.$key).":</b><br>";
|
|
print '<table class="border" width="100%">';
|
|
print '<tr><td width="15%">'.$langs->trans('Label').'</td><td>'.$product->multilangs[$key]["libelle"].'</td></tr>';
|
|
print '<tr><td width="15%">'.$langs->trans('Description').'</td><td>'.$product->multilangs[$key]["description"].'</td></tr>';
|
|
print '<tr><td width="15%">'.$langs->trans('Note').'</td><td>'.$product->multilangs[$key]["note"].'</td></tr>';
|
|
print '</table>';
|
|
}
|
|
if (!$cnt_trans ) print '<br>'. $langs->trans('NoTranslation');
|
|
}
|
|
|
|
print "</div>\n";
|
|
|
|
|
|
/* ************************************************************************** */
|
|
/* */
|
|
/* Barre d'action */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
print "\n<div class=\"tabsAction\">\n";
|
|
|
|
if ($_GET["action"] == '')
|
|
if ($user->rights->produit->creer || $user->rights->service->creer)
|
|
{
|
|
print '<a class="butAction" href="'.DOL_URL_ROOT.'/product/traduction.php?action=add&id='.$product->id.'">'.$langs->trans("Add").'</a>';
|
|
print '<a class="butAction" href="'.DOL_URL_ROOT.'/product/traduction.php?action=edit&id='.$product->id.'">'.$langs->trans("Update").'</a>';
|
|
}
|
|
|
|
print "\n</div>\n";
|
|
|
|
|
|
/*
|
|
* Form to add a new translation
|
|
*/
|
|
|
|
if ($_GET["action"] == 'add' && ($user->rights->produit->creer || $user->rights->service->creer))
|
|
{
|
|
print '<br>';
|
|
print '<form action="" method="post">';
|
|
print '<input type="hidden" name="token" value="'.$_SESSION['newtoken'].'">';
|
|
print '<input type="hidden" name="action" value="vadd">';
|
|
print '<input type="hidden" name="id" value="'.$_GET["id"].'">';
|
|
|
|
print '<table class="border" width="100%">';
|
|
print '<tr><td valign="top" width="15%" class="fieldrequired">'.$langs->trans('Translation').'</td><td>';
|
|
print $formadmin->select_language('','lang',0,$product->multilangs);
|
|
print '</td></tr>';
|
|
print '<tr><td valign="top" width="15%" class="fieldrequired">'.$langs->trans('Label').'</td><td><input name="libelle" size="40"></td></tr>';
|
|
print '<tr><td valign="top" width="15%">'.$langs->trans('Description').'</td><td>';
|
|
require_once(DOL_DOCUMENT_ROOT."/lib/doleditor.class.php");
|
|
$doleditor=new DolEditor('desc','','',160,'dolibarr_notes','',false,true,$conf->fckeditor->enabled && $conf->global->FCKEDITOR_ENABLE_PRODUCTDESC,3,80);
|
|
$doleditor->Create();
|
|
print '</td></tr>';
|
|
print '<tr><td valign="top" width="15%">'.$langs->trans('Note').'</td><td>';
|
|
require_once(DOL_DOCUMENT_ROOT."/lib/doleditor.class.php");
|
|
$doleditor=new DolEditor('note','','',160,'dolibarr_notes','',false,true,$conf->fckeditor->enabled && $conf->global->FCKEDITOR_ENABLE_PRODUCTDESC,3,80);
|
|
$doleditor->Create();
|
|
print '</td></tr>';
|
|
print '</tr>';
|
|
print '</table>';
|
|
|
|
print '<br><center>';
|
|
print '<input type="submit" class="button" value="'.$langs->trans("Save").'"> ';
|
|
print '<input type="submit" class="button" name="cancel" value="'.$langs->trans("Cancel").'"></center>';
|
|
|
|
print '</form>';
|
|
|
|
print '<br>';
|
|
}
|
|
llxFooter();
|
|
?>
|