2
0
forked from Wavyzz/dolibarr
Files
dolibarr-fork/htdocs/multicompany/multicompany.class.php
2010-02-01 16:06:47 +00:00

217 lines
4.9 KiB
PHP

<?php
/* Copyright (C) 2009-2010 Regis Houssin <regis@dolibarr.fr>
*
* 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/multicompany/multicompany.class.php
* \ingroup multicompany
* \brief File Class multicompany
* \version $Id$
*/
/**
* \class Multicompany
* \brief Class of the module multicompany
*/
class Multicompany
{
var $db;
var $error;
//! Numero de l'erreur
var $errno = 0;
var $entities = array();
/**
* \brief Constructeur de la classe
* \param DB Handler acces base de donnees
* \param id Id produit (0 par defaut)
*/
function Multicompany($DB)
{
$this->db = $DB;
$this->canvas = "default";
$this->name = "admin";
$this->description = "";
}
/**
* \brief Creation
*/
function Create($user,$datas)
{
}
/**
* \brief Supression
*/
function Delete($id)
{
}
/**
* \brief Fetch entity
*/
function fetch($id)
{
global $conf;
$sql = "SELECT ";
$sql.= $this->db->decrypt('name')." as name";
$sql.= ", ".$this->db->decrypt('value')." as value";
$sql.= " FROM ".MAIN_DB_PREFIX."const";
$sql.= " WHERE ".$this->db->decrypt('name')." LIKE 'MAIN_%'";
$sql.= " AND entity = ".$id;
$result = $this->db->query($sql);
if ($result)
{
$num = $this->db->num_rows($result);
$entityDetails = array();
$i = 0;
while ($i < $num)
{
$obj = $this->db->fetch_object($result);
if (preg_match('/^MAIN_INFO_SOCIETE_PAYS$/i',$obj->name))
{
$entityDetails[$obj->name] = getCountryLabel($obj->value);
}
else if (preg_match('/^MAIN_MONNAIE$/i',$obj->name))
{
$entityDetails[$obj->name] = currency_name($obj->value);
}
else
{
$entityDetails[$obj->name] = $obj->value;
}
$i++;
}
return $entityDetails;
}
}
/**
* \brief Enable/disable entity
*/
function setEntity($id, $type='active', $value)
{
global $conf;
$sql = "UPDATE ".MAIN_DB_PREFIX."entity";
$sql.= " SET ".$type." = ".$value;
$sql.= " WHERE rowid = ".$id;
dol_syslog("Multicompany::setEntity sql=".$sql, LOG_DEBUG);
$result = $this->db->query($sql);
}
/**
* \brief List of entities
*/
function getEntities($details=0,$visible=0)
{
global $conf;
$sql = "SELECT rowid, label, description, visible, active";
$sql.= " FROM ".MAIN_DB_PREFIX."entity";
if ($visible) $sql.= " WHERE visible = 1";
$result = $this->db->query($sql);
if ($result)
{
$num = $this->db->num_rows($result);
$i = 0;
while ($i < $num)
{
$obj = $this->db->fetch_object($result);
$this->entities[$i]['id'] = $obj->rowid;
$this->entities[$i]['label'] = $obj->label;
$this->entities[$i]['description'] = $obj->description;
$this->entities[$i]['visible'] = $obj->visible;
$this->entities[$i]['active'] = $obj->active;
if ($details) $this->entities[$i]['details'] = $this->fetch($obj->rowid);
$i++;
}
}
}
/**
* \brief Return combo list of entities.
* \param entities Entities array
* \param selected Preselected entity
*/
function select_entities($entities,$selected='',$option='')
{
$return = '<select class="flat" name="entity" '.$option.'>';
if (is_array($entities))
{
foreach ($entities as $entity)
{
if ($entity['active'] == 1)
{
$return.= '<option value="'.$entity['id'].'" ';
if ($selected == $entity['id']) $return.= 'selected="true"';
$return.= '>';
$return.= $entity['label'];
$return.= '</option>';
}
}
}
$return.= '</select>';
return $return;
}
/**
* \brief Assigne les valeurs pour les templates Smarty
* \param smarty Instance de smarty
*/
function assign_smarty_values(&$smarty, $action='')
{
global $conf,$langs;
$smarty->assign('langs', $langs);
$picto='title.png';
if (empty($conf->browser->firefox)) $picto='title.gif';
$smarty->assign('title_picto', img_picto('',$picto));
$smarty->assign('entities',$this->entities);
$smarty->assign('img_on',img_picto($langs->trans("Activated"),'on'));
$smarty->assign('img_off',img_picto($langs->trans("Disabled"),'off'));
$smarty->assign('img_modify',img_edit());
$smarty->assign('img_delete',img_delete());
}
}
?>