mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-14 20:14:19 +01:00
30ed6a8ab7
- added more server-side debuging: * etemplate_widget_template class can be called via url and displays parsed xml, eg: http://localhost/egroupware/etemplate/inc/class.etemplate_widget_template.inc.php?name=infolog.edit This is different from directly calling the xet file, as it show what got parsed and how: http://localhost/egroupware/infolog/templates/default/edit.xet * etemplate_new class can be called via url to render an arbitrary template, eg: http://localhost/egroupware/etemplate/inc/class.etemplate_new.inc.php?name=timesheet.edit Thought not all are already rendered correct, eg. infolog.edit is not: http://localhost/egroupware/etemplate/inc/class.etemplate_new.inc.php?name=infolog.edit
139 lines
4.2 KiB
PHP
139 lines
4.2 KiB
PHP
<?php
|
|
/**
|
|
* EGroupware - eTemplate serverside template widget
|
|
*
|
|
* @license http://opensource.org/licenses/gpl-license.php GPL - GNU General Public License
|
|
* @package etemplate
|
|
* @subpackage api
|
|
* @link http://www.egroupware.org
|
|
* @author Ralf Becker <RalfBecker@outdoor-training.de>
|
|
* @copyright 2002-11 by RalfBecker@outdoor-training.de
|
|
* @version $Id$
|
|
*/
|
|
|
|
// allow to call direct for tests (see end of class)
|
|
if (!isset($GLOBALS['egw_info']))
|
|
{
|
|
$GLOBALS['egw_info'] = array(
|
|
'flags' => array(
|
|
'currentapp' => 'login',
|
|
'debug' => 'etemplate_widget_template',
|
|
)
|
|
);
|
|
include_once '../../header.inc.php';
|
|
}
|
|
|
|
/**
|
|
* eTemplate widget baseclass
|
|
*/
|
|
class etemplate_widget_template extends etemplate_widget
|
|
{
|
|
/**
|
|
* Cache of already read templates
|
|
*
|
|
* @var array with name => template pairs
|
|
*/
|
|
protected static $cache = array();
|
|
|
|
/**
|
|
* Get instance of template specified by name, template(-set) and version
|
|
*
|
|
* @param string $name
|
|
* @param string $template_set='default'
|
|
* @param string $version=''
|
|
* @param string $load_via='' use given template to load $name
|
|
* @todo Reading customized templates from database
|
|
* @return etemplate_widget_template|boolean false if not found
|
|
*/
|
|
public static function instance($name, $template_set='default', $version='', $load_via='')
|
|
{
|
|
$start = microtime(true);
|
|
if (isset(self::$cache[$name]) || !($path = self::relPath($name, $template_set, $version)))
|
|
{
|
|
if ((!$path || self::read($load_via, $template_set)) && isset(self::$cache[$name]))
|
|
{
|
|
//error_log(__METHOD__."('$name', '$template_set', '$version', '$load_via') read from cache");
|
|
return self::$cache[$name];
|
|
}
|
|
error_log(__METHOD__."('$name', '$template_set', '$version', '$load_via') template NOT found!");
|
|
return false;
|
|
}
|
|
$reader = new XMLReader();
|
|
if (!$reader->open(EGW_SERVER_ROOT.$path)) return false;
|
|
|
|
while($reader->read())
|
|
{
|
|
if ($reader->nodeType == XMLReader::ELEMENT && $reader->name == 'template')
|
|
{
|
|
$template = new etemplate_widget_template($reader);
|
|
//echo $template->id; _debug_array($template);
|
|
|
|
self::$cache[$template->id] = $template;
|
|
|
|
if ($template->id == $name)
|
|
{
|
|
//error_log(__METHOD__."('$name', '$template_set', '$version', '$load_via') read in ".round(1000.0*(microtime(true)-$start),2)." ms");
|
|
return $template;
|
|
}
|
|
}
|
|
}
|
|
// template not found in file, should never happen
|
|
error_log(__METHOD__."('$name', '$template_set', '$version', '$load_via') template NOT found in file '$path'!");
|
|
return false;
|
|
}
|
|
|
|
/**
|
|
* Get path/URL relative to EGroupware install of a template
|
|
*
|
|
* @param string $name
|
|
* @param string $template_set='default'
|
|
* @param string $version=''
|
|
* @return string|boolean path of template xml file or false if not found
|
|
*/
|
|
public static function relPath($name, $template_set='default', $version='')
|
|
{
|
|
list($app, $rest) = explode('.', $name, 2);
|
|
$path = '/'.$app.'/templates/'.$template_set.'/'.$rest.'.xet';
|
|
|
|
if (file_exists(EGW_SERVER_ROOT.$path)) return $path;
|
|
|
|
if ($templateSet != 'default')
|
|
{
|
|
$path = '/'.$app.'/templates/default/'.$rest.'.xet';
|
|
|
|
if (file_exists(EGW_SERVER_ROOT.$path)) return $path;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
/**
|
|
* Validate input
|
|
*
|
|
* Reimplemented because templates can have an own namespace specified in attrs[content], NOT id!
|
|
*
|
|
* @param array $content
|
|
* @param array &$validated=array() validated content
|
|
* @param string $cname='' current namespace
|
|
* @return boolean true if no validation error, false otherwise
|
|
* @todo handle template references containing content in id, eg. id="edit.$cont[something]"
|
|
*/
|
|
public function validate(array $content, &$validated=array(), $cname = '')
|
|
{
|
|
if ($this->attrs['content']) $cname = self::form_name($cname, $this->attrs['content']);
|
|
|
|
return parent::validate($content, $validated, $cname);
|
|
}
|
|
}
|
|
|
|
if ($GLOBALS['egw_info']['flags']['debug'] == 'etemplate_widget_template')
|
|
{
|
|
$name = isset($_GET['name']) ? $_GET['name'] : 'timesheet.edit';
|
|
if (!($template = etemplate_widget_template::instance($name)))
|
|
{
|
|
header('HTTP-Status: 404 Not Found');
|
|
echo "<html><head><title>Not Found</title><body><h1>Not Found</h1><p>The requested eTemplate '$name' was not found!</p></body></html>\n";
|
|
exit;
|
|
}
|
|
header('Content-Type: text/xml');
|
|
echo $template->toXml();
|
|
} |