2
0
forked from Wavyzz/dolibarr
Files
dolibarr-fork/htdocs/core/class/canvas.class.php
Regis Houssin ef5bd8c1df Works on product canvas and templates
Add possibility to move canvas directory to module directory
2010-05-05 10:13:07 +00:00

137 lines
2.9 KiB
PHP

<?php
/* Copyright (C) 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/core/class/canvas.class.php
* \ingroup core
* \brief Fichier de la classe de gestion des canvas
* \version $Id$
*/
/**
* \class Canvas
* \brief Classe de la gestion des canvas
*/
class Canvas
{
var $canvas;
var $template_dir; // Directory with all core and external templates files
var $action;
var $smarty;
var $error;
/**
* \brief Constructor.
* \param DB Database handler
*/
function Canvas($DB=0,$user)
{
$this->db = $DB ;
$this->user = $user;
}
/**
* \brief Load class
*/
function load_canvas($object,$canvas)
{
global $langs;
if (preg_match('/^([^@]+)@([^@]+)$/i',$canvas,$regs))
{
if (file_exists(DOL_DOCUMENT_ROOT.'/'.$regs[2].'/canvas/'.$regs[1].'/'.$object.'.'.$regs[1].'.class.php'))
{
$filecanvas = DOL_DOCUMENT_ROOT.'/'.$regs[2].'/canvas/'.$regs[1].'/'.$object.'.'.$regs[1].'.class.php';
$classname = ucfirst($object).ucfirst($regs[1]);
$this->template_dir = DOL_DOCUMENT_ROOT.'/'.$regs[2].'/canvas/'.$regs[1].'/tpl/';
include_once($filecanvas);
$this->object = new $classname($this->db,0,$this->user);
$this->smarty = $this->object->smarty;
return $this->object;
}
else
{
$this->error = $langs->trans('CanvasIsInvalid');
return 0;
}
}
else
{
$this->error = $langs->trans('BadCanvasName');
return 0;
}
}
/**
* \brief Assign values
*/
function fetch($id,$ref='',$action='')
{
$ret = $this->object->fetch($id,$ref,$action);
return $ret;
}
/**
* \brief Assign values
*/
function assign_values($action='')
{
$this->action = $action;
if (!empty($this->smarty))
{
global $smarty;
$this->object->assign_smarty_values($smarty, $this->action);
$smarty->template_dir = $this->template_dir;
}
else
{
$this->object->assign_values($this->action);
}
}
/**
* \brief Display
*/
function display_canvas()
{
global $langs;
if (!empty($this->smarty))
{
global $smarty;
$smarty->display($this->action.'.tpl');
}
else
{
include($this->template_dir.$this->action.'.tpl.php');
}
}
}
?>