summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 0df6e8f)
raw | patch | inline | side by side (parent: 0df6e8f)
author | cajus <cajus@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Tue, 25 Oct 2011 11:56:21 +0000 (11:56 +0000) | ||
committer | cajus <cajus@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Tue, 25 Oct 2011 11:56:21 +0000 (11:56 +0000) |
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@21016 594d385d-05f5-0310-b6e9-bd551577e9d8
121 files changed:
diff --git a/gosa-core/Changelog b/gosa-core/Changelog
index 376a99d3f938ad967abf1e0ea82b1acc649e0a1a..9201e289c66ceaf3d4f83f90475e8f737521a0e1 100644 (file)
--- a/gosa-core/Changelog
+++ b/gosa-core/Changelog
===============
* gosa 2.7.2
- - Updated bundeled smarty to 3.0.8
+ - Updated bundeled smarty to 3.1.4
- Introduced sortable listing to ACL and posix dialogs
- Fixed problem with mail-method parameters that were read from ldap
- Added flag to allow modification of generated uid proposals
index c0bc78bb5a102f7abf61d1b4344656616f3fec56..059361e92f98c73fda35a6d6c7c1814dbc214cb3 100644 (file)
<?php
-
/**
- * Project: Smarty: the PHP compiling template engine
- * File: Smarty.class.php
- * SVN: $Id: Smarty.class.php 4074 2011-04-22 02:19:14Z uwe.tews@googlemail.com $
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * License as published by the Free Software Foundation; either
- * version 2.1 of the License, or (at your option) any later version.
- *
- * This library 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
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- *
- * For questions, help, comments, discussion, etc., please join the
- * Smarty mailing list. Send a blank e-mail to
- * smarty-discussion-subscribe@googlegroups.com
- *
- * @link http://www.smarty.net/
- * @copyright 2008 New Digital Group, Inc.
- * @author Monte Ohrt <monte at ohrt dot com>
- * @author Uwe Tews
- * @package Smarty
- * @version 3.0.8
- */
+* Project: Smarty: the PHP compiling template engine
+* File: Smarty.class.php
+* SVN: $Id: Smarty.class.php 4426 2011-10-19 19:20:58Z monte.ohrt $
+*
+* This library is free software; you can redistribute it and/or
+* modify it under the terms of the GNU Lesser General Public
+* License as published by the Free Software Foundation; either
+* version 2.1 of the License, or (at your option) any later version.
+*
+* This library 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
+* Lesser General Public License for more details.
+*
+* You should have received a copy of the GNU Lesser General Public
+* License along with this library; if not, write to the Free Software
+* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+*
+* For questions, help, comments, discussion, etc., please join the
+* Smarty mailing list. Send a blank e-mail to
+* smarty-discussion-subscribe@googlegroups.com
+*
+* @link http://www.smarty.net/
+* @copyright 2008 New Digital Group, Inc.
+* @author Monte Ohrt <monte at ohrt dot com>
+* @author Uwe Tews
+* @author Rodney Rehm
+* @package Smarty
+* @version 3.1.4
+*/
/**
- * define shorthand directory separator constant
- */
+* define shorthand directory separator constant
+*/
if (!defined('DS')) {
define('DS', DIRECTORY_SEPARATOR);
}
/**
- * set SMARTY_DIR to absolute path to Smarty library files.
- * Sets SMARTY_DIR only if user application has not already defined it.
- */
+* set SMARTY_DIR to absolute path to Smarty library files.
+* Sets SMARTY_DIR only if user application has not already defined it.
+*/
if (!defined('SMARTY_DIR')) {
define('SMARTY_DIR', dirname(__FILE__) . DS);
}
/**
- * set SMARTY_SYSPLUGINS_DIR to absolute path to Smarty internal plugins.
- * Sets SMARTY_SYSPLUGINS_DIR only if user application has not already defined it.
- */
+* set SMARTY_SYSPLUGINS_DIR to absolute path to Smarty internal plugins.
+* Sets SMARTY_SYSPLUGINS_DIR only if user application has not already defined it.
+*/
if (!defined('SMARTY_SYSPLUGINS_DIR')) {
define('SMARTY_SYSPLUGINS_DIR', SMARTY_DIR . 'sysplugins' . DS);
}
if (!defined('SMARTY_PLUGINS_DIR')) {
define('SMARTY_PLUGINS_DIR', SMARTY_DIR . 'plugins' . DS);
}
+if (!defined('SMARTY_MBSTRING')) {
+ define('SMARTY_MBSTRING', function_exists('mb_strlen'));
+}
if (!defined('SMARTY_RESOURCE_CHAR_SET')) {
- define('SMARTY_RESOURCE_CHAR_SET', 'UTF-8');
+ // UTF-8 can only be done properly when mbstring is available!
+ define('SMARTY_RESOURCE_CHAR_SET', SMARTY_MBSTRING ? 'UTF-8' : 'ISO-8859-1');
}
if (!defined('SMARTY_RESOURCE_DATE_FORMAT')) {
define('SMARTY_RESOURCE_DATE_FORMAT', '%b %e, %Y');
}
/**
- * register the class autoloader
- */
+* register the class autoloader
+*/
if (!defined('SMARTY_SPL_AUTOLOAD')) {
define('SMARTY_SPL_AUTOLOAD', 0);
}
@@ -80,350 +84,1078 @@ if (SMARTY_SPL_AUTOLOAD && set_include_path(get_include_path() . PATH_SEPARATOR
}
/**
- * This is the main Smarty class
- */
-class Smarty extends Smarty_Internal_Data {
- /**
- * constant definitions
- */
- // smarty version
- const SMARTY_VERSION = 'Smarty-3.0.8';
- //define variable scopes
- const SCOPE_LOCAL = 0;
- const SCOPE_PARENT = 1;
- const SCOPE_ROOT = 2;
- const SCOPE_GLOBAL = 3;
- // define caching modes
- const CACHING_OFF = 0;
- const CACHING_LIFETIME_CURRENT = 1;
- const CACHING_LIFETIME_SAVED = 2;
- /** modes for handling of "<?php ... ?>" tags in templates. **/
- const PHP_PASSTHRU = 0; //-> print tags as plain text
- const PHP_QUOTE = 1; //-> escape tags as entities
- const PHP_REMOVE = 2; //-> escape tags as entities
- const PHP_ALLOW = 3; //-> escape tags as entities
- // filter types
- const FILTER_POST = 'post';
- const FILTER_PRE = 'pre';
- const FILTER_OUTPUT = 'output';
- const FILTER_VARIABLE = 'variable';
- // plugin types
- const PLUGIN_FUNCTION = 'function';
- const PLUGIN_BLOCK = 'block';
- const PLUGIN_COMPILER = 'compiler';
- const PLUGIN_MODIFIER = 'modifier';
-
- /**
- * static variables
- */
- // assigned global tpl vars
- static $global_tpl_vars = array();
-
- /**
- * variables
- */
- // auto literal on delimiters with whitspace
+* Load always needed external class files
+*/
+include_once SMARTY_SYSPLUGINS_DIR.'smarty_internal_data.php';
+include_once SMARTY_SYSPLUGINS_DIR.'smarty_internal_templatebase.php';
+include_once SMARTY_SYSPLUGINS_DIR.'smarty_internal_template.php';
+include_once SMARTY_SYSPLUGINS_DIR.'smarty_resource.php';
+include_once SMARTY_SYSPLUGINS_DIR.'smarty_internal_resource_file.php';
+include_once SMARTY_SYSPLUGINS_DIR.'smarty_cacheresource.php';
+include_once SMARTY_SYSPLUGINS_DIR.'smarty_internal_cacheresource_file.php';
+
+/**
+* This is the main Smarty class
+* @package Smarty
+*/
+class Smarty extends Smarty_Internal_TemplateBase {
+
+ /**#@+
+ * constant definitions
+ */
+
+ /**
+ * smarty version
+ */
+ const SMARTY_VERSION = 'Smarty 3.1.4';
+
+ /**
+ * define variable scopes
+ */
+ const SCOPE_LOCAL = 0;
+ const SCOPE_PARENT = 1;
+ const SCOPE_ROOT = 2;
+ const SCOPE_GLOBAL = 3;
+ /**
+ * define caching modes
+ */
+ const CACHING_OFF = 0;
+ const CACHING_LIFETIME_CURRENT = 1;
+ const CACHING_LIFETIME_SAVED = 2;
+ /**
+ * define compile check modes
+ */
+ const COMPILECHECK_OFF = 0;
+ const COMPILECHECK_ON = 1;
+ const COMPILECHECK_CACHEMISS = 2;
+ /**
+ * modes for handling of "<?php ... ?>" tags in templates.
+ */
+ const PHP_PASSTHRU = 0; //-> print tags as plain text
+ const PHP_QUOTE = 1; //-> escape tags as entities
+ const PHP_REMOVE = 2; //-> escape tags as entities
+ const PHP_ALLOW = 3; //-> escape tags as entities
+ /**
+ * filter types
+ */
+ const FILTER_POST = 'post';
+ const FILTER_PRE = 'pre';
+ const FILTER_OUTPUT = 'output';
+ const FILTER_VARIABLE = 'variable';
+ /**
+ * plugin types
+ */
+ const PLUGIN_FUNCTION = 'function';
+ const PLUGIN_BLOCK = 'block';
+ const PLUGIN_COMPILER = 'compiler';
+ const PLUGIN_MODIFIER = 'modifier';
+ const PLUGIN_MODIFIERCOMPILER = 'modifiercompiler';
+
+ /**#@-*/
+
+ /**
+ * assigned global tpl vars
+ */
+ public static $global_tpl_vars = array();
+
+ /**
+ * error handler returned by set_error_hanlder() in Smarty::muteExpectedErrors()
+ */
+ public static $_previous_error_handler = null;
+ /**
+ * contains directories outside of SMARTY_DIR that are to be muted by muteExpectedErrors()
+ */
+ public static $_muted_directories = array();
+
+ /**#@+
+ * variables
+ */
+
+ /**
+ * auto literal on delimiters with whitspace
+ * @var boolean
+ */
public $auto_literal = true;
- // display error on not assigned variables
+ /**
+ * display error on not assigned variables
+ * @var boolean
+ */
public $error_unassigned = false;
- // template directory
- public $template_dir = null;
- // default template handler
+ /**
+ * look up relative filepaths in include_path
+ * @var boolean
+ */
+ public $use_include_path = false;
+ /**
+ * template directory
+ * @var array
+ */
+ protected $template_dir = array();
+ /**
+ * joined template directory string used in cache keys
+ * @var string
+ */
+ public $joined_template_dir = null;
+ /**
+ * joined config directory string used in cache keys
+ * @var string
+ */
+ public $joined_config_dir = null;
+ /**
+ * default template handler
+ * @var callable
+ */
public $default_template_handler_func = null;
- // compile directory
- public $compile_dir = null;
- // plugins directory
- public $plugins_dir = null;
- // cache directory
- public $cache_dir = null;
- // config directory
- public $config_dir = null;
- // force template compiling?
+ /**
+ * default config handler
+ * @var callable
+ */
+ public $default_config_handler_func = null;
+ /**
+ * default plugin handler
+ * @var callable
+ */
+ public $default_plugin_handler_func = null;
+ /**
+ * compile directory
+ * @var string
+ */
+ protected $compile_dir = null;
+ /**
+ * plugins directory
+ * @var array
+ */
+ protected $plugins_dir = array();
+ /**
+ * cache directory
+ * @var string
+ */
+ protected $cache_dir = null;
+ /**
+ * config directory
+ * @var array
+ */
+ protected $config_dir = array();
+ /**
+ * force template compiling?
+ * @var boolean
+ */
public $force_compile = false;
- // check template for modifications?
+ /**
+ * check template for modifications?
+ * @var boolean
+ */
public $compile_check = true;
- // locking concurrent compiles
- public $compile_locking = true;
- // use sub dirs for compiled/cached files?
+ /**
+ * use sub dirs for compiled/cached files?
+ * @var boolean
+ */
public $use_sub_dirs = false;
- // compile_error?
- public $compile_error = false;
- // caching enabled
+ /**
+ * caching enabled
+ * @var boolean
+ */
public $caching = false;
- // merge compiled includes
+ /**
+ * merge compiled includes
+ * @var boolean
+ */
public $merge_compiled_includes = false;
- // cache lifetime
+ /**
+ * cache lifetime in seconds
+ * @var integer
+ */
public $cache_lifetime = 3600;
- // force cache file creation
+ /**
+ * force cache file creation
+ * @var boolean
+ */
public $force_cache = false;
- // cache_id
+ /**
+ * Set this if you want different sets of cache files for the same
+ * templates.
+ *
+ * @var string
+ */
public $cache_id = null;
- // compile_id
+ /**
+ * Set this if you want different sets of compiled files for the same
+ * templates.
+ *
+ * @var string
+ */
public $compile_id = null;
- // template delimiters
+ /**
+ * template left-delimiter
+ * @var string
+ */
public $left_delimiter = "{";
+ /**
+ * template right-delimiter
+ * @var string
+ */
public $right_delimiter = "}";
- // security
+ /**#@+
+ * security
+ */
+ /**
+ * class name
+ *
+ * This should be instance of Smarty_Security.
+ *
+ * @var string
+ * @see Smarty_Security
+ */
public $security_class = 'Smarty_Security';
+ /**
+ * implementation of security class
+ *
+ * @var Smarty_Security
+ */
public $security_policy = null;
+ /**
+ * controls handling of PHP-blocks
+ *
+ * @var integer
+ */
public $php_handling = self::PHP_PASSTHRU;
- public $allow_php_tag = false;
+ /**
+ * controls if the php template file resource is allowed
+ *
+ * @var bool
+ */
public $allow_php_templates = false;
+ /**
+ * Should compiled-templates be prevented from being called directly?
+ *
+ * {@internal
+ * Currently used by Smarty_Internal_Template only.
+ * }}
+ *
+ * @var boolean
+ */
public $direct_access_security = true;
- public $trusted_dir = array();
- // debug mode
+ /**#@-*/
+ /**
+ * debug mode
+ *
+ * Setting this to true enables the debug-console.
+ *
+ * @var boolean
+ */
public $debugging = false;
+ /**
+ * This determines if debugging is enable-able from the browser.
+ * <ul>
+ * <li>NONE => no debugging control allowed</li>
+ * <li>URL => enable debugging when SMARTY_DEBUG is found in the URL.</li>
+ * </ul>
+ * @var string
+ */
public $debugging_ctrl = 'NONE';
+ /**
+ * Name of debugging URL-param.
+ *
+ * Only used when $debugging_ctrl is set to 'URL'.
+ * The name of the URL-parameter that activates debugging.
+ *
+ * @var type
+ */
public $smarty_debug_id = 'SMARTY_DEBUG';
+ /**
+ * Path of debug template.
+ * @var string
+ */
public $debug_tpl = null;
- // When set, smarty does uses this value as error_reporting-level.
+ /**
+ * When set, smarty uses this value as error_reporting-level.
+ * @var int
+ */
public $error_reporting = null;
- // config var settings
- public $config_overwrite = true; //Controls whether variables with the same name overwrite each other.
- public $config_booleanize = true; //Controls whether config values of on/true/yes and off/false/no get converted to boolean
- public $config_read_hidden = false; //Controls whether hidden config sections/vars are read from the file.
- // config vars
- public $config_vars = array();
- // assigned tpl vars
- public $tpl_vars = array();
- // dummy parent object
- public $parent = null;
- // global template functions
+ /**
+ * Internal flag for getTags()
+ * @var boolean
+ */
+ public $get_used_tags = false;
+
+ /**#@+
+ * config var settings
+ */
+
+ /**
+ * Controls whether variables with the same name overwrite each other.
+ * @var boolean
+ */
+ public $config_overwrite = true;
+ /**
+ * Controls whether config values of on/true/yes and off/false/no get converted to boolean.
+ * @var boolean
+ */
+ public $config_booleanize = true;
+ /**
+ * Controls whether hidden config sections/vars are read from the file.
+ * @var boolean
+ */
+ public $config_read_hidden = false;
+
+ /**#@-*/
+
+ /**#@+
+ * resource locking
+ */
+
+ /**
+ * locking concurrent compiles
+ * @var boolean
+ */
+ public $compile_locking = true;
+ /**
+ * Controls whether cache resources should emply locking mechanism
+ * @var boolean
+ */
+ public $cache_locking = false;
+ /**
+ * seconds to wait for acquiring a lock before ignoring the write lock
+ * @var float
+ */
+ public $locking_timeout = 10;
+
+ /**#@-*/
+
+ /**
+ * global template functions
+ * @var array
+ */
public $template_functions = array();
- // resource type used if none given
+ /**
+ * resource type used if none given
+ *
+ * Must be an valid key of $registered_resources.
+ * @var string
+ */
public $default_resource_type = 'file';
- // caching type
+ /**
+ * caching type
+ *
+ * Must be an element of $cache_resource_types.
+ *
+ * @var string
+ */
public $caching_type = 'file';
- // internal cache resource types
- public $cache_resource_types = array('file');
- // internal config properties
+ /**
+ * internal config properties
+ * @var array
+ */
public $properties = array();
- // config type
+ /**
+ * config type
+ * @var string
+ */
public $default_config_type = 'file';
- // cached template objects
- public $template_objects = null;
- // check If-Modified-Since headers
+ /**
+ * cached template objects
+ * @var array
+ */
+ public $template_objects = array();
+ /**
+ * check If-Modified-Since headers
+ * @var boolean
+ */
public $cache_modified_check = false;
- // registered plugins
+ /**
+ * registered plugins
+ * @var array
+ */
public $registered_plugins = array();
- // plugin search order
+ /**
+ * plugin search order
+ * @var array
+ */
public $plugin_search_order = array('function', 'block', 'compiler', 'class');
- // registered objects
+ /**
+ * registered objects
+ * @var array
+ */
public $registered_objects = array();
- // registered classes
+ /**
+ * registered classes
+ * @var array
+ */
public $registered_classes = array();
- // registered filters
+ /**
+ * registered filters
+ * @var array
+ */
public $registered_filters = array();
- // registered resources
+ /**
+ * registered resources
+ * @var array
+ */
public $registered_resources = array();
- // autoload filter
+ /**
+ * resource handler cache
+ * @var array
+ */
+ public $_resource_handlers = array();
+ /**
+ * registered cache resources
+ * @var array
+ */
+ public $registered_cache_resources = array();
+ /**
+ * cache resource handler cache
+ * @var array
+ */
+ public $_cacheresource_handlers = array();
+ /**
+ * autoload filter
+ * @var array
+ */
public $autoload_filters = array();
- // status of filter on variable output
- public $variable_filter = true;
- // default modifier
+ /**
+ * default modifier
+ * @var array
+ */
public $default_modifiers = array();
- // global internal smarty vars
- static $_smarty_vars = array();
- // start time for execution time calculation
+ /**
+ * autoescape variable output
+ * @var boolean
+ */
+ public $escape_html = false;
+ /**
+ * global internal smarty vars
+ * @var array
+ */
+ public static $_smarty_vars = array();
+ /**
+ * start time for execution time calculation
+ * @var int
+ */
public $start_time = 0;
- // default file permissions
+ /**
+ * default file permissions
+ * @var int
+ */
public $_file_perms = 0644;
- // default dir permissions
+ /**
+ * default dir permissions
+ * @var int
+ */
public $_dir_perms = 0771;
- // block tag hierarchy
+ /**
+ * block tag hierarchy
+ * @var array
+ */
public $_tag_stack = array();
- // flag if {block} tag is compiled for template inheritance
- public $inheritance = false;
- // generate deprecated function call notices?
- public $deprecation_notices = true;
- // Smarty 2 BC
- public $_version = self::SMARTY_VERSION;
- // self pointer to Smarty object
+ /**
+ * self pointer to Smarty object
+ * @var Smarty
+ */
public $smarty;
+ /**
+ * required by the compiler for BC
+ * @var string
+ */
+ public $_current_file = null;
+ /**
+ * internal flag to enable parser debugging
+ * @var bool
+ */
+ public $_parserdebug = false;
+ /**
+ * Saved parameter of merged templates during compilation
+ *
+ * @var array
+ */
+ public $merged_templates_func = array();
+ /**#@-*/
+
+ /**
+ * Initialize new Smarty object
+ *
+ */
+ public function __construct()
+ {
+ // selfpointer needed by some other class methods
+ $this->smarty = $this;
+ if (is_callable('mb_internal_encoding')) {
+ mb_internal_encoding(SMARTY_RESOURCE_CHAR_SET);
+ }
+ $this->start_time = microtime(true);
+ // set default dirs
+ $this->setTemplateDir('.' . DS . 'templates' . DS)
+ ->setCompileDir('.' . DS . 'templates_c' . DS)
+ ->setPluginsDir(SMARTY_PLUGINS_DIR)
+ ->setCacheDir('.' . DS . 'cache' . DS)
+ ->setConfigDir('.' . DS . 'configs' . DS);
+
+ $this->debug_tpl = 'file:' . dirname(__FILE__) . '/debug.tpl';
+ if (isset($_SERVER['SCRIPT_NAME'])) {
+ $this->assignGlobal('SCRIPT_NAME', $_SERVER['SCRIPT_NAME']);
+ }
+ }
+
+
+ /**
+ * Class destructor
+ */
+ public function __destruct()
+ {
+ // intentionally left blank
+ }
+
+ /**
+ * <<magic>> set selfpointer on cloned object
+ */
+ public function __clone()
+ {
+ $this->smarty = $this;
+ }
+
+
+ /**
+ * <<magic>> Generic getter.
+ *
+ * Calls the appropriate getter function.
+ * Issues an E_USER_NOTICE if no valid getter is found.
+ *
+ * @param string $name property name
+ * @return mixed
+ */
+ public function __get($name)
+ {
+ $allowed = array(
+ 'template_dir' => 'getTemplateDir',
+ 'config_dir' => 'getConfigDir',
+ 'plugins_dir' => 'getPluginsDir',
+ 'compile_dir' => 'getCompileDir',
+ 'cache_dir' => 'getCacheDir',
+ );
+
+ if (isset($allowed[$name])) {
+ return $this->{$allowed[$name]}();
+ } else {
+ trigger_error('Undefined property: '. get_class($this) .'::$'. $name, E_USER_NOTICE);
+ }
+ }
+
+ /**
+ * <<magic>> Generic setter.
+ *
+ * Calls the appropriate setter function.
+ * Issues an E_USER_NOTICE if no valid setter is found.
+ *
+ * @param string $name property name
+ * @param mixed $value parameter passed to setter
+ */
+ public function __set($name, $value)
+ {
+ $allowed = array(
+ 'template_dir' => 'setTemplateDir',
+ 'config_dir' => 'setConfigDir',
+ 'plugins_dir' => 'setPluginsDir',
+ 'compile_dir' => 'setCompileDir',
+ 'cache_dir' => 'setCacheDir',
+ );
+
+ if (isset($allowed[$name])) {
+ $this->{$allowed[$name]}($value);
+ } else {
+ trigger_error('Undefined property: ' . get_class($this) . '::$' . $name, E_USER_NOTICE);
+ }
+ }
+
+ /**
+ * Check if a template resource exists
+ *
+ * @param string $resource_name template name
+ * @return boolean status
+ */
+ public function templateExists($resource_name)
+ {
+ // create template object
+ $save = $this->template_objects;
+ $tpl = new $this->template_class($resource_name, $this);
+ // check if it does exists
+ $result = $tpl->source->exists;
+ $this->template_objects = $save;
+ return $result;
+ }
+
+ /**
+ * Returns a single or all global variables
+ *
+ * @param object $smarty
+ * @param string $varname variable name or null
+ * @return string variable value or or array of variables
+ */
+ public function getGlobal($varname = null)
+ {
+ if (isset($varname)) {
+ if (isset(self::$global_tpl_vars[$varname])) {
+ return self::$global_tpl_vars[$varname]->value;
+ } else {
+ return '';
+ }
+ } else {
+ $_result = array();
+ foreach (self::$global_tpl_vars AS $key => $var) {
+ $_result[$key] = $var->value;
+ }
+ return $_result;
+ }
+ }
+
+ /**
+ * Empty cache folder
+ *
+ * @param integer $exp_time expiration time
+ * @param string $type resource type
+ * @return integer number of cache files deleted
+ */
+ function clearAllCache($exp_time = null, $type = null)
+ {
+ // load cache resource and call clearAll
+ $_cache_resource = Smarty_CacheResource::load($this, $type);
+ Smarty_CacheResource::invalidLoadedCache($this);
+ return $_cache_resource->clearAll($this, $exp_time);
+ }
+
+ /**
+ * Empty cache for a specific template
+ *
+ * @param string $template_name template name
+ * @param string $cache_id cache id
+ * @param string $compile_id compile id
+ * @param integer $exp_time expiration time
+ * @param string $type resource type
+ * @return integer number of cache files deleted
+ */
+ public function clearCache($template_name, $cache_id = null, $compile_id = null, $exp_time = null, $type = null)
+ {
+ // load cache resource and call clear
+ $_cache_resource = Smarty_CacheResource::load($this, $type);
+ Smarty_CacheResource::invalidLoadedCache($this);
+ return $_cache_resource->clear($this, $template_name, $cache_id, $compile_id, $exp_time);
+ }
+
+ /**
+ * Loads security class and enables security
+ *
+ * @param string|Smarty_Security $security_class if a string is used, it must be class-name
+ * @return Smarty current Smarty instance for chaining
+ * @throws SmartyException when an invalid class name is provided
+ */
+ public function enableSecurity($security_class = null)
+ {
+ if ($security_class instanceof Smarty_Security) {
+ $this->security_policy = $security_class;
+ return $this;
+ } elseif (is_object($security_class)) {
+ throw new SmartyException("Class '" . get_class($security_class) . "' must extend Smarty_Security.");
+ }
+ if ($security_class == null) {
+ $security_class = $this->security_class;
+ }
+ if (!class_exists($security_class)) {
+ throw new SmartyException("Security class '$security_class' is not defined");
+ } elseif ($security_class !== 'Smarty_Security' && !is_subclass_of($security_class, 'Smarty_Security')) {
+ throw new SmartyException("Class '$security_class' must extend Smarty_Security.");
+ } else {
+ $this->security_policy = new $security_class($this);
+ }
+
+ return $this;
+ }
+
+ /**
+ * Disable security
+ * @return Smarty current Smarty instance for chaining
+ */
+ public function disableSecurity()
+ {
+ $this->security_policy = null;
+
+ return $this;
+ }
+
+ /**
+ * Set template directory
+ *
+ * @param string|array $template_dir directory(s) of template sources
+ * @return Smarty current Smarty instance for chaining
+ */
+ public function setTemplateDir($template_dir)
+ {
+ $this->template_dir = array();
+ foreach ((array) $template_dir as $k => $v) {
+ $this->template_dir[$k] = rtrim($v, '/\\') . DS;
+ }
+
+ $this->joined_template_dir = join(DIRECTORY_SEPARATOR, $this->template_dir);
+ return $this;
+ }
+
+ /**
+ * Add template directory(s)
+ *
+ * @param string|array $template_dir directory(s) of template sources
+ * @param string $key of the array element to assign the template dir to
+ * @return Smarty current Smarty instance for chaining
+ * @throws SmartyException when the given template directory is not valid
+ */
+ public function addTemplateDir($template_dir, $key=null)
+ {
+ // make sure we're dealing with an array
+ $this->template_dir = (array) $this->template_dir;
+
+ if (is_array($template_dir)) {
+ foreach ($template_dir as $k => $v) {
+ if (is_int($k)) {
+ // indexes are not merged but appended
+ $this->template_dir[] = rtrim($v, '/\\') . DS;
+ } else {
+ // string indexes are overridden
+ $this->template_dir[$k] = rtrim($v, '/\\') . DS;
+ }
+ }
+ } elseif ($key !== null) {
+ // override directory at specified index
+ $this->template_dir[$key] = rtrim($template_dir, '/\\') . DS;
+ } else {
+ // append new directory
+ $this->template_dir[] = rtrim($template_dir, '/\\') . DS;
+ }
+ $this->joined_template_dir = join(DIRECTORY_SEPARATOR, $this->template_dir);
+ return $this;
+ }
+
+ /**
+ * Get template directories
+ *
+ * @param mixed index of directory to get, null to get all
+ * @return array|string list of template directories, or directory of $index
+ */
+ public function getTemplateDir($index=null)
+ {
+ if ($index !== null) {
+ return isset($this->template_dir[$index]) ? $this->template_dir[$index] : null;
+ }
+
+ return (array)$this->template_dir;
+ }
+
+ /**
+ * Set config directory
+ *
+ * @param string|array $template_dir directory(s) of configuration sources
+ * @return Smarty current Smarty instance for chaining
+ */
+ public function setConfigDir($config_dir)
+ {
+ $this->config_dir = array();
+ foreach ((array) $config_dir as $k => $v) {
+ $this->config_dir[$k] = rtrim($v, '/\\') . DS;
+ }
+
+ $this->joined_config_dir = join(DIRECTORY_SEPARATOR, $this->config_dir);
+ return $this;
+ }
+
+ /**
+ * Add config directory(s)
+ *
+ * @param string|array $config_dir directory(s) of config sources
+ * @param string key of the array element to assign the config dir to
+ * @return Smarty current Smarty instance for chaining
+ */
+ public function addConfigDir($config_dir, $key=null)
+ {
+ // make sure we're dealing with an array
+ $this->config_dir = (array) $this->config_dir;
+
+ if (is_array($config_dir)) {
+ foreach ($config_dir as $k => $v) {
+ if (is_int($k)) {
+ // indexes are not merged but appended
+ $this->config_dir[] = rtrim($v, '/\\') . DS;
+ } else {
+ // string indexes are overridden
+ $this->config_dir[$k] = rtrim($v, '/\\') . DS;
+ }
+ }
+ } elseif( $key !== null ) {
+ // override directory at specified index
+ $this->config_dir[$key] = rtrim($config_dir, '/\\') . DS;
+ } else {
+ // append new directory
+ $this->config_dir[] = rtrim($config_dir, '/\\') . DS;
+ }
+
+ $this->joined_config_dir = join(DIRECTORY_SEPARATOR, $this->config_dir);
+ return $this;
+ }
+
+ /**
+ * Get config directory
+ *
+ * @param mixed index of directory to get, null to get all
+ * @return array|string configuration directory
+ */
+ public function getConfigDir($index=null)
+ {
+ if ($index !== null) {
+ return isset($this->config_dir[$index]) ? $this->config_dir[$index] : null;
+ }
+
+ return (array)$this->config_dir;
+ }
+
+ /**
+ * Set plugins directory
+ *
+ * @param string|array $plugins_dir directory(s) of plugins
+ * @return Smarty current Smarty instance for chaining
+ */
+ public function setPluginsDir($plugins_dir)
+ {
+ $this->plugins_dir = array();
+ foreach ((array)$plugins_dir as $k => $v) {
+ $this->plugins_dir[$k] = rtrim($v, '/\\') . DS;
+ }
+
+ return $this;
+ }
+
+ /**
+ * Adds directory of plugin files
+ *
+ * @param object $smarty
+ * @param string $ |array $ plugins folder
+ * @return Smarty current Smarty instance for chaining
+ */
+ public function addPluginsDir($plugins_dir)
+ {
+ // make sure we're dealing with an array
+ $this->plugins_dir = (array) $this->plugins_dir;
+
+ if (is_array($plugins_dir)) {
+ foreach ($plugins_dir as $k => $v) {
+ if (is_int($k)) {
+ // indexes are not merged but appended
+ $this->plugins_dir[] = rtrim($v, '/\\') . DS;
+ } else {
+ // string indexes are overridden
+ $this->plugins_dir[$k] = rtrim($v, '/\\') . DS;
+ }
+ }
+ } else {
+ // append new directory
+ $this->plugins_dir[] = rtrim($plugins_dir, '/\\') . DS;
+ }
+
+ $this->plugins_dir = array_unique($this->plugins_dir);
+ return $this;
+ }
+
+ /**
+ * Get plugin directories
+ *
+ * @return array list of plugin directories
+ */
+ public function getPluginsDir()
+ {
+ return (array)$this->plugins_dir;
+ }
+
+ /**
+ * Set compile directory
+ *
+ * @param string $compile_dir directory to store compiled templates in
+ * @return Smarty current Smarty instance for chaining
+ */
+ public function setCompileDir($compile_dir)
+ {
+ $this->compile_dir = rtrim($compile_dir, '/\\') . DS;
+ if (!isset(Smarty::$_muted_directories[$this->compile_dir])) {
+ Smarty::$_muted_directories[$this->compile_dir] = null;
+ }
+ return $this;
+ }
/**
- * Class constructor, initializes basic smarty properties
- */
- public function __construct()
+ * Get compiled directory
+ *
+ * @return string path to compiled templates
+ */
+ public function getCompileDir()
{
- // selfpointer need by some other class methods
- $this->smarty = $this;
- if (is_callable('mb_internal_encoding')) {
- mb_internal_encoding(SMARTY_RESOURCE_CHAR_SET);
- }
- $this->start_time = microtime(true);
- // set default dirs
- $this->template_dir = array('.' . DS . 'templates' . DS);
- $this->compile_dir = '.' . DS . 'templates_c' . DS;
- $this->plugins_dir = array(SMARTY_PLUGINS_DIR);
- $this->cache_dir = '.' . DS . 'cache' . DS;
- $this->config_dir = '.' . DS . 'configs' . DS;
- $this->debug_tpl = 'file:' . SMARTY_DIR . 'debug.tpl';
- if (isset($_SERVER['SCRIPT_NAME'])) {
- $this->assignGlobal('SCRIPT_NAME', $_SERVER['SCRIPT_NAME']);
+ return $this->compile_dir;
+ }
+
+ /**
+ * Set cache directory
+ *
+ * @param string $cache_dir directory to store cached templates in
+ * @return Smarty current Smarty instance for chaining
+ */
+ public function setCacheDir($cache_dir)
+ {
+ $this->cache_dir = rtrim($cache_dir, '/\\') . DS;
+ if (!isset(Smarty::$_muted_directories[$this->cache_dir])) {
+ Smarty::$_muted_directories[$this->cache_dir] = null;
}
+ return $this;
}
/**
- * Class destructor
- */
- public function __destruct()
+ * Get cache directory
+ *
+ * @return string path of cache directory
+ */
+ public function getCacheDir()
{
+ return $this->cache_dir;
}
/**
- * fetches a rendered Smarty template
- *
- * @param string $template the resource handle of the template file or template object
- * @param mixed $cache_id cache id to be used with this template
- * @param mixed $compile_id compile id to be used with this template
- * @param object $ |null $parent next higher level of Smarty variables
- * @return string rendered template output
- */
- public function fetch($template, $cache_id = null, $compile_id = null, $parent = null, $display = false)
+ * Set default modifiers
+ *
+ * @param array|string $modifiers modifier or list of modifiers to set
+ * @return Smarty current Smarty instance for chaining
+ */
+ public function setDefaultModifiers($modifiers)
{
- if (!empty($cache_id) && is_object($cache_id)) {
- $parent = $cache_id;
- $cache_id = null;
+ $this->default_modifiers = (array) $modifiers;
+ return $this;
+ }
+
+ /**
+ * Add default modifiers
+ *
+ * @param array|string $modifiers modifier or list of modifiers to add
+ * @return Smarty current Smarty instance for chaining
+ */
+ public function addDefaultModifiers($modifiers)
+ {
+ if (is_array($modifiers)) {
+ $this->default_modifiers = array_merge($this->default_modifiers, $modifiers);
+ } else {
+ $this->default_modifiers[] = $modifiers;
}
- if ($parent === null) {
- // get default Smarty data object
- $parent = $this;
- }
- // create template object if necessary
- ($template instanceof $this->template_class)? $_template = $template :
- $_template = $this->createTemplate ($template, $cache_id, $compile_id, $parent, false);
- if (isset($this->error_reporting)) {
- $_smarty_old_error_level = error_reporting($this->error_reporting);
- }
- // check URL debugging control
- if (!$this->debugging && $this->debugging_ctrl == 'URL') {
- if (isset($_SERVER['QUERY_STRING'])) {
- $_query_string = $_SERVER['QUERY_STRING'];
- } else {
- $_query_string = '';
- }
- if (false !== strpos($_query_string, $this->smarty_debug_id)) {
- if (false !== strpos($_query_string, $this->smarty_debug_id . '=on')) {
- // enable debugging for this browser session
- setcookie('SMARTY_DEBUG', true);
- $this->debugging = true;
- } elseif (false !== strpos($_query_string, $this->smarty_debug_id . '=off')) {
- // disable debugging for this browser session
- setcookie('SMARTY_DEBUG', false);
- $this->debugging = false;
- } else {
- // enable debugging for this page
- $this->debugging = true;
- }
- } else {
- if (isset($_COOKIE['SMARTY_DEBUG'])) {
- $this->debugging = true;
- }
- }
+
+ return $this;
+ }
+
+ /**
+ * Get default modifiers
+ *
+ * @return array list of default modifiers
+ */
+ public function getDefaultModifiers()
+ {
+ return $this->default_modifiers;
+ }
+
+
+ /**
+ * Set autoload filters
+ *
+ * @param array $filters filters to load automatically
+ * @param string $type "pre", "output", … specify the filter type to set. Defaults to none treating $filters' keys as the appropriate types
+ * @return Smarty current Smarty instance for chaining
+ */
+ public function setAutoloadFilters($filters, $type=null)
+ {
+ if ($type !== null) {
+ $this->autoload_filters[$type] = (array) $filters;
+ } else {
+ $this->autoload_filters = (array) $filters;
}
- // obtain data for cache modified check
- if ($this->cache_modified_check && $this->caching && $display) {
- $_isCached = $_template->isCached() && !$_template->has_nocache_code;
- if ($_isCached) {
- $_gmt_mtime = gmdate('D, d M Y H:i:s', $_template->getCachedTimestamp()) . ' GMT';
+
+ return $this;
+ }
+
+ /**
+ * Add autoload filters
+ *
+ * @param array $filters filters to load automatically
+ * @param string $type "pre", "output", … specify the filter type to set. Defaults to none treating $filters' keys as the appropriate types
+ * @return Smarty current Smarty instance for chaining
+ */
+ public function addAutoloadFilters($filters, $type=null)
+ {
+ if ($type !== null) {
+ if (!empty($this->autoload_filters[$type])) {
+ $this->autoload_filters[$type] = array_merge($this->autoload_filters[$type], (array) $filters);
} else {
- $_gmt_mtime = '';
+ $this->autoload_filters[$type] = (array) $filters;
}
- }
- // return rendered template
- if ((!$this->caching || $_template->resource_object->isEvaluated) && (isset($this->autoload_filters['output']) || isset($this->registered_filters['output']))) {
- $_output = Smarty_Internal_Filter_Handler::runFilter('output', $_template->getRenderedTemplate(), $_template);
} else {
- $_output = $_template->getRenderedTemplate();
- }
- $_template->rendered_content = null;
- if (isset($this->error_reporting)) {
- error_reporting($_smarty_old_error_level);
- }
- // display or fetch
- if ($display) {
- if ($this->caching && $this->cache_modified_check) {
- $_last_modified_date = @substr($_SERVER['HTTP_IF_MODIFIED_SINCE'], 0, strpos($_SERVER['HTTP_IF_MODIFIED_SINCE'], 'GMT') + 3);
- if ($_isCached && $_gmt_mtime == $_last_modified_date) {
- if (php_sapi_name() == 'cgi')
- header('Status: 304 Not Modified');
- else
- header('HTTP/1.1 304 Not Modified');
+ foreach ((array) $filters as $key => $value) {
+ if (!empty($this->autoload_filters[$key])) {
+ $this->autoload_filters[$key] = array_merge($this->autoload_filters[$key], (array) $value);
} else {
- header('Last-Modified: ' . gmdate('D, d M Y H:i:s', $_template->getCachedTimestamp()) . ' GMT');
- echo $_output;
+ $this->autoload_filters[$key] = (array) $value;
}
- } else {
- echo $_output;
- }
- // debug output
- if ($this->debugging) {
- Smarty_Internal_Debug::display_debug($this);
}
- return;
- } else {
- // return fetched content
- return $_output;
}
+
+ return $this;
}
/**
- * displays a Smarty template
- *
- * @param string $ |object $template the resource handle of the template file or template object
- * @param mixed $cache_id cache id to be used with this template
- * @param mixed $compile_id compile id to be used with this template
- * @param object $parent next higher level of Smarty variables
- */
- public function display($template, $cache_id = null, $compile_id = null, $parent = null)
+ * Get autoload filters
+ *
+ * @param string $type type of filter to get autoloads for. Defaults to all autoload filters
+ * @return array array( 'type1' => array( 'filter1', 'filter2', … ) ) or array( 'filter1', 'filter2', …) if $type was specified
+ */
+ public function getAutoloadFilters($type=null)
{
- // display template
- $this->fetch ($template, $cache_id, $compile_id, $parent, true);
+ if ($type !== null) {
+ return isset($this->autoload_filters[$type]) ? $this->autoload_filters[$type] : array();
+ }
+
+ return $this->autoload_filters;
}
/**
- * test if cache i valid
- *
- * @param string $ |object $template the resource handle of the template file or template object
- * @param mixed $cache_id cache id to be used with this template
- * @param mixed $compile_id compile id to be used with this template
- * @param object $parent next higher level of Smarty variables
- * @return boolean cache status
- */
- public function isCached($template, $cache_id = null, $compile_id = null, $parent = null)
+ * return name of debugging template
+ *
+ * @return string
+ */
+ public function getDebugTemplate()
{
- if ($parent === null) {
- $parent = $this;
- }
- if (!($template instanceof $this->template_class)) {
- $template = $this->createTemplate ($template, $cache_id, $compile_id, $parent, false);
- }
- // return cache status of template
- return $template->isCached();
+ return $this->debug_tpl;
}
/**
- * creates a data object
- *
- * @param object $parent next higher level of Smarty variables
- * @returns object data object
- */
- public function createData($parent = null)
+ * set the debug template
+ *
+ * @param string $tpl_name
+ * @return Smarty current Smarty instance for chaining
+ * @throws SmartyException if file is not readable
+ */
+ public function setDebugTemplate($tpl_name)
{
- return new Smarty_Data($parent, $this);
+ if (!is_readable($tpl_name)) {
+ throw new SmartyException("Unknown file '{$tpl_name}'");
+ }
+ $this->debug_tpl = $tpl_name;
+
+ return $this;
}
/**
- * creates a template object
- *
- * @param string $template the resource handle of the template file
- * @param mixed $cache_id cache id to be used with this template
- * @param mixed $compile_id compile id to be used with this template
- * @param object $parent next higher level of Smarty variables
- * @param boolean $do_clone flag is Smarty object shall be cloned
- * @returns object template object
- */
+ * creates a template object
+ *
+ * @param string $template the resource handle of the template file
+ * @param mixed $cache_id cache id to be used with this template
+ * @param mixed $compile_id compile id to be used with this template
+ * @param object $parent next higher level of Smarty variables
+ * @param boolean $do_clone flag is Smarty object shall be cloned
+ * @return object template object
+ */
public function createTemplate($template, $cache_id = null, $compile_id = null, $parent = null, $do_clone = true)
{
if (!empty($cache_id) && (is_object($cache_id) || is_array($cache_id))) {
} else {
$data = null;
}
- if (!is_object($template)) {
- // we got a template resource
- // already in template cache?
- $_templateId = sha1($template . $cache_id . $compile_id);
- if (isset($this->template_objects[$_templateId]) && $this->caching) {
+ // default to cache_id and compile_id of Smarty object
+ $cache_id = $cache_id === null ? $this->cache_id : $cache_id;
+ $compile_id = $compile_id === null ? $this->compile_id : $compile_id;
+ // already in template cache?
+ $unique_template_name = Smarty_Resource::getUniqueTemplateName($this, $template);
+ $_templateId = sha1($unique_template_name . $cache_id . $compile_id);
+ if ($do_clone) {
+ if (isset($this->template_objects[$_templateId])) {
// return cached template object
- $tpl = $this->template_objects[$_templateId];
+ $tpl = clone $this->template_objects[$_templateId];
+ $tpl->smarty = clone $tpl->smarty;
+ $tpl->parent = $parent;
} else {
- // create new template object
- if ($do_clone) {
- $tpl = new $this->template_class($template, clone $this, $parent, $cache_id, $compile_id);
- } else {
- $tpl = new $this->template_class($template, $this, $parent, $cache_id, $compile_id);
- }
+ $tpl = new $this->template_class($template, clone $this, $parent, $cache_id, $compile_id);
}
} else {
- // just return a copy of template class
- $tpl = $template;
+ if (isset($this->template_objects[$_templateId])) {
+ // return cached template object
+ $tpl = $this->template_objects[$_templateId];
+ } else {
+ $tpl = new $this->template_class($template, $this, $parent, $cache_id, $compile_id);
+ }
}
// fill data if present
if (!empty($data) && is_array($data)) {
}
-
- /**
- * Check if a template resource exists
- *
- * @param string $resource_name template name
- * @return boolean status
- */
- function templateExists($resource_name)
- {
- // create template object
- $save = $this->template_objects;
- $tpl = new $this->template_class($resource_name, $this);
- // check if it does exists
- $result = $tpl->isExisting();
- $this->template_objects = $save;
- return $result;
- }
-
/**
- * Returns a single or all global variables
- *
- * @param object $smarty
- * @param string $varname variable name or null
- * @return string variable value or or array of variables
- */
- function getGlobal($varname = null)
+ * Takes unknown classes and loads plugin files for them
+ * class name format: Smarty_PluginType_PluginName
+ * plugin filename format: plugintype.pluginname.php
+ *
+ * @param string $plugin_name class plugin name to load
+ * @param bool $check check if already loaded
+ * @return string |boolean filepath of loaded file or false
+ */
+ public function loadPlugin($plugin_name, $check = true)
{
- if (isset($varname)) {
- if (isset(self::$global_tpl_vars[$varname])) {
- return self::$global_tpl_vars[$varname]->value;
+ // if function or class exists, exit silently (already loaded)
+ if ($check && (is_callable($plugin_name) || class_exists($plugin_name, false))) {
+ return true;
+ }
+ // Plugin name is expected to be: Smarty_[Type]_[Name]
+ $_name_parts = explode('_', $plugin_name, 3);
+ // class name must have three parts to be valid plugin
+ // count($_name_parts) < 3 === !isset($_name_parts[2])
+ if (!isset($_name_parts[2]) || strtolower($_name_parts[0]) !== 'smarty') {
+ throw new SmartyException("plugin {$plugin_name} is not a valid name format");
+ return false;
+ }
+ // if type is "internal", get plugin from sysplugins
+ if (strtolower($_name_parts[1]) == 'internal') {
+ $file = SMARTY_SYSPLUGINS_DIR . strtolower($plugin_name) . '.php';
+ if (file_exists($file)) {
+ require_once($file);
+ return $file;
} else {
- return '';
+ return false;
}
- } else {
- $_result = array();
- foreach (self::$global_tpl_vars AS $key => $var) {
- $_result[$key] = $var->value;
+ }
+ // plugin filename is expected to be: [type].[name].php
+ $_plugin_filename = "{$_name_parts[1]}.{$_name_parts[2]}.php";
+
+ // loop through plugin dirs and find the plugin
+ foreach($this->getPluginsDir() as $_plugin_dir) {
+ $names = array(
+ $_plugin_dir . $_plugin_filename,
+ $_plugin_dir . strtolower($_plugin_filename),
+ );
+ foreach ($names as $file) {
+ if (file_exists($file)) {
+ require_once($file);
+ return $file;
+ }
+ if ($this->use_include_path && !preg_match('/^([\/\\\\]|[a-zA-Z]:[\/\\\\])/', $_plugin_dir)) {
+ // try PHP include_path
+ if (($file = Smarty_Internal_Get_Include_Path::getIncludePath($file)) !== false) {
+ require_once($file);
+ return $file;
+ }
+ }
}
- return $_result;
}
+ // no plugin loaded
+ return false;
}
/**
- * Empty cache folder
+ * Compile all template files
*
- * @param integer $exp_time expiration time
- * @param string $type resource type
- * @return integer number of cache files deleted
+ * @param string $extension file extension
+ * @param bool $force_compile force all to recompile
+ * @param int $time_limit
+ * @param int $max_errors
+ * @return integer number of template files recompiled
*/
- function clearAllCache($exp_time = null, $type = null)
+ public function compileAllTemplates($extention = '.tpl', $force_compile = false, $time_limit = 0, $max_errors = null)
{
- // load cache resource and call clearAll
- return $this->loadCacheResource($type)->clearAll($exp_time);
+ return Smarty_Internal_Utility::compileAllTemplates($extention, $force_compile, $time_limit, $max_errors, $this);
}
/**
- * Empty cache for a specific template
+ * Compile all config files
*
- * @param string $template_name template name
- * @param string $cache_id cache id
- * @param string $compile_id compile id
- * @param integer $exp_time expiration time
- * @param string $type resource type
- * @return integer number of cache files deleted
+ * @param string $extension file extension
+ * @param bool $force_compile force all to recompile
+ * @param int $time_limit
+ * @param int $max_errors
+ * @return integer number of template files recompiled
*/
- function clearCache($template_name, $cache_id = null, $compile_id = null, $exp_time = null, $type = null)
+ public function compileAllConfig($extention = '.conf', $force_compile = false, $time_limit = 0, $max_errors = null)
{
- // load cache resource and call clear
- return $this->loadCacheResource($type)->clear($template_name, $cache_id, $compile_id, $exp_time);
+ return Smarty_Internal_Utility::compileAllConfig($extention, $force_compile, $time_limit, $max_errors, $this);
}
/**
- * Loads security class and enables security
- */
- public function enableSecurity($security_class = null)
+ * Delete compiled template file
+ *
+ * @param string $resource_name template name
+ * @param string $compile_id compile id
+ * @param integer $exp_time expiration time
+ * @return integer number of template files deleted
+ */
+ public function clearCompiledTemplate($resource_name = null, $compile_id = null, $exp_time = null)
{
- if ($security_class instanceof Smarty_Security) {
- $this->security_policy = $security_class;
- return;
- }
- if ($security_class == null) {
- $security_class = $this->security_class;
- }
- if (class_exists($security_class)) {
- $this->security_policy = new $security_class($this);
- } else {
- throw new SmartyException("Security class '$security_class' is not defined");
- }
+ return Smarty_Internal_Utility::clearCompiledTemplate($resource_name, $compile_id, $exp_time, $this);
}
- /**
- * Disable security
- */
- public function disableSecurity()
- {
- $this->security_policy = null;
- }
/**
- * Loads cache resource.
+ * Return array of tag/attributes of all tags used by an template
*
- * @param string $type cache resource type
- * @return object of cache resource
+ * @param object $templae template object
+ * @return array of tag/attributes
*/
- public function loadCacheResource($type = null) {
- if (!isset($type)) {
- $type = $this->caching_type;
- }
- if (in_array($type, $this->cache_resource_types)) {
- $cache_resource_class = 'Smarty_Internal_CacheResource_' . ucfirst($type);
- return new $cache_resource_class($this);
- }
- else {
- // try plugins dir
- $cache_resource_class = 'Smarty_CacheResource_' . ucfirst($type);
- if ($this->loadPlugin($cache_resource_class)) {
- return new $cache_resource_class($this);
- }
- else {
- throw new SmartyException("Unable to load cache resource '{$type}'");
- }
- }
- }
-
-
- /**
- * Set template directory
- *
- * @param string $ |array $template_dir folder(s) of template sorces
- */
- public function setTemplateDir($template_dir)
+ public function getTags(Smarty_Internal_Template $template)
{
- $this->template_dir = (array)$template_dir;
- return;
+ return Smarty_Internal_Utility::getTags($template);
}
/**
- * Adds template directory(s) to existing ones
+ * Run installation test
*
- * @param string $ |array $template_dir folder(s) of template sources
+ * @param array $errors Array to write errors into, rather than outputting them
+ * @return boolean true if setup is fine, false if something is wrong
*/
- public function addTemplateDir($template_dir)
+ public function testInstall(&$errors=null)
{
- $this->template_dir = array_unique(array_merge((array)$this->template_dir, (array)$template_dir));
- return;
+ return Smarty_Internal_Utility::testInstall($this, $errors);
}
/**
- * Adds directory of plugin files
+ * Error Handler to mute expected messages
*
- * @param object $smarty
- * @param string $ |array $ plugins folder
- * @return
+ * @link http://php.net/set_error_handler
+ * @param integer $errno Error level
+ * @return boolean
*/
- function addPluginsDir($plugins_dir)
+ public static function mutingErrorHandler($errno, $errstr, $errfile, $errline, $errcontext)
{
- $this->plugins_dir = array_unique(array_merge((array)$this->plugins_dir, (array)$plugins_dir));
- return;
- }
+ $_is_muted_directory = false;
+
+ // add the SMARTY_DIR to the list of muted directories
+ if (!isset(Smarty::$_muted_directories[SMARTY_DIR])) {
+ $smarty_dir = realpath(SMARTY_DIR);
+ Smarty::$_muted_directories[SMARTY_DIR] = array(
+ 'file' => $smarty_dir,
+ 'length' => strlen($smarty_dir),
+ );
+ }
+
+ // walk the muted directories and test against $errfile
+ foreach (Smarty::$_muted_directories as $key => &$dir) {
+ if (!$dir) {
+ // resolve directory and length for speedy comparisons
+ $file = realpath($key);
+ $dir = array(
+ 'file' => $file,
+ 'length' => strlen($file),
+ );
+ }
+ if (!strncmp($errfile, $dir['file'], $dir['length'])) {
+ $_is_muted_directory = true;
+ break;
+ }
+ }
+ // pass to next error handler if this error did not occur inside SMARTY_DIR
+ // or the error was within smarty but masked to be ignored
+ if (!$_is_muted_directory || ($errno && $errno & error_reporting())) {
+ if (Smarty::$_previous_error_handler) {
+ return call_user_func(Smarty::$_previous_error_handler, $errno, $errstr, $errfile, $errline, $errcontext);
+ } else {
+ return false;
+ }
+ }
+ }
/**
- * return a reference to a registered object
+ * Enable error handler to mute expected messages
*
- * @param string $name object name
- * @return object
+ * @return void
*/
- function getRegisteredObject($name)
+ public static function muteExpectedErrors()
{
- if (!isset($this->registered_objects[$name]))
- throw new SmartyException("'$name' is not a registered object");
-
- if (!is_object($this->registered_objects[$name][0]))
- throw new SmartyException("registered '$name' is not an object");
-
- return $this->registered_objects[$name][0];
- }
+ /*
+ error muting is done because some people implemented custom error_handlers using
+ http://php.net/set_error_handler and for some reason did not understand the following paragraph:
+ It is important to remember that the standard PHP error handler is completely bypassed for the
+ error types specified by error_types unless the callback function returns FALSE.
+ error_reporting() settings will have no effect and your error handler will be called regardless -
+ however you are still able to read the current value of error_reporting and act appropriately.
+ Of particular note is that this value will be 0 if the statement that caused the error was
+ prepended by the @ error-control operator.
- /**
- * return name of debugging template
- *
- * @return string
- */
- function getDebugTemplate()
- {
- return $this->debug_tpl;
- }
+ Smarty deliberately uses @filemtime() over file_exists() and filemtime() in some places. Reasons include
+ - @filemtime() is almost twice as fast as using an additional file_exists()
+ - between file_exists() and filemtime() a possible race condition is opened,
+ which does not exist using the simple @filemtime() approach.
+ */
+ $error_handler = array('Smarty', 'mutingErrorHandler');
+ $previous = set_error_handler($error_handler);
- /**
- * set the debug template
- *
- * @param string $tpl_name
- * @return bool
- */
- function setDebugTemplate($tpl_name)
- {
- return $this->debug_tpl = $tpl_name;
+ // avoid dead loops
+ if ($previous !== $error_handler) {
+ Smarty::$_previous_error_handler = $previous;
+ }
}
/**
- * Takes unknown classes and loads plugin files for them
- * class name format: Smarty_PluginType_PluginName
- * plugin filename format: plugintype.pluginname.php
+ * Disable error handler muting expected messages
*
- * @param string $plugin_name class plugin name to load
- * @return string |boolean filepath of loaded file or false
+ * @return void
*/
- public function loadPlugin($plugin_name, $check = true)
+ public static function unmuteExpectedErrors()
{
- // if function or class exists, exit silently (already loaded)
- if ($check && (is_callable($plugin_name) || class_exists($plugin_name, false)))
- return true;
- // Plugin name is expected to be: Smarty_[Type]_[Name]
- $_plugin_name = strtolower($plugin_name);
- $_name_parts = explode('_', $_plugin_name, 3);
- // class name must have three parts to be valid plugin
- if (count($_name_parts) < 3 || $_name_parts[0] !== 'smarty') {
- throw new SmartyException("plugin {$plugin_name} is not a valid name format");
- return false;
- }
- // if type is "internal", get plugin from sysplugins
- if ($_name_parts[1] == 'internal') {
- $file = SMARTY_SYSPLUGINS_DIR . $_plugin_name . '.php';
- if (file_exists($file)) {
- require_once($file);
- return $file;
- } else {
- return false;
- }
- }
- // plugin filename is expected to be: [type].[name].php
- $_plugin_filename = "{$_name_parts[1]}.{$_name_parts[2]}.php";
- // loop through plugin dirs and find the plugin
- foreach((array)$this->plugins_dir as $_plugin_dir) {
- if (strpos('/\\', substr($_plugin_dir, -1)) === false) {
- $_plugin_dir .= DS;
- }
- $file = $_plugin_dir . $_plugin_filename;
- if (file_exists($file)) {
- require_once($file);
- return $file;
- }
- }
- // no plugin loaded
- return false;
+ restore_error_handler();
}
+}
- /**
- * clean up properties on cloned object
- */
- public function __clone()
- {
- // clear config vars
- $this->config_vars = array();
- // clear assigned tpl vars
- $this->tpl_vars = array();
- // clear objects for external methods
- unset($this->register);
- unset($this->filter);
- }
-
+/**
+* Smarty exception class
+* @package Smarty
+*/
+class SmartyException extends Exception {
+}
- /**
- * Handle unknown class methods
- *
- * @param string $name unknown methode name
- * @param array $args aurgument array
- */
- public function __call($name, $args)
- {
- static $camel_func;
- if (!isset($camel_func))
- $camel_func = create_function('$c', 'return "_" . strtolower($c[1]);');
- // see if this is a set/get for a property
- $first3 = strtolower(substr($name, 0, 3));
- if (in_array($first3, array('set', 'get')) && substr($name, 3, 1) !== '_') {
- // try to keep case correct for future PHP 6.0 case-sensitive class methods
- // lcfirst() not available < PHP 5.3.0, so improvise
- $property_name = strtolower(substr($name, 3, 1)) . substr($name, 4);
- // convert camel case to underscored name
- $property_name = preg_replace_callback('/([A-Z])/', $camel_func, $property_name);
- if (!property_exists($this, $property_name)) {
- throw new SmartyException("property '$property_name' does not exist.");
- return false;
- }
- if ($first3 == 'get')
- return $this->$property_name;
- else
- return $this->$property_name = $args[0];
- }
- // Smarty Backward Compatible wrapper
- if (strpos($name,'_') !== false) {
- if (!isset($this->wrapper)) {
- $this->wrapper = new Smarty_Internal_Wrapper($this);
- }
- return $this->wrapper->convert($name, $args);
- }
- // external Smarty methods ?
- foreach(array('Filter','Register') as $external) {
- if (class_exists("Smarty_Internal_{$external}") && method_exists("Smarty_Internal_{$external}",$name)) {
- if (!isset($this->$external)) {
- $class = "Smarty_Internal_{$external}";
- $this->$external = new $class($this);
- }
- return call_user_func_array(array($this->$external,$name), $args);
- }
- }
- if (in_array($name,array('clearCompiledTemplate','compileAllTemplates','compileAllConfig','testInstall','getTags'))) {
- if (!isset($this->utility)) {
- $this->utility = new Smarty_Internal_Utility($this);
- }
- return call_user_func_array(array($this->utility,$name), $args);
- }
- // PHP4 call to constructor?
- if (strtolower($name) == 'smarty') {
- throw new SmartyException('Please use parent::__construct() to call parent constuctor');
- return false;
- }
- throw new SmartyException("Call of unknown function '$name'.");
- }
+/**
+* Smarty compiler exception class
+* @package Smarty
+*/
+class SmartyCompilerException extends SmartyException {
}
/**
- * Autoloader
- */
+* Autoloader
+*/
function smartyAutoload($class)
{
$_class = strtolower($class);
- if (substr($_class, 0, 16) === 'smarty_internal_' || $_class == 'smarty_security') {
+ $_classes = array(
+ 'smarty_config_source' => true,
+ 'smarty_config_compiled' => true,
+ 'smarty_security' => true,
+ 'smarty_cacheresource' => true,
+ 'smarty_cacheresource_custom' => true,
+ 'smarty_cacheresource_keyvaluestore' => true,
+ 'smarty_resource' => true,
+ 'smarty_resource_custom' => true,
+ 'smarty_resource_uncompiled' => true,
+ 'smarty_resource_recompiled' => true,
+ );
+
+ if (!strncmp($_class, 'smarty_internal_', 16) || isset($_classes[$_class])) {
include SMARTY_SYSPLUGINS_DIR . $_class . '.php';
}
}
-/**
- * Smarty exception class
- */
-Class SmartyException extends Exception {
-}
-
-/**
- * Smarty compiler exception class
- */
-Class SmartyCompilerException extends SmartyException {
-}
-
?>
diff --git a/gosa-core/include/smarty/SmartyBC.class.php b/gosa-core/include/smarty/SmartyBC.class.php
--- /dev/null
@@ -0,0 +1,460 @@
+<?php\r
+/**\r
+ * Project: Smarty: the PHP compiling template engine\r
+ * File: SmartyBC.class.php\r
+ * SVN: $Id: $\r
+ *\r
+ * This library is free software; you can redistribute it and/or\r
+ * modify it under the terms of the GNU Lesser General Public\r
+ * License as published by the Free Software Foundation; either\r
+ * version 2.1 of the License, or (at your option) any later version.\r
+ *\r
+ * This library is distributed in the hope that it will be useful,\r
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of\r
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\r
+ * Lesser General Public License for more details.\r
+ *\r
+ * You should have received a copy of the GNU Lesser General Public\r
+ * License along with this library; if not, write to the Free Software\r
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\r
+ *\r
+ * For questions, help, comments, discussion, etc., please join the\r
+ * Smarty mailing list. Send a blank e-mail to\r
+ * smarty-discussion-subscribe@googlegroups.com\r
+ *\r
+ * @link http://www.smarty.net/\r
+ * @copyright 2008 New Digital Group, Inc.\r
+ * @author Monte Ohrt <monte at ohrt dot com>\r
+ * @author Uwe Tews\r
+ * @author Rodney Rehm\r
+ * @package Smarty\r
+ */\r
+/**\r
+ * @ignore\r
+ */\r
+require(dirname(__FILE__) . '/Smarty.class.php');\r
+\r
+/**\r
+ * Smarty Backward Compatability Wrapper Class\r
+ *\r
+ * @package Smarty\r
+ */\r
+class SmartyBC extends Smarty {\r
+\r
+ /**\r
+ * Smarty 2 BC\r
+ * @var string\r
+ */\r
+ public $_version = self::SMARTY_VERSION;\r
+\r
+ /**\r
+ * Initialize new SmartyBC object\r
+ *\r
+ * @param array $options options to set during initialization, e.g. array( 'forceCompile' => false )\r
+ */\r
+ public function __construct(array $options=array())\r
+ {\r
+ parent::__construct($options);\r
+ // register {php} tag\r
+ $this->registerPlugin('block', 'php', 'smarty_php_tag');\r
+ }\r
+\r
+ /**\r
+ * wrapper for assign_by_ref\r
+ *\r
+ * @param string $tpl_var the template variable name\r
+ * @param mixed &$value the referenced value to assign\r
+ */\r
+ public function assign_by_ref($tpl_var, &$value)\r
+ {\r
+ $this->assignByRef($tpl_var, $value);\r
+ }\r
+\r
+ /**\r
+ * wrapper for append_by_ref\r
+ *\r
+ * @param string $tpl_var the template variable name\r
+ * @param mixed &$value the referenced value to append\r
+ * @param boolean $merge flag if array elements shall be merged\r
+ */\r
+ public function append_by_ref($tpl_var, &$value, $merge = false)\r
+ {\r
+ $this->appendByRef($tpl_var, $value, $merge);\r
+ }\r
+\r
+ /**\r
+ * clear the given assigned template variable.\r
+ *\r
+ * @param string $tpl_var the template variable to clear\r
+ */\r
+ public function clear_assign($tpl_var)\r
+ {\r
+ $this->clearAssign($tpl_var);\r
+ }\r
+\r
+ /**\r
+ * Registers custom function to be used in templates\r
+ *\r
+ * @param string $function the name of the template function\r
+ * @param string $function_impl the name of the PHP function to register\r
+ * @param bool $cacheable\r
+ * @param mixed $cache_attrs\r
+ */\r
+ public function register_function($function, $function_impl, $cacheable=true, $cache_attrs=null)\r
+ {\r
+ $this->registerPlugin('function', $function, $function_impl, $cacheable, $cache_attrs);\r
+ }\r
+\r
+ /**\r
+ * Unregisters custom function\r
+ *\r
+ * @param string $function name of template function\r
+ */\r
+ public function unregister_function($function)\r
+ {\r
+ $this->unregisterPlugin('function', $function);\r
+ }\r
+\r
+ /**\r
+ * Registers object to be used in templates\r
+ *\r
+ * @param string $object name of template object\r
+ * @param object $object_impl the referenced PHP object to register\r
+ * @param array $allowed list of allowed methods (empty = all)\r
+ * @param boolean $smarty_args smarty argument format, else traditional\r
+ * @param array $block_functs list of methods that are block format\r
+ */\r
+ public function register_object($object, $object_impl, $allowed = array(), $smarty_args = true, $block_methods = array())\r
+ {\r
+ settype($allowed, 'array');\r
+ settype($smarty_args, 'boolean');\r
+ $this->registerObject($object, $object_impl, $allowed, $smarty_args, $block_methods);\r
+ }\r
+\r
+ /**\r
+ * Unregisters object\r
+ *\r
+ * @param string $object name of template object\r
+ */\r
+ public function unregister_object($object)\r
+ {\r
+ $this->unregisterObject($object);\r
+ }\r
+\r
+ /**\r
+ * Registers block function to be used in templates\r
+ *\r
+ * @param string $block name of template block\r
+ * @param string $block_impl PHP function to register\r
+ * @param bool $cacheable\r
+ * @param mixed $cache_attrs\r
+ */\r
+ public function register_block($block, $block_impl, $cacheable=true, $cache_attrs=null)\r
+ {\r
+ $this->registerPlugin('block', $block, $block_impl, $cacheable, $cache_attrs);\r
+ }\r
+\r
+ /**\r
+ * Unregisters block function\r
+ *\r
+ * @param string $block name of template function\r
+ */\r
+ public function unregister_block($block)\r
+ {\r
+ $this->unregisterPlugin('block', $block);\r
+ }\r
+\r
+ /**\r
+ * Registers compiler function\r
+ *\r
+ * @param string $function name of template function\r
+ * @param string $function_impl name of PHP function to register\r
+ * @param bool $cacheable\r
+ */\r
+ public function register_compiler_function($function, $function_impl, $cacheable=true)\r
+ {\r
+ $this->registerPlugin('compiler', $function, $function_impl, $cacheable);\r
+ }\r
+\r
+ /**\r
+ * Unregisters compiler function\r
+ *\r
+ * @param string $function name of template function\r
+ */\r
+ public function unregister_compiler_function($function)\r
+ {\r
+ $this->unregisterPlugin('compiler', $function);\r
+ }\r
+\r
+ /**\r
+ * Registers modifier to be used in templates\r
+ *\r
+ * @param string $modifier name of template modifier\r
+ * @param string $modifier_impl name of PHP function to register\r
+ */\r
+ public function register_modifier($modifier, $modifier_impl)\r
+ {\r
+ $this->registerPlugin('modifier', $modifier, $modifier_impl);\r
+ }\r
+\r
+ /**\r
+ * Unregisters modifier\r
+ *\r
+ * @param string $modifier name of template modifier\r
+ */\r
+ public function unregister_modifier($modifier)\r
+ {\r
+ $this->unregisterPlugin('modifier', $modifier);\r
+ }\r
+\r
+ /**\r
+ * Registers a resource to fetch a template\r
+ *\r
+ * @param string $type name of resource\r
+ * @param array $functions array of functions to handle resource\r
+ */\r
+ public function register_resource($type, $functions)\r
+ {\r
+ $this->registerResource($type, $functions);\r
+ }\r
+\r
+ /**\r
+ * Unregisters a resource\r
+ *\r
+ * @param string $type name of resource\r
+ */\r
+ public function unregister_resource($type)\r
+ {\r
+ $this->unregisterResource($type);\r
+ }\r
+\r
+ /**\r
+ * Registers a prefilter function to apply\r
+ * to a template before compiling\r
+ *\r
+ * @param callable $function\r
+ */\r
+ public function register_prefilter($function)\r
+ {\r
+ $this->registerFilter('pre', $function);\r
+ }\r
+\r
+ /**\r
+ * Unregisters a prefilter function\r
+ *\r
+ * @param callable $function\r
+ */\r
+ public function unregister_prefilter($function)\r
+ {\r
+ $this->unregisterFilter('pre', $function);\r
+ }\r
+\r
+ /**\r
+ * Registers a postfilter function to apply\r
+ * to a compiled template after compilation\r
+ *\r
+ * @param callable $function\r
+ */\r
+ public function register_postfilter($function)\r
+ {\r
+ $this->registerFilter('post', $function);\r
+ }\r
+\r
+ /**\r
+ * Unregisters a postfilter function\r
+ *\r
+ * @param callable $function\r
+ */\r
+ public function unregister_postfilter($function)\r
+ {\r
+ $this->unregisterFilter('post', $function);\r
+ }\r
+\r
+ /**\r
+ * Registers an output filter function to apply\r
+ * to a template output\r
+ *\r
+ * @param callable $function\r
+ */\r
+ public function register_outputfilter($function)\r
+ {\r
+ $this->registerFilter('output', $function);\r
+ }\r
+\r
+ /**\r
+ * Unregisters an outputfilter function\r
+ *\r
+ * @param callable $function\r
+ */\r
+ public function unregister_outputfilter($function)\r
+ {\r
+ $this->unregisterFilter('output', $function);\r
+ }\r
+\r
+ /**\r
+ * load a filter of specified type and name\r
+ *\r
+ * @param string $type filter type\r
+ * @param string $name filter name\r
+ */\r
+ public function load_filter($type, $name)\r
+ {\r
+ $this->loadFilter($type, $name);\r
+ }\r
+\r
+ /**\r
+ * clear cached content for the given template and cache id\r
+ *\r
+ * @param string $tpl_file name of template file\r
+ * @param string $cache_id name of cache_id\r
+ * @param string $compile_id name of compile_id\r
+ * @param string $exp_time expiration time\r
+ * @return boolean\r
+ */\r
+ public function clear_cache($tpl_file = null, $cache_id = null, $compile_id = null, $exp_time = null)\r
+ {\r
+ return $this->clearCache($tpl_file, $cache_id, $compile_id, $exp_time);\r
+ }\r
+\r
+ /**\r
+ * clear the entire contents of cache (all templates)\r
+ *\r
+ * @param string $exp_time expire time\r
+ * @return boolean\r
+ */\r
+ public function clear_all_cache($exp_time = null)\r
+ {\r
+ return $this->clearCache(null, null, null, $exp_time);\r
+ }\r
+\r
+ /**\r
+ * test to see if valid cache exists for this template\r
+ *\r
+ * @param string $tpl_file name of template file\r
+ * @param string $cache_id\r
+ * @param string $compile_id\r
+ * @return boolean\r
+ */\r
+ public function is_cached($tpl_file, $cache_id = null, $compile_id = null)\r
+ {\r
+ return $this->isCached($tpl_file, $cache_id, $compile_id);\r
+ }\r
+\r
+ /**\r
+ * clear all the assigned template variables.\r
+ */\r
+ public function clear_all_assign()\r
+ {\r
+ $this->clearAllAssign();\r
+ }\r
+\r
+ /**\r
+ * clears compiled version of specified template resource,\r
+ * or all compiled template files if one is not specified.\r
+ * This function is for advanced use only, not normally needed.\r
+ *\r
+ * @param string $tpl_file\r
+ * @param string $compile_id\r
+ * @param string $exp_time\r
+ * @return boolean results of {@link smarty_core_rm_auto()}\r
+ */\r
+ public function clear_compiled_tpl($tpl_file = null, $compile_id = null, $exp_time = null)\r
+ {\r
+ return $this->clearCompiledTemplate($tpl_file, $compile_id, $exp_time);\r
+ }\r
+\r
+ /**\r
+ * Checks whether requested template exists.\r
+ *\r
+ * @param string $tpl_file\r
+ * @return boolean\r
+ */\r
+ public function template_exists($tpl_file)\r
+ {\r
+ return $this->templateExists($tpl_file);\r
+ }\r
+\r
+ /**\r
+ * Returns an array containing template variables\r
+ *\r
+ * @param string $name\r
+ * @return array\r
+ */\r
+ public function get_template_vars($name=null)\r
+ {\r
+ return $this->getTemplateVars($name);\r
+ }\r
+\r
+ /**\r
+ * Returns an array containing config variables\r
+ *\r
+ * @param string $name\r
+ * @return array\r
+ */\r
+ public function get_config_vars($name=null)\r
+ {\r
+ return $this->getConfigVars($name);\r
+ }\r
+\r
+ /**\r
+ * load configuration values\r
+ *\r
+ * @param string $file\r
+ * @param string $section\r
+ * @param string $scope\r
+ */\r
+ public function config_load($file, $section = null, $scope = 'global')\r
+ {\r
+ $this->ConfigLoad($file, $section, $scope);\r
+ }\r
+\r
+ /**\r
+ * return a reference to a registered object\r
+ *\r
+ * @param string $name\r
+ * @return object\r
+ */\r
+ public function get_registered_object($name)\r
+ {\r
+ return $this->getRegisteredObject($name);\r
+ }\r
+\r
+ /**\r
+ * clear configuration values\r
+ *\r
+ * @param string $var\r
+ */\r
+ public function clear_config($var = null)\r
+ {\r
+ $this->clearConfig($var);\r
+ }\r
+\r
+ /**\r
+ * trigger Smarty error\r
+ *\r
+ * @param string $error_msg\r
+ * @param integer $error_type\r
+ */\r
+ public function trigger_error($error_msg, $error_type = E_USER_WARNING)\r
+ {\r
+ trigger_error("Smarty error: $error_msg", $error_type);\r
+ }\r
+\r
+}\r
+\r
+/**\r
+ * Smarty {php}{/php} block function\r
+ *\r
+ * @param array $params parameter list\r
+ * @param string $content contents of the block\r
+ * @param object $template template object\r
+ * @param boolean &$repeat repeat flag\r
+ * @return string content re-formatted\r
+ */\r
+function smarty_php_tag($params, $content, $template, &$repeat)\r
+{\r
+ eval($content);\r
+ return '';\r
+}\r
+\r
+?>
\ No newline at end of file
index 058c5b204a8a84ac252930b2d9f9abdd4aefe7c2..12eef0ffdbf046fb9daf2b6189ed35f2148b654f 100644 (file)
</head>
<body>
-<h1>Smarty Debug Console - {if isset($template_name)}{$template_name|debug_print_var}{else}Total Time {$execution_time|string_format:"%.5f"}{/if}</h1>
+<h1>Smarty Debug Console - {if isset($template_name)}{$template_name|debug_print_var nofilter}{else}Total Time {$execution_time|string_format:"%.5f"}{/if}</h1>
{if !empty($template_data)}
<h2>included templates & config files (load time in seconds)</h2>
{foreach $assigned_vars as $vars}
<tr class="{if $vars@iteration % 2 eq 0}odd{else}even{/if}">
<th>${$vars@key|escape:'html'}</th>
- <td>{$vars|debug_print_var}</td></tr>
+ <td>{$vars|debug_print_var nofilter}</td></tr>
{/foreach}
</table>
{foreach $config_vars as $vars}
<tr class="{if $vars@iteration % 2 eq 0}odd{else}even{/if}">
<th>{$vars@key|escape:'html'}</th>
- <td>{$vars|debug_print_var}</td></tr>
+ <td>{$vars|debug_print_var nofilter}</td></tr>
{/foreach}
</table>
<script type="text/javascript">
{$id = $template_name|default:''|md5}
_smarty_console = window.open("","console{$id}","width=680,height=600,resizable,scrollbars=yes");
- _smarty_console.document.write("{$debug_output|escape:'javascript'}");
+ _smarty_console.document.write("{$debug_output|escape:'javascript' nofilter}");
_smarty_console.document.close();
</script>
diff --git a/gosa-core/include/smarty/plugins/block.textformat.php b/gosa-core/include/smarty/plugins/block.textformat.php
index 517fd62dd5274284c9f6256aa988a36c1b5f3271..bdd8067310bec084eb7b3e5f8c291e5404749960 100644 (file)
/**
* Smarty {textformat}{/textformat} block plugin
- *
+ *
* Type: block function<br>
* Name: textformat<br>
* Purpose: format text a certain way with preset styles
- * or custom wrap/indent settings<br>
- *
- * @link http://smarty.php.net/manual/en/language.function.textformat.php {textformat}
- * (Smarty online manual)
- * @param array $params parameters
+ * or custom wrap/indent settings<br>
+ * Params:
* <pre>
- * Params: style: string (email)
- * indent: integer (0)
- * wrap: integer (80)
- * wrap_char string ("\n")
- * indent_char: string (" ")
- * wrap_boundary: boolean (true)
+ * - style - string (email)
+ * - indent - integer (0)
+ * - wrap - integer (80)
+ * - wrap_char - string ("\n")
+ * - indent_char - string (" ")
+ * - wrap_boundary - boolean (true)
* </pre>
- * @author Monte Ohrt <monte at ohrt dot com>
- * @param string $content contents of the block
- * @param object $template template object
- * @param boolean &$repeat repeat flag
+ *
+ * @link http://www.smarty.net/manual/en/language.function.textformat.php {textformat}
+ * (Smarty online manual)
+ * @param array $params parameters
+ * @param string $content contents of the block
+ * @param Smarty_Internal_Template $template template object
+ * @param boolean &$repeat repeat flag
* @return string content re-formatted
+ * @author Monte Ohrt <monte at ohrt dot com>
*/
function smarty_block_textformat($params, $content, $template, &$repeat)
{
if (is_null($content)) {
return;
- }
+ }
$style = null;
$indent = 0;
default:
trigger_error("textformat: unknown attribute '$_key'");
- }
- }
+ }
+ }
if ($style == 'email') {
$wrap = 72;
- }
+ }
// split into paragraphs
- $_paragraphs = preg_split('![\r\n][\r\n]!', $content);
+ $_paragraphs = preg_split('![\r\n]{2}!', $content);
$_output = '';
- for($_x = 0, $_y = count($_paragraphs); $_x < $_y; $_x++) {
- if ($_paragraphs[$_x] == '') {
+
+ foreach ($_paragraphs as &$_paragraph) {
+ if (!$_paragraph) {
continue;
- }
+ }
// convert mult. spaces & special chars to single space
- $_paragraphs[$_x] = preg_replace(array('!\s+!', '!(^\s+)|(\s+$)!'), array(' ', ''), $_paragraphs[$_x]);
+ $_paragraph = preg_replace(array('!\s+!u', '!(^\s+)|(\s+$)!u'), array(' ', ''), $_paragraph);
// indent first line
if ($indent_first > 0) {
- $_paragraphs[$_x] = str_repeat($indent_char, $indent_first) . $_paragraphs[$_x];
- }
+ $_paragraph = str_repeat($indent_char, $indent_first) . $_paragraph;
+ }
// wordwrap sentences
- $_paragraphs[$_x] = wordwrap($_paragraphs[$_x], $wrap - $indent, $wrap_char, $wrap_cut);
+ if (SMARTY_MBSTRING /* ^phpunit */&&empty($_SERVER['SMARTY_PHPUNIT_DISABLE_MBSTRING'])/* phpunit$ */) {
+ require_once(SMARTY_PLUGINS_DIR . 'shared.mb_wordwrap.php');
+ $_paragraph = smarty_mb_wordwrap($_paragraph, $wrap - $indent, $wrap_char, $wrap_cut);
+ } else {
+ $_paragraph = wordwrap($_paragraph, $wrap - $indent, $wrap_char, $wrap_cut);
+ }
// indent lines
if ($indent > 0) {
- $_paragraphs[$_x] = preg_replace('!^!m', str_repeat($indent_char, $indent), $_paragraphs[$_x]);
- }
- }
+ $_paragraph = preg_replace('!^!m', str_repeat($indent_char, $indent), $_paragraph);
+ }
+ }
$_output = implode($wrap_char . $wrap_char, $_paragraphs);
- return $assign ? $template->assign($assign, $_output) : $_output;
-}
+ if ($assign) {
+ $template->assign($assign, $_output);
+ } else {
+ return $_output;
+ }
+}
?>
\ No newline at end of file
diff --git a/gosa-core/include/smarty/plugins/function.counter.php b/gosa-core/include/smarty/plugins/function.counter.php
index 7c50bd44b7e0f51c3f102cd64f1cfb18a81a98f4..3906badf0f680fee6974a1fdb1a8ff0bc139a476 100644 (file)
* Type: function<br>
* Name: counter<br>
* Purpose: print out a counter value
+ *
* @author Monte Ohrt <monte at ohrt dot com>
- * @link http://smarty.php.net/manual/en/language.function.counter.php {counter}
+ * @link http://www.smarty.net/manual/en/language.function.counter.php {counter}
* (Smarty online manual)
- * @param array parameters
- * @param Smarty
- * @param object $template template object
+ * @param array $params parameters
+ * @param Smarty_Internal_Template $template template object
* @return string|null
*/
function smarty_function_counter($params, $template)
diff --git a/gosa-core/include/smarty/plugins/function.cycle.php b/gosa-core/include/smarty/plugins/function.cycle.php
index 98e3e28781afba867951dd0eea59b017c02b2690..1778ffb538c3d7265fd18cb564cc317549996f33 100644 (file)
* Name: cycle<br>
* Date: May 3, 2002<br>
* Purpose: cycle through given values<br>
- * Input:
- * - name = name of cycle (optional)
- * - values = comma separated list of values to cycle,
- * or an array of values to cycle
- * (this can be left out for subsequent calls)
- * - reset = boolean - resets given var to true
- * - print = boolean - print var or not. default is true
- * - advance = boolean - whether or not to advance the cycle
- * - delimiter = the value delimiter, default is ","
- * - assign = boolean, assigns to template var instead of
- * printed.
- *
+ * Params:
+ * <pre>
+ * - name - name of cycle (optional)
+ * - values - comma separated list of values to cycle, or an array of values to cycle
+ * (this can be left out for subsequent calls)
+ * - reset - boolean - resets given var to true
+ * - print - boolean - print var or not. default is true
+ * - advance - boolean - whether or not to advance the cycle
+ * - delimiter - the value delimiter, default is ","
+ * - assign - boolean, assigns to template var instead of printed.
+ * </pre>
* Examples:<br>
* <pre>
* {cycle values="#eeeeee,#d0d0d0d"}
* {cycle name=row values="one,two,three" reset=true}
* {cycle name=row}
* </pre>
- * @link http://smarty.php.net/manual/en/language.function.cycle.php {cycle}
+ *
+ * @link http://www.smarty.net/manual/en/language.function.cycle.php {cycle}
* (Smarty online manual)
* @author Monte Ohrt <monte at ohrt dot com>
* @author credit to Mark Priatel <mpriatel@rogers.com>
* @author credit to Gerard <gerard@interfold.com>
* @author credit to Jason Sweat <jsweat_php@yahoo.com>
* @version 1.3
- * @param array
- * @param object $template template object
+ * @param array $params parameters
+ * @param Smarty_Internal_Template $template template object
* @return string|null
*/
function smarty_function_cycle($params, $template)
{
static $cycle_vars;
-
+
$name = (empty($params['name'])) ? 'default' : $params['name'];
$print = (isset($params['print'])) ? (bool)$params['print'] : true;
$advance = (isset($params['advance'])) ? (bool)$params['advance'] : true;
$reset = (isset($params['reset'])) ? (bool)$params['reset'] : false;
-
- if (!in_array('values', array_keys($params))) {
+
+ if (!isset($params['values'])) {
if(!isset($cycle_vars[$name]['values'])) {
trigger_error("cycle: missing 'values' parameter");
return;
if (isset($params['delimiter'])) {
$cycle_vars[$name]['delimiter'] = $params['delimiter'];
} elseif (!isset($cycle_vars[$name]['delimiter'])) {
- $cycle_vars[$name]['delimiter'] = ',';
+ $cycle_vars[$name]['delimiter'] = ',';
}
-
+
if(is_array($cycle_vars[$name]['values'])) {
$cycle_array = $cycle_vars[$name]['values'];
} else {
$cycle_array = explode($cycle_vars[$name]['delimiter'],$cycle_vars[$name]['values']);
}
-
+
if(!isset($cycle_vars[$name]['index']) || $reset ) {
$cycle_vars[$name]['index'] = 0;
}
-
+
if (isset($params['assign'])) {
$print = false;
$template->assign($params['assign'], $cycle_array[$cycle_vars[$name]['index']]);
}
-
+
if($print) {
$retval = $cycle_array[$cycle_vars[$name]['index']];
} else {
$cycle_vars[$name]['index']++;
}
}
-
+
return $retval;
}
diff --git a/gosa-core/include/smarty/plugins/function.fetch.php b/gosa-core/include/smarty/plugins/function.fetch.php
index 2b09fb94752ee108378e123182e7129f0842257d..cde98d2ecd02aa366e03b273ff163fc8c525c398 100644 (file)
* Type: function<br>
* Name: fetch<br>
* Purpose: fetch file, web or ftp data and display results
- * @link http://smarty.php.net/manual/en/language.function.fetch.php {fetch}
+ *
+ * @link http://www.smarty.net/manual/en/language.function.fetch.php {fetch}
* (Smarty online manual)
* @author Monte Ohrt <monte at ohrt dot com>
- * @param array $params parameters
- * @param object $template template object
- * @return string|null if the assign parameter is passed, Smarty assigns the
- * result to a template variable
+ * @param array $params parameters
+ * @param Smarty_Internal_Template $template template object
+ * @return string|null if the assign parameter is passed, Smarty assigns the result to a template variable
*/
function smarty_function_fetch($params, $template)
{
}
$content = '';
- if (isset($template->security_policy) && !preg_match('!^(http|ftp)://!i', $params['file'])) {
- if(!$template->security_policy->isTrustedResourceDir($params['file'])) {
+ if (isset($template->smarty->security_policy) && !preg_match('!^(http|ftp)://!i', $params['file'])) {
+ if(!$template->smarty->security_policy->isTrustedResourceDir($params['file'])) {
return;
}
-
+
// fetch the file
if($fp = @fopen($params['file'],'r')) {
while(!feof($fp)) {
$host = $server_name = $uri_parts['host'];
$timeout = 30;
$accept = "image/gif, image/x-xbitmap, image/jpeg, image/pjpeg, */*";
- $agent = "Smarty Template Engine ".$template->_version;
+ $agent = "Smarty Template Engine ". Smarty::SMARTY_VERSION;
$referer = "";
$uri = !empty($uri_parts['path']) ? $uri_parts['path'] : '/';
$uri .= !empty($uri_parts['query']) ? '?' . $uri_parts['query'] : '';
diff --git a/gosa-core/include/smarty/plugins/function.html_checkboxes.php b/gosa-core/include/smarty/plugins/function.html_checkboxes.php
index 6a1a3ffdc71454beab3adadfbc1e62f697836bb6..1e8beb486a7fc5f7cd9a7a652922d30915ca57ae 100644 (file)
* {html_checkboxes values=$ids name='box' separator='<br>' output=$names}
* {html_checkboxes values=$ids checked=$checked separator='<br>' output=$names}
* </pre>
- * @link http://smarty.php.net/manual/en/language.function.html.checkboxes.php {html_checkboxes}
+ * Params:
+ * <pre>
+ * - name (optional) - string default "checkbox"
+ * - values (required) - array
+ * - options (optional) - associative array
+ * - checked (optional) - array default not set
+ * - separator (optional) - ie <br> or
+ * - output (optional) - the output next to each checkbox
+ * - assign (optional) - assign the output as an array to this variable
+ * </pre>
+ *
+ * @link http://www.smarty.net/manual/en/language.function.html.checkboxes.php {html_checkboxes}
* (Smarty online manual)
* @author Christopher Kvarme <christopher.kvarme@flashjab.com>
* @author credits to Monte Ohrt <monte at ohrt dot com>
* @version 1.0
* @param array $params parameters
- * Input:<br>
- * - name (optional) - string default "checkbox"
- * - values (required) - array
- * - options (optional) - associative array
- * - checked (optional) - array default not set
- * - separator (optional) - ie <br> or
- * - output (optional) - the output next to each checkbox
- * - assign (optional) - assign the output as an array to this variable
* @param object $template template object
* @return string
* @uses smarty_function_escape_special_chars()
$name = 'checkbox';
$values = null;
$options = null;
- $selected = null;
+ $selected = array();
$separator = '';
$labels = true;
+ $label_ids = false;
$output = null;
$extra = '';
switch($_key) {
case 'name':
case 'separator':
- $$_key = $_val;
+ $$_key = (string) $_val;
break;
case 'labels':
- $$_key = (bool)$_val;
+ case 'label_ids':
+ $$_key = (bool) $_val;
break;
case 'options':
- $$_key = (array)$_val;
+ $$_key = (array) $_val;
break;
case 'values':
case 'output':
- $$_key = array_values((array)$_val);
+ $$_key = array_values((array) $_val);
break;
case 'checked':
case 'selected':
- $selected = array_map('strval', array_values((array)$_val));
+ if (is_array($_val)) {
+ $selected = array();
+ foreach ($_val as $_sel) {
+ if (is_object($_sel)) {
+ if (method_exists($_sel, "__toString")) {
+ $_sel = smarty_function_escape_special_chars((string) $_sel->__toString());
+ } else {
+ trigger_error("html_checkboxes: selected attribute contains an object of class '". get_class($_sel) ."' without __toString() method", E_USER_NOTICE);
+ continue;
+ }
+ } else {
+ $_sel = smarty_function_escape_special_chars((string) $_sel);
+ }
+ $selected[$_sel] = true;
+ }
+ } elseif (is_object($_val)) {
+ if (method_exists($_val, "__toString")) {
+ $selected = smarty_function_escape_special_chars((string) $_val->__toString());
+ } else {
+ trigger_error("html_checkboxes: selected attribute is an object of class '". get_class($_val) ."' without __toString() method", E_USER_NOTICE);
+ }
+ } else {
+ $selected = smarty_function_escape_special_chars((string) $_val);
+ }
break;
case 'checkboxes':
trigger_error('html_checkboxes: the use of the "checkboxes" attribute is deprecated, use "options" instead', E_USER_WARNING);
- $options = (array)$_val;
+ $options = (array) $_val;
break;
case 'assign':
if (!isset($options) && !isset($values))
return ''; /* raise error here? */
- settype($selected, 'array');
$_html_result = array();
if (isset($options)) {
-
- foreach ($options as $_key=>$_val)
- $_html_result[] = smarty_function_html_checkboxes_output($name, $_key, $_val, $selected, $extra, $separator, $labels);
-
-
+ foreach ($options as $_key=>$_val) {
+ $_html_result[] = smarty_function_html_checkboxes_output($name, $_key, $_val, $selected, $extra, $separator, $labels, $label_ids);
+ }
} else {
foreach ($values as $_i=>$_key) {
$_val = isset($output[$_i]) ? $output[$_i] : '';
- $_html_result[] = smarty_function_html_checkboxes_output($name, $_key, $_val, $selected, $extra, $separator, $labels);
+ $_html_result[] = smarty_function_html_checkboxes_output($name, $_key, $_val, $selected, $extra, $separator, $labels, $label_ids);
}
-
}
if(!empty($params['assign'])) {
$template->assign($params['assign'], $_html_result);
} else {
- return implode("\n",$_html_result);
+ return implode("\n", $_html_result);
}
}
-function smarty_function_html_checkboxes_output($name, $value, $output, $selected, $extra, $separator, $labels) {
+function smarty_function_html_checkboxes_output($name, $value, $output, $selected, $extra, $separator, $labels, $label_ids) {
$_output = '';
- if ($labels) $_output .= '<label>';
- $_output .= '<input type="checkbox" name="'
- . smarty_function_escape_special_chars($name) . '[]" value="'
- . smarty_function_escape_special_chars($value) . '"';
-
- if (in_array((string)$value, $selected)) {
+
+ if (is_object($value)) {
+ if (method_exists($value, "__toString")) {
+ $value = (string) $value->__toString();
+ } else {
+ trigger_error("html_options: value is an object of class '". get_class($value) ."' without __toString() method", E_USER_NOTICE);
+ return '';
+ }
+ } else {
+ $value = (string) $value;
+ }
+
+ if (is_object($output)) {
+ if (method_exists($output, "__toString")) {
+ $output = (string) $output->__toString();
+ } else {
+ trigger_error("html_options: output is an object of class '". get_class($output) ."' without __toString() method", E_USER_NOTICE);
+ return '';
+ }
+ } else {
+ $output = (string) $output;
+ }
+
+ if ($labels) {
+ if ($label_ids) {
+ $_id = smarty_function_escape_special_chars(preg_replace('![^\w\-\.]!u', '_', $name . '_' . $value));
+ $_output .= '<label for="' . $_id . '">';
+ } else {
+ $_output .= '<label>';
+ }
+ }
+
+ $name = smarty_function_escape_special_chars($name);
+ $value = smarty_function_escape_special_chars($value);
+ $output = smarty_function_escape_special_chars($output);
+
+ $_output .= '<input type="checkbox" name="' . $name . '[]" value="' . $value . '"';
+
+ if ($labels && $label_ids) {
+ $_output .= ' id="' . $_id . '"';
+ }
+
+ if (is_array($selected)) {
+ if (isset($selected[$value])) {
+ $_output .= ' checked="checked"';
+ }
+ } elseif ($value === $selected) {
$_output .= ' checked="checked"';
}
+
$_output .= $extra . ' />' . $output;
- if ($labels) $_output .= '</label>';
+ if ($labels) {
+ $_output .= '</label>';
+ }
+
$_output .= $separator;
-
return $_output;
}
diff --git a/gosa-core/include/smarty/plugins/function.html_image.php b/gosa-core/include/smarty/plugins/function.html_image.php
index abb7b578981d45311ee186c82da633dd79861fd9..2f1ef6413c3780c9cdb415c7bab7972a22debcb6 100644 (file)
* Name: html_image<br>
* Date: Feb 24, 2003<br>
* Purpose: format HTML tags for the image<br>
- * Examples: {html_image file="/images/masthead.gif"}
- * Output: <img src="/images/masthead.gif" width=400 height=23>
+ * Examples: {html_image file="/images/masthead.gif"}<br>
+ * Output: <img src="/images/masthead.gif" width=400 height=23><br>
+ * Params:
+ * <pre>
+ * - file - (required) - file (and path) of image
+ * - height - (optional) - image height (default actual height)
+ * - width - (optional) - image width (default actual width)
+ * - basedir - (optional) - base directory for absolute paths, default is environment variable DOCUMENT_ROOT
+ * - path_prefix - prefix for path output (optional, default empty)
+ * </pre>
*
- * @link http://smarty.php.net/manual/en/language.function.html.image.php {html_image}
+ * @link http://www.smarty.net/manual/en/language.function.html.image.php {html_image}
* (Smarty online manual)
* @author Monte Ohrt <monte at ohrt dot com>
* @author credits to Duda <duda@big.hu>
* @version 1.0
- * @param array $params parameters
- * Input:<br>
- * - file = file (and path) of image (required)
- * - height = image height (optional, default actual height)
- * - width = image width (optional, default actual width)
- * - basedir = base directory for absolute paths, default
- * is environment variable DOCUMENT_ROOT
- * - path_prefix = prefix for path output (optional, default empty)
- * @param object $template template object
+ * @param array $params parameters
+ * @param Smarty_Internal_Template $template template object
* @return string
* @uses smarty_function_escape_special_chars()
*/
return;
}
}
- if (isset($template->security_policy)) {
- if (!$template->security_policy->isTrustedResourceDir($_image_path)) {
+ if (isset($template->smarty->security_policy)) {
+ if (!$template->smarty->security_policy->isTrustedResourceDir($_image_path)) {
return;
}
}
diff --git a/gosa-core/include/smarty/plugins/function.html_options.php b/gosa-core/include/smarty/plugins/function.html_options.php
index 7ac039028942509ce45e4dc2cb43c5ae38da047a..86266e26985278209814df5981abfb49c5e363d1 100644 (file)
* Type: function<br>
* Name: html_options<br>
* Purpose: Prints the list of <option> tags generated from
- * the passed parameters
+ * the passed parameters<br>
+ * Params:
+ * <pre>
+ * - name (optional) - string default "select"
+ * - values (required) - if no options supplied) - array
+ * - options (required) - if no values supplied) - associative array
+ * - selected (optional) - string default not set
+ * - output (required) - if not options supplied) - array
+ * - id (optional) - string default not set
+ * - class (optional) - string default not set
+ * </pre>
*
- * @link http://smarty.php.net/manual/en/language.function.html.options.php {html_image}
+ * @link http://www.smarty.net/manual/en/language.function.html.options.php {html_image}
* (Smarty online manual)
* @author Monte Ohrt <monte at ohrt dot com>
- * @param array $params parameters
- * Input:<br>
- * - name (optional) - string default "select"
- * - values (required if no options supplied) - array
- * - options (required if no values supplied) - associative array
- * - selected (optional) - string default not set
- * - output (required if not options supplied) - array
- * @param object $template template object
+ * @author Ralf Strehle (minor optimization) <ralf dot strehle at yahoo dot de>
+ * @param array $params parameters
+ * @param Smarty_Internal_Template $template template object
* @return string
* @uses smarty_function_escape_special_chars()
*/
$name = null;
$values = null;
$options = null;
- $selected = array();
+ $selected = null;
$output = null;
$id = null;
$class = null;
$extra = '';
- $options_extra = '';
- foreach($params as $_key => $_val) {
+ foreach ($params as $_key => $_val) {
switch ($_key) {
case 'name':
case 'class':
case 'id':
- $$_key = (string)$_val;
+ $$_key = (string) $_val;
break;
case 'options':
- $$_key = (array)$_val;
+ $options = (array) $_val;
break;
case 'values':
case 'output':
- $$_key = array_values((array)$_val);
+ $$_key = array_values((array) $_val);
break;
case 'selected':
- $$_key = array_map('strval', array_values((array)$_val));
+ if (is_array($_val)) {
+ $selected = array();
+ foreach ($_val as $_sel) {
+ if (is_object($_sel)) {
+ if (method_exists($_sel, "__toString")) {
+ $_sel = smarty_function_escape_special_chars((string) $_sel->__toString());
+ } else {
+ trigger_error("html_options: selected attribute contains an object of class '". get_class($_sel) ."' without __toString() method", E_USER_NOTICE);
+ continue;
+ }
+ } else {
+ $_sel = smarty_function_escape_special_chars((string) $_sel);
+ }
+ $selected[$_sel] = true;
+ }
+ } elseif (is_object($_val)) {
+ if (method_exists($_val, "__toString")) {
+ $selected = smarty_function_escape_special_chars((string) $_val->__toString());
+ } else {
+ trigger_error("html_options: selected attribute is an object of class '". get_class($_val) ."' without __toString() method", E_USER_NOTICE);
+ }
+ } else {
+ $selected = smarty_function_escape_special_chars((string) $_val);
+ }
break;
default:
}
break;
}
- }
+ }
- if (!isset($options) && !isset($values))
+ if (!isset($options) && !isset($values)) {
+ /* raise error here? */
return '';
- /* raise error here? */
+ }
$_html_result = '';
$_idx = 0;
if (isset($options)) {
foreach ($options as $_key => $_val) {
- $_html_result .= smarty_function_html_options_optoutput($_key, $_val, $selected, $id, $class, $_idx);
+ $_html_result .= smarty_function_html_options_optoutput($_key, $_val, $selected, $id, $class, $_idx);
}
} else {
foreach ($values as $_i => $_key) {
$_val = isset($output[$_i]) ? $output[$_i] : '';
$_html_result .= smarty_function_html_options_optoutput($_key, $_val, $selected, $id, $class, $_idx);
}
- }
+ }
if (!empty($name)) {
$_html_class = !empty($class) ? ' class="'.$class.'"' : '';
}
return $_html_result;
-}
+}
function smarty_function_html_options_optoutput($key, $value, $selected, $id, $class, &$idx)
{
if (!is_array($value)) {
- $_html_result = '<option value="' .
- smarty_function_escape_special_chars($key) . '"';
- if (in_array((string)$key, $selected))
+ $_key = smarty_function_escape_special_chars($key);
+ $_html_result = '<option value="' . $_key . '"';
+ if (is_array($selected)) {
+ if (isset($selected[$_key])) {
+ $_html_result .= ' selected="selected"';
+ }
+ } elseif ($_key === $selected) {
$_html_result .= ' selected="selected"';
+ }
$_html_class = !empty($class) ? ' class="'.$class.' option"' : '';
$_html_id = !empty($id) ? ' id="'.$id.'-'.$idx.'"' : '';
- $_html_result .= $_html_class . $_html_id . '>' . smarty_function_escape_special_chars($value) . '</option>' . "\n";
+ if (is_object($value)) {
+ if (method_exists($value, "__toString")) {
+ $value = smarty_function_escape_special_chars((string) $value->__toString());
+ } else {
+ trigger_error("html_options: value is an object of class '". get_class($value) ."' without __toString() method", E_USER_NOTICE);
+ return '';
+ }
+ }
+ $_html_result .= $_html_class . $_html_id . '>' . $value . '</option>' . "\n";
$idx++;
} else {
$_idx = 0;
- $_html_result = smarty_function_html_options_optgroup($key, $value, $selected, $id.'-'.$idx, $class, $_idx);
+ $_html_result = smarty_function_html_options_optgroup($key, $value, $selected, !empty($id) ? ($id.'-'.$idx) : null, $class, $_idx);
$idx++;
}
return $_html_result;
diff --git a/gosa-core/include/smarty/plugins/function.html_radios.php b/gosa-core/include/smarty/plugins/function.html_radios.php
index c6b27edf2ca30d2e277e9707de72d52d169f8548..af29b9af220a6dcefeec99b3e6d1b8566a3ddcce 100644 (file)
* Name: html_radios<br>
* Date: 24.Feb.2003<br>
* Purpose: Prints out a list of radio input types<br>
+ * Params:
+ * <pre>
+ * - name (optional) - string default "radio"
+ * - values (required) - array
+ * - options (required) - associative array
+ * - checked (optional) - array default not set
+ * - separator (optional) - ie <br> or
+ * - output (optional) - the output next to each radio button
+ * - assign (optional) - assign the output as an array to this variable
+ * </pre>
* Examples:
* <pre>
* {html_radios values=$ids output=$names}
* @author Christopher Kvarme <christopher.kvarme@flashjab.com>
* @author credits to Monte Ohrt <monte at ohrt dot com>
* @version 1.0
- * @param array $params parameters
- * Input:<br>
- * - name (optional) - string default "radio"
- * - values (required) - array
- * - options (optional) - associative array
- * - checked (optional) - array default not set
- * - separator (optional) - ie <br> or
- * - output (optional) - the output next to each radio button
- * - assign (optional) - assign the output as an array to this variable
- * @param object $template template object
+ * @param array $params parameters
+ * @param Smarty_Internal_Template $template template object
* @return string
* @uses smarty_function_escape_special_chars()
*/
switch ($_key) {
case 'name':
case 'separator':
- $$_key = (string)$_val;
+ $$_key = (string) $_val;
break;
case 'checked':
case 'selected':
if (is_array($_val)) {
trigger_error('html_radios: the "' . $_key . '" attribute cannot be an array', E_USER_WARNING);
+ } elseif (is_object($_val)) {
+ if (method_exists($_val, "__toString")) {
+ $selected = smarty_function_escape_special_chars((string) $_val->__toString());
+ } else {
+ trigger_error("html_radios: selected attribute is an object of class '". get_class($_val) ."' without __toString() method", E_USER_NOTICE);
+ }
} else {
- $selected = (string)$_val;
+ $selected = (string) $_val;
}
break;
case 'labels':
case 'label_ids':
- $$_key = (bool)$_val;
+ $$_key = (bool) $_val;
break;
case 'options':
- $$_key = (array)$_val;
+ $$_key = (array) $_val;
break;
case 'values':
case 'output':
- $$_key = array_values((array)$_val);
+ $$_key = array_values((array) $_val);
break;
case 'radios':
trigger_error('html_radios: the use of the "radios" attribute is deprecated, use "options" instead', E_USER_WARNING);
- $options = (array)$_val;
+ $options = (array) $_val;
break;
case 'assign':
}
}
- if (!isset($options) && !isset($values))
+ if (!isset($options) && !isset($values)) {
+ /* raise error here? */
return '';
- /* raise error here? */
+ }
$_html_result = array();
if (isset($options)) {
- foreach ($options as $_key => $_val)
- $_html_result[] = smarty_function_html_radios_output($name, $_key, $_val, $selected, $extra, $separator, $labels, $label_ids);
+ foreach ($options as $_key => $_val) {
+ $_html_result[] = smarty_function_html_radios_output($name, $_key, $_val, $selected, $extra, $separator, $labels, $label_ids);
+ }
} else {
foreach ($values as $_i => $_key) {
$_val = isset($output[$_i]) ? $output[$_i] : '';
function smarty_function_html_radios_output($name, $value, $output, $selected, $extra, $separator, $labels, $label_ids)
{
$_output = '';
+
+ if (is_object($value)) {
+ if (method_exists($value, "__toString")) {
+ $value = (string) $value->__toString();
+ } else {
+ trigger_error("html_options: value is an object of class '". get_class($value) ."' without __toString() method", E_USER_NOTICE);
+ return '';
+ }
+ } else {
+ $value = (string) $value;
+ }
+
+ if (is_object($output)) {
+ if (method_exists($output, "__toString")) {
+ $output = (string) $output->__toString();
+ } else {
+ trigger_error("html_options: output is an object of class '". get_class($output) ."' without __toString() method", E_USER_NOTICE);
+ return '';
+ }
+ } else {
+ $output = (string) $output;
+ }
+
if ($labels) {
if ($label_ids) {
- $_id = smarty_function_escape_special_chars(preg_replace('![^\w\-\.]!', '_', $name . '_' . $value));
+ $_id = smarty_function_escape_special_chars(preg_replace('![^\w\-\.]!u', '_', $name . '_' . $value));
$_output .= '<label for="' . $_id . '">';
} else {
$_output .= '<label>';
}
- }
- $_output .= '<input type="radio" name="'
- . smarty_function_escape_special_chars($name) . '" value="'
- . smarty_function_escape_special_chars($value) . '"';
-
- if ($labels && $label_ids) $_output .= ' id="' . $_id . '"';
-
- if ((string)$value == $selected) {
+ }
+
+ $name = smarty_function_escape_special_chars($name);
+ $value = smarty_function_escape_special_chars($value);
+ $output = smarty_function_escape_special_chars($output);
+
+ $_output .= '<input type="radio" name="' . $name . '" value="' . $value . '"';
+
+ if ($labels && $label_ids) {
+ $_output .= ' id="' . $_id . '"';
+ }
+
+ if ($value === $selected) {
$_output .= ' checked="checked"';
- }
+ }
+
$_output .= $extra . ' />' . $output;
- if ($labels) $_output .= '</label>';
+ if ($labels) {
+ $_output .= '</label>';
+ }
+
$_output .= $separator;
-
return $_output;
}
diff --git a/gosa-core/include/smarty/plugins/function.html_select_date.php b/gosa-core/include/smarty/plugins/function.html_select_date.php
index 1d57fdc7a792fe78ea4a9fa76676bea9fb2c8fc4..16844052e0a12ae2128b5ca3ee2b3adb2c91d19e 100644 (file)
* @subpackage PluginsFunction
*/
+/**
+ * @ignore
+ */
+require_once(SMARTY_PLUGINS_DIR . 'shared.escape_special_chars.php');
+/**
+ * @ignore
+ */
+require_once(SMARTY_PLUGINS_DIR . 'shared.make_timestamp.php');
+
/**
* Smarty {html_select_date} plugin
*
* Name: html_select_date<br>
* Purpose: Prints the dropdowns for date selection.
*
- * ChangeLog:<br>
+ * ChangeLog:
+ * <pre>
* - 1.0 initial release
* - 1.1 added support for +/- N syntax for begin
- * and end year values. (Monte)
+ * and end year values. (Monte)
* - 1.2 added support for yyyy-mm-dd syntax for
- * time value. (Jan Rosier)
+ * time value. (Jan Rosier)
* - 1.3 added support for choosing format for
- * month values (Gary Loescher)
+ * month values (Gary Loescher)
* - 1.3.1 added support for choosing format for
- * day values (Marcus Bointon)
+ * day values (Marcus Bointon)
* - 1.3.2 support negative timestamps, force year
* dropdown to include given date unless explicitly set (Monte)
* - 1.3.4 fix behaviour of 0000-00-00 00:00:00 dates to match that
* of 0000-00-00 dates (cybot, boots)
+ * - 2.0 complete rewrite for performance,
+ * added attributes month_names, *_id
+ * </pre>
*
- * @link http://smarty.php.net/manual/en/language.function.html.select.date.php {html_select_date}
+ * @link http://www.smarty.net/manual/en/language.function.html.select.date.php {html_select_date}
* (Smarty online manual)
- * @version 1.3.4
+ * @version 2.0
* @author Andrei Zmievski
* @author Monte Ohrt <monte at ohrt dot com>
- * @param array $params parameters
- * @param object $template template object
+ * @author Rodney Rehm
+ * @param array $params parameters
+ * @param Smarty_Internal_Template $template template object
* @return string
*/
function smarty_function_html_select_date($params, $template)
{
- require_once(SMARTY_PLUGINS_DIR . 'shared.escape_special_chars.php');
- require_once(SMARTY_PLUGINS_DIR . 'shared.make_timestamp.php');
- require_once(SMARTY_PLUGINS_DIR . 'function.html_options.php');
+ // generate timestamps used for month names only
+ static $_month_timestamps = null;
+ static $_current_year = null;
+ if ($_month_timestamps === null) {
+ $_current_year = date('Y');
+ $_month_timestamps = array();
+ for ($i = 1; $i <= 12; $i++) {
+ $_month_timestamps[$i] = mktime(0, 0, 0, $i, 1, 2000);
+ }
+ }
/* Default values. */
$prefix = "Date_";
- $start_year = strftime("%Y");
- $end_year = $start_year;
+ $start_year = null;
+ $end_year = null;
$display_days = true;
$display_months = true;
$display_years = true;
$field_order = 'MDY';
/* String printed between the different fields. */
$field_separator = "\n";
- $time = time();
- $all_empty = null;
- $day_empty = null;
- $month_empty = null;
- $year_empty = null;
+ $option_separator = "\n";
+ $time = null;
+ // $all_empty = null;
+ // $day_empty = null;
+ // $month_empty = null;
+ // $year_empty = null;
$extra_attrs = '';
+ $all_id = null;
+ $day_id = null;
+ $month_id = null;
+ $year_id = null;
foreach ($params as $_key => $_value) {
switch ($_key) {
- case 'prefix':
case 'time':
+ if (!is_array($_value)) {
+ $time = smarty_make_timestamp($_value);
+ }
+ break;
+
+ case 'month_names':
+ if (is_array($_value) && count($_value) == 12) {
+ $$_key = $_value;
+ } else {
+ trigger_error("html_select_date: month_names must be an array of 12 strings", E_USER_NOTICE);
+ }
+ break;
+
+ case 'prefix':
+ case 'field_array':
case 'start_year':
case 'end_year':
- case 'month_format':
case 'day_format':
case 'day_value_format':
- case 'field_array':
+ case 'month_format':
+ case 'month_value_format':
case 'day_size':
case 'month_size':
case 'year_size':
case 'year_extra':
case 'field_order':
case 'field_separator':
- case 'month_value_format':
+ case 'option_separator':
+ case 'all_empty':
case 'month_empty':
case 'day_empty':
case 'year_empty':
+ case 'all_id':
+ case 'month_id':
+ case 'day_id':
+ case 'year_id':
$$_key = (string)$_value;
break;
- case 'all_empty':
- $$_key = (string)$_value;
- $day_empty = $month_empty = $year_empty = $all_empty;
- break;
-
case 'display_days':
case 'display_months':
case 'display_years':
}
break;
}
- }
-
- if (preg_match('!^-\d+$!', $time)) {
- // negative timestamp, use date()
- $time = date('Y-m-d', $time);
- }
- // If $time is not in format yyyy-mm-dd
- if (preg_match('/^(\d{0,4}-\d{0,2}-\d{0,2})/', $time, $found)) {
- $time = $found[1];
- } else {
- // use smarty_make_timestamp to get an unix timestamp and
- // strftime to make yyyy-mm-dd
- $time = strftime('%Y-%m-%d', smarty_make_timestamp($time));
- }
- // Now split this in pieces, which later can be used to set the select
- $time = explode("-", $time);
- // make syntax "+N" or "-N" work with start_year and end_year
- if (preg_match('!^(\+|\-)\s*(\d+)$!', $end_year, $match)) {
- if ($match[1] == '+') {
- $end_year = strftime('%Y') + $match[2];
- } else {
- $end_year = strftime('%Y') - $match[2];
- }
- }
- if (preg_match('!^(\+|\-)\s*(\d+)$!', $start_year, $match)) {
- if ($match[1] == '+') {
- $start_year = strftime('%Y') + $match[2];
+ }
+
+ // Note: date() is faster than strftime()
+ // Note: explode(date()) is faster than date() date() date()
+ if (isset($params['time']) && is_array($params['time'])) {
+ if (isset($params['time'][$prefix . 'Year'])) {
+ // $_REQUEST[$field_array] given
+ foreach (array('Y' => 'Year', 'm' => 'Month', 'd' => 'Day') as $_elementKey => $_elementName) {
+ $_variableName = '_' . strtolower($_elementName);
+ $$_variableName = isset($params['time'][$prefix . $_elementName])
+ ? $params['time'][$prefix . $_elementName]
+ : date($_elementKey);
+ }
+ $time = mktime(0, 0, 0, $_month, $_day, $_year);
+ } elseif (isset($params['time'][$field_array][$prefix . 'Year'])) {
+ // $_REQUEST given
+ foreach (array('Y' => 'Year', 'm' => 'Month', 'd' => 'Day') as $_elementKey => $_elementName) {
+ $_variableName = '_' . strtolower($_elementName);
+ $$_variableName = isset($params['time'][$field_array][$prefix . $_elementName])
+ ? $params['time'][$field_array][$prefix . $_elementName]
+ : date($_elementKey);
+ }
+ $time = mktime(0, 0, 0, $_month, $_day, $_year);
} else {
- $start_year = strftime('%Y') - $match[2];
- }
- }
- if (strlen($time[0]) > 0) {
- if ($start_year > $time[0] && !isset($params['start_year'])) {
- // force start year to include given date if not explicitly set
- $start_year = $time[0];
- }
- if ($end_year < $time[0] && !isset($params['end_year'])) {
- // force end year to include given date if not explicitly set
- $end_year = $time[0];
- }
- }
-
- $field_order = strtoupper($field_order);
-
- $html_result = $month_result = $day_result = $year_result = "";
-
- $field_separator_count = -1;
- if ($display_months) {
- $field_separator_count++;
- $month_names = array();
- $month_values = array();
- if (isset($month_empty)) {
- $month_names[''] = $month_empty;
- $month_values[''] = '';
- }
- for ($i = 1; $i <= 12; $i++) {
- $month_names[$i] = strftime($month_format, mktime(0, 0, 0, $i, 1, 2000));
- $month_values[$i] = strftime($month_value_format, mktime(0, 0, 0, $i, 1, 2000));
- }
+ // no date found, use NOW
+ list($_year, $_month, $_day) = $time = explode('-', date('Y-m-d'));
+ }
+ } elseif ($time === null) {
+ list($_year, $_month, $_day) = $time = explode('-', date('Y-m-d'));
+ } else {
+ list($_year, $_month, $_day) = $time = explode('-', date('Y-m-d', $time));
+ }
- $month_result .= '<select name=';
- if (null !== $field_array) {
- $month_result .= '"' . $field_array . '[' . $prefix . 'Month]"';
+ // make syntax "+N" or "-N" work with $start_year and $end_year
+ // Note preg_match('!^(\+|\-)\s*(\d+)$!', $end_year, $match) is slower than trim+substr
+ foreach (array('start', 'end') as $key) {
+ $key .= '_year';
+ $t = $$key;
+ if ($t === null) {
+ $$key = (int)$_current_year;
+ } else if ($t[0] == '+') {
+ $$key = (int)($_current_year + trim(substr($t, 1)));
+ } else if ($t[0] == '-') {
+ $$key = (int)($_current_year - trim(substr($t, 1)));
} else {
- $month_result .= '"' . $prefix . 'Month"';
- }
- if (null !== $month_size) {
- $month_result .= ' size="' . $month_size . '"';
- }
- if (null !== $month_extra) {
- $month_result .= ' ' . $month_extra;
- }
- if (null !== $all_extra) {
- $month_result .= ' ' . $all_extra;
- }
- $month_result .= $extra_attrs . '>' . "\n";
-
- $month_result .= smarty_function_html_options(array('output' => $month_names,
- 'values' => $month_values,
- 'selected' => (int)$time[1] ? strftime($month_value_format, mktime(0, 0, 0, (int)$time[1], 1, 2000)) : '',
- 'print_result' => false),
- $template);
- $month_result .= '</select>';
- }
+ $$key = (int)$$key;
+ }
+ }
- if ($display_days) {
- $field_separator_count++;
- $days = array();
- if (isset($day_empty)) {
- $days[''] = $day_empty;
- $day_values[''] = '';
- }
- for ($i = 1; $i <= 31; $i++) {
- $days[] = sprintf($day_format, $i);
- $day_values[] = sprintf($day_value_format, $i);
- }
-
- $day_result .= '<select name=';
- if (null !== $field_array) {
- $day_result .= '"' . $field_array . '[' . $prefix . 'Day]"';
- } else {
- $day_result .= '"' . $prefix . 'Day"';
- }
- if (null !== $day_size) {
- $day_result .= ' size="' . $day_size . '"';
- }
- if (null !== $all_extra) {
- $day_result .= ' ' . $all_extra;
- }
- if (null !== $day_extra) {
- $day_result .= ' ' . $day_extra;
- }
- $day_result .= $extra_attrs . '>' . "\n";
- $day_result .= smarty_function_html_options(array('output' => $days,
- 'values' => $day_values,
- 'selected' => $time[2],
- 'print_result' => false),
- $template);
- $day_result .= '</select>';
- }
+ // flip for ascending or descending
+ if (($start_year > $end_year && !$reverse_years) || ($start_year < $end_year && $reverse_years)) {
+ $t = $end_year;
+ $end_year = $start_year;
+ $start_year = $t;
+ }
+ // generate year <select> or <input>
if ($display_years) {
- $field_separator_count++;
- if (null !== $field_array) {
- $year_name = $field_array . '[' . $prefix . 'Year]';
- } else {
- $year_name = $prefix . 'Year';
+ $_html_years = '';
+ $_extra = '';
+ $_name = $field_array ? ($field_array . '[' . $prefix . 'Year]') : ($prefix . 'Year');
+ if ($all_extra) {
+ $_extra .= ' ' . $all_extra;
}
+ if ($year_extra) {
+ $_extra .= ' ' . $year_extra;
+ }
+
if ($year_as_text) {
- $year_result .= '<input type="text" name="' . $year_name . '" value="' . $time[0] . '" size="4" maxlength="4"';
- if (null !== $all_extra) {
- $year_result .= ' ' . $all_extra;
- }
- if (null !== $year_extra) {
- $year_result .= ' ' . $year_extra;
- }
- $year_result .= ' />';
+ $_html_years = '<input type="text" name="' . $_name . '" value="' . $_year . '" size="4" maxlength="4"' . $_extra . $extra_attrs . ' />';
} else {
- $years = range((int)$start_year, (int)$end_year);
- if ($reverse_years) {
- rsort($years, SORT_NUMERIC);
- } else {
- sort($years, SORT_NUMERIC);
- }
- $yearvals = $years;
- if (isset($year_empty)) {
- array_unshift($years, $year_empty);
- array_unshift($yearvals, '');
+ $_html_years = '<select name="' . $_name . '"';
+ if ($year_id !== null || $all_id !== null) {
+ $_html_years .= ' id="' . smarty_function_escape_special_chars(
+ $year_id !== null ? ( $year_id ? $year_id : $_name ) : ( $all_id ? ($all_id . $_name) : $_name )
+ ) . '"';
+ }
+ if ($year_size) {
+ $_html_years .= ' size="' . $year_size . '"';
}
- $year_result .= '<select name="' . $year_name . '"';
- if (null !== $year_size) {
- $year_result .= ' size="' . $year_size . '"';
- }
- if (null !== $all_extra) {
- $year_result .= ' ' . $all_extra;
- }
- if (null !== $year_extra) {
- $year_result .= ' ' . $year_extra;
- }
- $year_result .= $extra_attrs . '>' . "\n";
- $year_result .= smarty_function_html_options(array('output' => $years,
- 'values' => $yearvals,
- 'selected' => $time[0],
- 'print_result' => false),
- $template);
- $year_result .= '</select>';
+ $_html_years .= $_extra . $extra_attrs . '>' . $option_separator;
+
+ if (isset($year_empty) || isset($all_empty)) {
+ $_html_years .= '<option value="">' . ( isset($year_empty) ? $year_empty : $all_empty ) . '</option>' . $option_separator;
+ }
+
+ $op = $start_year > $end_year ? -1 : 1;
+ for ($i=$start_year; $op > 0 ? $i <= $end_year : $i >= $end_year; $i += $op) {
+ $_html_years .= '<option value="' . $i . '"'
+ . ($_year == $i ? ' selected="selected"' : '')
+ . '>' . $i . '</option>' . $option_separator;
+ }
+
+ $_html_years .= '</select>';
+ }
+ }
+
+ // generate month <select> or <input>
+ if ($display_months) {
+ $_html_month = '';
+ $_extra = '';
+ $_name = $field_array ? ($field_array . '[' . $prefix . 'Month]') : ($prefix . 'Month');
+ if ($all_extra) {
+ $_extra .= ' ' . $all_extra;
}
- }
- // Loop thru the field_order field
- for ($i = 0; $i <= 2; $i++) {
- $c = substr($field_order, $i, 1);
- switch ($c) {
- case 'D':
- $html_result .= $day_result;
- break;
-
- case 'M':
- $html_result .= $month_result;
- break;
-
- case 'Y':
- $html_result .= $year_result;
- break;
+ if ($month_extra) {
+ $_extra .= ' ' . $month_extra;
+ }
+
+ $_html_months = '<select name="' . $_name . '"';
+ if ($month_id !== null || $all_id !== null) {
+ $_html_months .= ' id="' . smarty_function_escape_special_chars(
+ $month_id !== null ? ( $month_id ? $month_id : $_name ) : ( $all_id ? ($all_id . $_name) : $_name )
+ ) . '"';
+ }
+ if ($month_size) {
+ $_html_months .= ' size="' . $month_size . '"';
+ }
+ $_html_months .= $_extra . $extra_attrs . '>' . $option_separator;
+
+ if (isset($month_empty) || isset($all_empty)) {
+ $_html_months .= '<option value="">' . ( isset($month_empty) ? $month_empty : $all_empty ) . '</option>' . $option_separator;
+ }
+
+ for ($i = 1; $i <= 12; $i++) {
+ $_val = sprintf('%02d', $i);
+ $_text = isset($month_names) ? smarty_function_escape_special_chars($month_names[$i]) : ($month_format == "%m" ? $_val : strftime($month_format, $_month_timestamps[$i]));
+ $_value = $month_value_format == "%m" ? $_val : strftime($month_value_format, $_month_timestamps[$i]);
+ $_html_months .= '<option value="' . $_value . '"'
+ . ($_val == $_month ? ' selected="selected"' : '')
+ . '>' . $_text . '</option>' . $option_separator;
+ }
+
+ $_html_months .= '</select>';
+ }
+
+ // generate day <select> or <input>
+ if ($display_days) {
+ $_html_day = '';
+ $_extra = '';
+ $_name = $field_array ? ($field_array . '[' . $prefix . 'Day]') : ($prefix . 'Day');
+ if ($all_extra) {
+ $_extra .= ' ' . $all_extra;
}
- // Add the field seperator
- if ($i < $field_separator_count) {
- $html_result .= $field_separator;
+ if ($day_extra) {
+ $_extra .= ' ' . $day_extra;
+ }
+
+ $_html_days = '<select name="' . $_name . '"';
+ if ($day_id !== null || $all_id !== null) {
+ $_html_days .= ' id="' . smarty_function_escape_special_chars(
+ $day_id !== null ? ( $day_id ? $day_id : $_name ) : ( $all_id ? ($all_id . $_name) : $_name )
+ ) . '"';
+ }
+ if ($day_size) {
+ $_html_days .= ' size="' . $day_size . '"';
}
- }
+ $_html_days .= $_extra . $extra_attrs . '>' . $option_separator;
+
+ if (isset($day_empty) || isset($all_empty)) {
+ $_html_days .= '<option value="">' . ( isset($day_empty) ? $day_empty : $all_empty ) . '</option>' . $option_separator;
+ }
+
+ for ($i = 1; $i <= 31; $i++) {
+ $_val = sprintf('%02d', $i);
+ $_text = $day_format == '%02d' ? $_val : sprintf($day_format, $i);
+ $_value = $day_value_format == '%02d' ? $_val : sprintf($day_value_format, $i);
+ $_html_days .= '<option value="' . $_value . '"'
+ . ($_val == $_day ? ' selected="selected"' : '')
+ . '>' . $_text . '</option>' . $option_separator;
+ }
+
+ $_html_days .= '</select>';
+ }
- return $html_result;
+ // order the fields for output
+ $_html = '';
+ for ($i=0; $i <= 2; $i++) {
+ switch ($field_order[$i]) {
+ case 'Y':
+ case 'y':
+ if (isset($_html_years)) {
+ if ($_html) {
+ $_html .= $field_separator;
+ }
+ $_html .= $_html_years;
+ }
+ break;
+
+ case 'm':
+ case 'M':
+ if (isset($_html_months)) {
+ if ($_html) {
+ $_html .= $field_separator;
+ }
+ $_html .= $_html_months;
+ }
+ break;
+
+ case 'd':
+ case 'D':
+ if (isset($_html_days)) {
+ if ($_html) {
+ $_html .= $field_separator;
+ }
+ $_html .= $_html_days;
+ }
+ break;
+ }
+ }
+ return $_html;
}
?>
\ No newline at end of file
diff --git a/gosa-core/include/smarty/plugins/function.html_select_time.php b/gosa-core/include/smarty/plugins/function.html_select_time.php
index ddde4f5ac638fb488afaafd3c2ac83509de5323a..f4a19dd760290c5e494a3fa94689c1b4ba204c51 100644 (file)
<?php
/**
* Smarty plugin
- *
+ *
* @package Smarty
* @subpackage PluginsFunction
*/
+/**
+ * @ignore
+ */
+require_once(SMARTY_PLUGINS_DIR . 'shared.escape_special_chars.php');
+/**
+ * @ignore
+ */
+require_once(SMARTY_PLUGINS_DIR . 'shared.make_timestamp.php');
+
/**
* Smarty {html_select_time} function plugin
- *
+ *
* Type: function<br>
* Name: html_select_time<br>
* Purpose: Prints the dropdowns for time selection
- *
- * @link http://smarty.php.net/manual/en/language.function.html.select.time.php {html_select_time}
+ *
+ * @link http://www.smarty.net/manual/en/language.function.html.select.time.php {html_select_time}
* (Smarty online manual)
- * @author Roberto Berto <roberto@berto.net>
- * @credits Monte Ohrt <monte AT ohrt DOT com>
- * @param array $params parameters
- * @param object $template template object
- * @return string
+ * @author Roberto Berto <roberto@berto.net>
+ * @author Monte Ohrt <monte AT ohrt DOT com>
+ * @param array $params parameters
+ * @param Smarty_Internal_Template $template template object
+ * @return string
* @uses smarty_make_timestamp()
*/
function smarty_function_html_select_time($params, $template)
{
- require_once(SMARTY_PLUGINS_DIR . 'shared.make_timestamp.php');
- require_once(SMARTY_PLUGINS_DIR . 'function.html_options.php');
-
- /* Default values. */
$prefix = "Time_";
- $time = time();
+ $field_array = null;
+ $field_separator = "\n";
+ $option_separator = "\n";
+ $time = null;
+
$display_hours = true;
$display_minutes = true;
$display_seconds = true;
$display_meridian = true;
+
+ $hour_format = '%02d';
+ $hour_value_format = '%02d';
+ $minute_format = '%02d';
+ $minute_value_format = '%02d';
+ $second_format = '%02d';
+ $second_value_format = '%02d';
+
+ $hour_size = null;
+ $minute_size = null;
+ $second_size = null;
+ $meridian_size = null;
+
+ $all_empty = null;
+ $hour_empty = null;
+ $minute_empty = null;
+ $second_empty = null;
+ $meridian_empty = null;
+
+ $all_id = null;
+ $hour_id = null;
+ $minute_id = null;
+ $second_id = null;
+ $meridian_id = null;
+
$use_24_hours = true;
$minute_interval = 1;
$second_interval = 1;
- /* Should the select boxes be part of an array when returned from PHP?
- e.g. setting it to "birthday", would create "birthday[Hour]",
- "birthday[Minute]", "birthday[Seconds]" & "birthday[Meridian]".
- Can be combined with prefix. */
- $field_array = null;
+
+ $extra_attrs = '';
$all_extra = null;
$hour_extra = null;
$minute_extra = null;
foreach ($params as $_key => $_value) {
switch ($_key) {
- case 'prefix':
case 'time':
+ if (!is_array($_value)) {
+ $time = smarty_make_timestamp($_value);
+ }
+ break;
+
+ case 'prefix':
case 'field_array':
+
+ case 'field_separator':
+ case 'option_separator':
+
case 'all_extra':
case 'hour_extra':
case 'minute_extra':
case 'second_extra':
case 'meridian_extra':
+
+ case 'all_empty':
+ case 'hour_empty':
+ case 'minute_empty':
+ case 'second_empty':
+ case 'meridian_empty':
+
+ case 'all_id':
+ case 'hour_id':
+ case 'minute_id':
+ case 'second_id':
+ case 'meridian_id':
+
+ case 'hour_format':
+ case 'hour_value_format':
+ case 'minute_format':
+ case 'minute_value_format':
+ case 'second_format':
+ case 'second_value_format':
$$_key = (string)$_value;
break;
case 'minute_interval':
case 'second_interval':
+
+ case 'hour_size':
+ case 'minute_size':
+ case 'second_size':
+ case 'meridian_size':
$$_key = (int)$_value;
break;
default:
- trigger_error("[html_select_time] unknown parameter $_key", E_USER_WARNING);
- }
- }
-
- $time = smarty_make_timestamp($time);
+ if (!is_array($_value)) {
+ $extra_attrs .= ' ' . $_key . '="' . smarty_function_escape_special_chars($_value) . '"';
+ } else {
+ trigger_error("html_select_date: extra attribute '$_key' cannot be an array", E_USER_NOTICE);
+ }
+ break;
+ }
+ }
- $html_result = '';
+ if (isset($params['time']) && is_array($params['time'])) {
+ if (isset($params['time'][$prefix . 'Hour'])) {
+ // $_REQUEST[$field_array] given
+ foreach (array('H' => 'Hour', 'i' => 'Minute', 's' => 'Second') as $_elementKey => $_elementName) {
+ $_variableName = '_' . strtolower($_elementName);
+ $$_variableName = isset($params['time'][$prefix . $_elementName])
+ ? $params['time'][$prefix . $_elementName]
+ : date($_elementKey);
+ }
+ $_meridian = isset($params['time'][$prefix . 'Meridian'])
+ ? (' ' . $params['time'][$prefix . 'Meridian'])
+ : '';
+ $time = strtotime( $_hour . ':' . $_minute . ':' . $_second . $_meridian );
+ list($_hour, $_minute, $_second) = $time = explode('-', date('H-i-s', $time));
+ } elseif (isset($params['time'][$field_array][$prefix . 'Hour'])) {
+ // $_REQUEST given
+ foreach (array('H' => 'Hour', 'i' => 'Minute', 's' => 'Second') as $_elementKey => $_elementName) {
+ $_variableName = '_' . strtolower($_elementName);
+ $$_variableName = isset($params['time'][$field_array][$prefix . $_elementName])
+ ? $params['time'][$field_array][$prefix . $_elementName]
+ : date($_elementKey);
+ }
+ $_meridian = isset($params['time'][$field_array][$prefix . 'Meridian'])
+ ? (' ' . $params['time'][$field_array][$prefix . 'Meridian'])
+ : '';
+ $time = strtotime( $_hour . ':' . $_minute . ':' . $_second . $_meridian );
+ list($_hour, $_minute, $_second) = $time = explode('-', date('H-i-s', $time));
+ } else {
+ // no date found, use NOW
+ list($_year, $_month, $_day) = $time = explode('-', date('Y-m-d'));
+ }
+ } elseif ($time === null) {
+ list($_hour, $_minute, $_second) = $time = explode('-', date('H-i-s'));
+ } else {
+ list($_hour, $_minute, $_second) = $time = explode('-', date('H-i-s', $time));
+ }
+ // generate hour <select>
if ($display_hours) {
- $hours = $use_24_hours ? range(0, 23) : range(1, 12);
- $hour_fmt = $use_24_hours ? '%H' : '%I';
- for ($i = 0, $for_max = count($hours); $i < $for_max; $i++)
- $hours[$i] = sprintf('%02d', $hours[$i]);
- $html_result .= '<select name=';
- if (null !== $field_array) {
- $html_result .= '"' . $field_array . '[' . $prefix . 'Hour]"';
- } else {
- $html_result .= '"' . $prefix . 'Hour"';
- }
- if (null !== $hour_extra) {
- $html_result .= ' ' . $hour_extra;
- }
- if (null !== $all_extra) {
- $html_result .= ' ' . $all_extra;
- }
- $html_result .= '>' . "\n";
- $html_result .= smarty_function_html_options(array('output' => $hours,
- 'values' => $hours,
- 'selected' => strftime($hour_fmt, $time),
- 'print_result' => false),
- $template);
- $html_result .= "</select>\n";
- }
+ $_html_hours = '';
+ $_extra = '';
+ $_name = $field_array ? ($field_array . '[' . $prefix . 'Hour]') : ($prefix . 'Hour');
+ if ($all_extra) {
+ $_extra .= ' ' . $all_extra;
+ }
+ if ($hour_extra) {
+ $_extra .= ' ' . $hour_extra;
+ }
+
+ $_html_hours = '<select name="' . $_name . '"';
+ if ($hour_id !== null || $all_id !== null) {
+ $_html_hours .= ' id="' . smarty_function_escape_special_chars(
+ $hour_id !== null ? ( $hour_id ? $hour_id : $_name ) : ( $all_id ? ($all_id . $_name) : $_name )
+ ) . '"';
+ }
+ if ($hour_size) {
+ $_html_hours .= ' size="' . $hour_size . '"';
+ }
+ $_html_hours .= $_extra . $extra_attrs . '>' . $option_separator;
+
+ if (isset($hour_empty) || isset($all_empty)) {
+ $_html_hours .= '<option value="">' . ( isset($hour_empty) ? $hour_empty : $all_empty ) . '</option>' . $option_separator;
+ }
+
+ $start = $use_24_hours ? 0 : 1;
+ $end = $use_24_hours ? 23 : 12;
+ for ($i=$start; $i <= $end; $i++) {
+ $_val = sprintf('%02d', $i);
+ $_text = $hour_format == '%02d' ? $_val : sprintf($hour_format, $i);
+ $_value = $hour_value_format == '%02d' ? $_val : sprintf($hour_value_format, $i);
+
+ if ($use_24_hours) {
+ $selected = $_hour == $_val;
+ } else {
+ $_hour12 = $_hour == 0
+ ? 12
+ : ($_hour <= 12 ? $_hour : $_hour -12);
+ }
+ $selected = $use_24_hours ? $_hour == $_val : $_hour12 == $_val;
+ $_html_hours .= '<option value="' . $_value . '"'
+ . ($selected ? ' selected="selected"' : '')
+ . '>' . $_text . '</option>' . $option_separator;
+ }
+
+ $_html_hours .= '</select>';
+ }
+
+ // generate minute <select>
if ($display_minutes) {
- $all_minutes = range(0, 59);
- for ($i = 0, $for_max = count($all_minutes); $i < $for_max; $i += $minute_interval)
- $minutes[] = sprintf('%02d', $all_minutes[$i]);
- $selected = intval(floor(strftime('%M', $time) / $minute_interval) * $minute_interval);
- $html_result .= '<select name=';
- if (null !== $field_array) {
- $html_result .= '"' . $field_array . '[' . $prefix . 'Minute]"';
- } else {
- $html_result .= '"' . $prefix . 'Minute"';
- }
- if (null !== $minute_extra) {
- $html_result .= ' ' . $minute_extra;
- }
- if (null !== $all_extra) {
- $html_result .= ' ' . $all_extra;
- }
- $html_result .= '>' . "\n";
-
- $html_result .= smarty_function_html_options(array('output' => $minutes,
- 'values' => $minutes,
- 'selected' => $selected,
- 'print_result' => false),
- $template);
- $html_result .= "</select>\n";
- }
+ $_html_minutes = '';
+ $_extra = '';
+ $_name = $field_array ? ($field_array . '[' . $prefix . 'Minute]') : ($prefix . 'Minute');
+ if ($all_extra) {
+ $_extra .= ' ' . $all_extra;
+ }
+ if ($minute_extra) {
+ $_extra .= ' ' . $minute_extra;
+ }
+
+ $_html_minutes = '<select name="' . $_name . '"';
+ if ($minute_id !== null || $all_id !== null) {
+ $_html_minutes .= ' id="' . smarty_function_escape_special_chars(
+ $minute_id !== null ? ( $minute_id ? $minute_id : $_name ) : ( $all_id ? ($all_id . $_name) : $_name )
+ ) . '"';
+ }
+ if ($minute_size) {
+ $_html_minutes .= ' size="' . $minute_size . '"';
+ }
+ $_html_minutes .= $_extra . $extra_attrs . '>' . $option_separator;
+
+ if (isset($minute_empty) || isset($all_empty)) {
+ $_html_minutes .= '<option value="">' . ( isset($minute_empty) ? $minute_empty : $all_empty ) . '</option>' . $option_separator;
+ }
+
+ $selected = $_minute - $_minute % $minute_interval;
+ for ($i=0; $i <= 59; $i += $minute_interval) {
+ $_val = sprintf('%02d', $i);
+ $_text = $minute_format == '%02d' ? $_val : sprintf($minute_format, $i);
+ $_value = $minute_value_format == '%02d' ? $_val : sprintf($minute_value_format, $i);
+ $_html_minutes .= '<option value="' . $_value . '"'
+ . ($selected == $i ? ' selected="selected"' : '')
+ . '>' . $_text . '</option>' . $option_separator;
+ }
+ $_html_minutes .= '</select>';
+ }
+
+ // generate second <select>
if ($display_seconds) {
- $all_seconds = range(0, 59);
- for ($i = 0, $for_max = count($all_seconds); $i < $for_max; $i += $second_interval)
- $seconds[] = sprintf('%02d', $all_seconds[$i]);
- $selected = intval(floor(strftime('%S', $time) / $second_interval) * $second_interval);
- $html_result .= '<select name=';
- if (null !== $field_array) {
- $html_result .= '"' . $field_array . '[' . $prefix . 'Second]"';
- } else {
- $html_result .= '"' . $prefix . 'Second"';
- }
-
- if (null !== $second_extra) {
- $html_result .= ' ' . $second_extra;
- }
- if (null !== $all_extra) {
- $html_result .= ' ' . $all_extra;
- }
- $html_result .= '>' . "\n";
-
- $html_result .= smarty_function_html_options(array('output' => $seconds,
- 'values' => $seconds,
- 'selected' => $selected,
- 'print_result' => false),
- $template);
- $html_result .= "</select>\n";
- }
+ $_html_seconds = '';
+ $_extra = '';
+ $_name = $field_array ? ($field_array . '[' . $prefix . 'Second]') : ($prefix . 'Second');
+ if ($all_extra) {
+ $_extra .= ' ' . $all_extra;
+ }
+ if ($second_extra) {
+ $_extra .= ' ' . $second_extra;
+ }
+
+ $_html_seconds = '<select name="' . $_name . '"';
+ if ($second_id !== null || $all_id !== null) {
+ $_html_seconds .= ' id="' . smarty_function_escape_special_chars(
+ $second_id !== null ? ( $second_id ? $second_id : $_name ) : ( $all_id ? ($all_id . $_name) : $_name )
+ ) . '"';
+ }
+ if ($second_size) {
+ $_html_seconds .= ' size="' . $second_size . '"';
+ }
+ $_html_seconds .= $_extra . $extra_attrs . '>' . $option_separator;
+
+ if (isset($second_empty) || isset($all_empty)) {
+ $_html_seconds .= '<option value="">' . ( isset($second_empty) ? $second_empty : $all_empty ) . '</option>' . $option_separator;
+ }
+
+ $selected = $_second - $_second % $second_interval;
+ for ($i=0; $i <= 59; $i += $second_interval) {
+ $_val = sprintf('%02d', $i);
+ $_text = $second_format == '%02d' ? $_val : sprintf($second_format, $i);
+ $_value = $second_value_format == '%02d' ? $_val : sprintf($second_value_format, $i);
+ $_html_seconds .= '<option value="' . $_value . '"'
+ . ($selected == $i ? ' selected="selected"' : '')
+ . '>' . $_text . '</option>' . $option_separator;
+ }
+
+ $_html_seconds .= '</select>';
+ }
+ // generate meridian <select>
if ($display_meridian && !$use_24_hours) {
- $html_result .= '<select name=';
- if (null !== $field_array) {
- $html_result .= '"' . $field_array . '[' . $prefix . 'Meridian]"';
- } else {
- $html_result .= '"' . $prefix . 'Meridian"';
- }
-
- if (null !== $meridian_extra) {
- $html_result .= ' ' . $meridian_extra;
- }
- if (null !== $all_extra) {
- $html_result .= ' ' . $all_extra;
- }
- $html_result .= '>' . "\n";
-
- $html_result .= smarty_function_html_options(array('output' => array('AM', 'PM'),
- 'values' => array('am', 'pm'),
- 'selected' => strtolower(strftime('%p', $time)),
- 'print_result' => false),
- $template);
- $html_result .= "</select>\n";
- }
-
- return $html_result;
-}
+ $_html_meridian = '';
+ $_extra = '';
+ $_name = $field_array ? ($field_array . '[' . $prefix . 'Meridian]') : ($prefix . 'Meridian');
+ if ($all_extra) {
+ $_extra .= ' ' . $all_extra;
+ }
+ if ($meridian_extra) {
+ $_extra .= ' ' . $meridian_extra;
+ }
+
+ $_html_meridian = '<select name="' . $_name . '"';
+ if ($meridian_id !== null || $all_id !== null) {
+ $_html_meridian .= ' id="' . smarty_function_escape_special_chars(
+ $meridian_id !== null ? ( $meridian_id ? $meridian_id : $_name ) : ( $all_id ? ($all_id . $_name) : $_name )
+ ) . '"';
+ }
+ if ($meridian_size) {
+ $_html_meridian .= ' size="' . $meridian_size . '"';
+ }
+ $_html_meridian .= $_extra . $extra_attrs . '>' . $option_separator;
+
+ if (isset($meridian_empty) || isset($all_empty)) {
+ $_html_meridian .= '<option value="">' . ( isset($meridian_empty) ? $meridian_empty : $all_empty ) . '</option>' . $option_separator;
+ }
+
+ $_html_meridian .= '<option value="am"'. ($_hour < 12 ? ' selected="selected"' : '') .'>AM</option>' . $option_separator
+ . '<option value="pm"'. ($_hour < 12 ? '' : ' selected="selected"') .'>PM</option>' . $option_separator
+ . '</select>';
+ }
+
+ $_html = '';
+ foreach (array('_html_hours', '_html_minutes', '_html_seconds', '_html_meridian') as $k) {
+ if (isset($$k)) {
+ if ($_html) {
+ $_html .= $field_separator;
+ }
+ $_html .= $$k;
+ }
+ }
+
+ return $_html;
+}
?>
\ No newline at end of file
diff --git a/gosa-core/include/smarty/plugins/function.html_table.php b/gosa-core/include/smarty/plugins/function.html_table.php
index 7986a9bcf99c2c664df7c1b6374e35ece99299d3..6b9cb9d129efb13a2397217e040dd5b1334513b9 100644 (file)
<?php
/**
* Smarty plugin
- *
+ *
* @package Smarty
* @subpackage PluginsFunction
*/
/**
* Smarty {html_table} function plugin
- *
+ *
* Type: function<br>
* Name: html_table<br>
* Date: Feb 17, 2003<br>
* Purpose: make an html table from an array of data<br>
- *
- *
+ * Params:
+ * <pre>
+ * - loop - array to loop through
+ * - cols - number of columns, comma separated list of column names
+ * or array of column names
+ * - rows - number of rows
+ * - table_attr - table attributes
+ * - th_attr - table heading attributes (arrays are cycled)
+ * - tr_attr - table row attributes (arrays are cycled)
+ * - td_attr - table cell attributes (arrays are cycled)
+ * - trailpad - value to pad trailing cells with
+ * - caption - text for caption element
+ * - vdir - vertical direction (default: "down", means top-to-bottom)
+ * - hdir - horizontal direction (default: "right", means left-to-right)
+ * - inner - inner loop (default "cols": print $loop line by line,
+ * $loop will be printed column by column otherwise)
+ * </pre>
* Examples:
* <pre>
* {table loop=$data}
* {table loop=$data cols=4 tr_attr='"bgcolor=red"'}
* {table loop=$data cols="first,second,third" tr_attr=$colors}
* </pre>
- *
- * @author Monte Ohrt <monte at ohrt dot com>
- * @author credit to Messju Mohr <messju at lammfellpuschen dot de>
- * @author credit to boots <boots dot smarty at yahoo dot com>
+ *
+ * @author Monte Ohrt <monte at ohrt dot com>
+ * @author credit to Messju Mohr <messju at lammfellpuschen dot de>
+ * @author credit to boots <boots dot smarty at yahoo dot com>
* @version 1.1
- * @link http://smarty.php.net/manual/en/language.function.html.table.php {html_table}
+ * @link http://www.smarty.net/manual/en/language.function.html.table.php {html_table}
* (Smarty online manual)
- * @param array $params parameters
- * Input:<br>
- * - loop = array to loop through
- * - cols = number of columns, comma separated list of column names
- * or array of column names
- * - rows = number of rows
- * - table_attr = table attributes
- * - th_attr = table heading attributes (arrays are cycled)
- * - tr_attr = table row attributes (arrays are cycled)
- * - td_attr = table cell attributes (arrays are cycled)
- * - trailpad = value to pad trailing cells with
- * - caption = text for caption element
- * - vdir = vertical direction (default: "down", means top-to-bottom)
- * - hdir = horizontal direction (default: "right", means left-to-right)
- * - inner = inner loop (default "cols": print $loop line by line,
- * $loop will be printed column by column otherwise)
- * @param object $template template object
- * @return string
+ * @param array $params parameters
+ * @param Smarty_Internal_Template $template template object
+ * @return string
*/
function smarty_function_html_table($params, $template)
{
if (!isset($params['loop'])) {
trigger_error("html_table: missing 'loop' parameter",E_USER_WARNING);
return;
- }
+ }
foreach ($params as $_key => $_value) {
switch ($_key) {
$cols_count = (int)$_value;
} else {
$cols_count = $cols;
- }
+ }
break;
case 'rows':
case 'th_attr':
$$_key = $_value;
break;
- }
- }
+ }
+ }
$loop_count = count($loop);
if (empty($params['rows'])) {
if (!empty($params['rows'])) {
/* no cols specified, but rows */
$cols_count = ceil($loop_count / $rows);
- }
- }
+ }
+ }
$output = "<table $table_attr>\n";
if (!empty($caption)) {
$output .= '<caption>' . $caption . "</caption>\n";
- }
+ }
if (is_array($cols)) {
$cols = ($hdir == 'right') ? $cols : array_reverse($cols);
$output .= '<th' . smarty_function_html_table_cycle('th', $th_attr, $r) . '>';
$output .= $cols[$r];
$output .= "</th>\n";
- }
+ }
$output .= "</tr></thead>\n";
- }
+ }
$output .= "<tbody>\n";
for ($r = 0; $r < $rows; $r++) {
if ($inner != 'cols') {
/* shuffle x to loop over rows*/
$x = floor($x / $cols_count) + ($x % $cols_count) * $rows;
- }
+ }
if ($x < $loop_count) {
$output .= "<td" . smarty_function_html_table_cycle('td', $td_attr, $c) . ">" . $loop[$x] . "</td>\n";
} else {
$output .= "<td" . smarty_function_html_table_cycle('td', $td_attr, $c) . ">$trailpad</td>\n";
- }
- }
+ }
+ }
$output .= "</tr>\n";
- }
+ }
$output .= "</tbody>\n";
$output .= "</table>\n";
return $output;
-}
+}
function smarty_function_html_table_cycle($name, $var, $no)
{
$ret = $var;
} else {
$ret = $var[$no % count($var)];
- }
+ }
return ($ret) ? ' ' . $ret : '';
}
diff --git a/gosa-core/include/smarty/plugins/function.mailto.php b/gosa-core/include/smarty/plugins/function.mailto.php
index 976218f53885fd221cb86fba476f80d3d2a6c1fc..c61cf2dfe56246d8a42a25b3d612959e33e38011 100644 (file)
<?php
/**
* Smarty plugin
- *
+ *
* @package Smarty
* @subpackage PluginsFunction
*/
/**
* Smarty {mailto} function plugin
- *
+ *
* Type: function<br>
* Name: mailto<br>
* Date: May 21, 2002
- * Purpose: automate mailto address link creation, and optionally
- * encode them.<br>
- *
+ * Purpose: automate mailto address link creation, and optionally encode them.<br>
+ * Params:
+ * <pre>
+ * - address - (required) - e-mail address
+ * - text - (optional) - text to display, default is address
+ * - encode - (optional) - can be one of:
+ * * none : no encoding (default)
+ * * javascript : encode with javascript
+ * * javascript_charcode : encode with javascript charcode
+ * * hex : encode with hexidecimal (no javascript)
+ * - cc - (optional) - address(es) to carbon copy
+ * - bcc - (optional) - address(es) to blind carbon copy
+ * - subject - (optional) - e-mail subject
+ * - newsgroups - (optional) - newsgroup(s) to post to
+ * - followupto - (optional) - address(es) to follow up to
+ * - extra - (optional) - extra tags for the href link
+ * </pre>
* Examples:
* <pre>
* {mailto address="me@domain.com"}
* {mailto address="me@domain.com" cc="you@domain.com,they@domain.com"}
* {mailto address="me@domain.com" extra='class="mailto"'}
* </pre>
- *
- * @link http://smarty.php.net/manual/en/language.function.mailto.php {mailto}
+ *
+ * @link http://www.smarty.net/manual/en/language.function.mailto.php {mailto}
* (Smarty online manual)
* @version 1.2
- * @author Monte Ohrt <monte at ohrt dot com>
- * @author credits to Jason Sweat (added cc, bcc and subject functionality)
- * @param array $params parameters
- * Input:<br>
- * - address = e-mail address
- * - text = (optional) text to display, default is address
- * - encode = (optional) can be one of:
- * * none : no encoding (default)
- * * javascript : encode with javascript
- * * javascript_charcode : encode with javascript charcode
- * * hex : encode with hexidecimal (no javascript)
- * - cc = (optional) address(es) to carbon copy
- * - bcc = (optional) address(es) to blind carbon copy
- * - subject = (optional) e-mail subject
- * - newsgroups = (optional) newsgroup(s) to post to
- * - followupto = (optional) address(es) to follow up to
- * - extra = (optional) extra tags for the href link
- * @param object $template template object
- * @return string
+ * @author Monte Ohrt <monte at ohrt dot com>
+ * @author credits to Jason Sweat (added cc, bcc and subject functionality)
+ * @param array $params parameters
+ * @param Smarty_Internal_Template $template template object
+ * @return string
*/
function smarty_function_mailto($params, $template)
{
+ static $_allowed_encoding = array('javascript' => true, 'javascript_charcode' => true, 'hex' => true, 'none' => true);
$extra = '';
if (empty($params['address'])) {
return;
} else {
$address = $params['address'];
- }
+ }
- $text = $address;
+ $text = $address;
// netscape and mozilla do not decode %40 (@) in BCC field (bug?)
// so, don't encode it.
$search = array('%40', '%2C');
$$var = $value;
default:
- }
- }
-
- $mail_parm_vals = '';
- for ($i = 0; $i < count($mail_parms); $i++) {
- $mail_parm_vals .= (0 == $i) ? '?' : '&';
- $mail_parm_vals .= $mail_parms[$i];
- }
- $address .= $mail_parm_vals;
+ }
+ }
+ if ($mail_parms) {
+ $address .= '?' . join('&', $mail_parms);
+ }
+
$encode = (empty($params['encode'])) ? 'none' : $params['encode'];
- if (!in_array($encode, array('javascript', 'javascript_charcode', 'hex', 'none'))) {
- trigger_error("mailto: 'encode' parameter must be none, javascript or hex",E_USER_WARNING);
+ if (!isset($_allowed_encoding[$encode])) {
+ trigger_error("mailto: 'encode' parameter must be none, javascript, javascript_charcode or hex", E_USER_WARNING);
return;
- }
-
+ }
+ // FIXME: (rodneyrehm) document.write() excues me what? 1998 has passed!
if ($encode == 'javascript') {
$string = 'document.write(\'<a href="mailto:' . $address . '" ' . $extra . '>' . $text . '</a>\');';
$js_encode = '';
- for ($x = 0; $x < strlen($string); $x++) {
+ for ($x = 0, $_length = strlen($string); $x < $_length; $x++) {
$js_encode .= '%' . bin2hex($string[$x]);
- }
+ }
return '<script type="text/javascript">eval(unescape(\'' . $js_encode . '\'))</script>';
} elseif ($encode == 'javascript_charcode') {
for($x = 0, $y = strlen($string); $x < $y; $x++) {
$ord[] = ord($string[$x]);
- }
+ }
- $_ret = "<script type=\"text/javascript\" language=\"javascript\">\n";
- $_ret .= "<!--\n";
- $_ret .= "{document.write(String.fromCharCode(";
- $_ret .= implode(',', $ord);
- $_ret .= "))";
- $_ret .= "}\n";
- $_ret .= "//-->\n";
- $_ret .= "</script>\n";
+ $_ret = "<script type=\"text/javascript\" language=\"javascript\">\n"
+ . "{document.write(String.fromCharCode("
+ . implode(',', $ord)
+ . "))"
+ . "}\n"
+ . "</script>\n";
return $_ret;
} elseif ($encode == 'hex') {
if (!empty($match[2])) {
trigger_error("mailto: hex encoding does not work with extra attributes. Try javascript.",E_USER_WARNING);
return;
- }
+ }
$address_encode = '';
- for ($x = 0; $x < strlen($address); $x++) {
- if (preg_match('!\w!', $address[$x])) {
+ for ($x = 0, $_length = strlen($address); $x < $_length; $x++) {
+ if (preg_match('!\w!u', $address[$x])) {
$address_encode .= '%' . bin2hex($address[$x]);
} else {
$address_encode .= $address[$x];
- }
- }
+ }
+ }
$text_encode = '';
- for ($x = 0; $x < strlen($text); $x++) {
+ for ($x = 0, $_length = strlen($text); $x < $_length; $x++) {
$text_encode .= '&#x' . bin2hex($text[$x]) . ';';
- }
+ }
$mailto = "mailto:";
return '<a href="' . $mailto . $address_encode . '" ' . $extra . '>' . $text_encode . '</a>';
} else {
// no encoding
return '<a href="mailto:' . $address . '" ' . $extra . '>' . $text . '</a>';
- }
-}
+ }
+}
?>
\ No newline at end of file
diff --git a/gosa-core/include/smarty/plugins/function.math.php b/gosa-core/include/smarty/plugins/function.math.php
index cd90020a43d0850363041444f9fa19e736fadc01..f4d3f05ee3c268adebc12a087d746f052bf793c2 100644 (file)
*
* Type: function<br>
* Name: math<br>
- * Purpose: handle math computations in template<br>
- * @link http://smarty.php.net/manual/en/language.function.math.php {math}
+ * Purpose: handle math computations in template
+ *
+ * @link http://www.smarty.net/manual/en/language.function.math.php {math}
* (Smarty online manual)
* @author Monte Ohrt <monte at ohrt dot com>
- * @param array $params parameters
- * @param object $template template object
+ * @param array $params parameters
+ * @param Smarty_Internal_Template $template template object
* @return string|null
*/
function smarty_function_math($params, $template)
{
+ static $_allowed_funcs = array(
+ 'int' => true, 'abs' => true, 'ceil' => true, 'cos' => true, 'exp' => true, 'floor' => true,
+ 'log' => true, 'log10' => true, 'max' => true, 'min' => true, 'pi' => true, 'pow' => true,
+ 'rand' => true, 'round' => true, 'sin' => true, 'sqrt' => true, 'srand' => true ,'tan' => true
+ );
// be sure equation parameter is present
if (empty($params['equation'])) {
trigger_error("math: missing equation parameter",E_USER_WARNING);
// match all vars in equation, make sure all are passed
preg_match_all("!(?:0x[a-fA-F0-9]+)|([a-zA-Z][a-zA-Z0-9_]*)!",$equation, $match);
- $allowed_funcs = array('int','abs','ceil','cos','exp','floor','log','log10',
- 'max','min','pi','pow','rand','round','sin','sqrt','srand','tan');
-
+
foreach($match[1] as $curr_var) {
- if ($curr_var && !in_array($curr_var, array_keys($params)) && !in_array($curr_var, $allowed_funcs)) {
+ if ($curr_var && !isset($params[$curr_var]) && !isset($_allowed_funcs[$curr_var])) {
trigger_error("math: function call $curr_var not allowed",E_USER_WARNING);
return;
}
diff --git a/gosa-core/include/smarty/plugins/modifier.capitalize.php b/gosa-core/include/smarty/plugins/modifier.capitalize.php
index cd24589d8df3bbc70f9415077a60983fc21d8d8c..1e199096839f4a971500f1404316aeb6d34cea02 100644 (file)
* Type: modifier<br>
* Name: capitalize<br>
* Purpose: capitalize words in the string
- *
- * @link
+ *
+ * {@internal {$string|capitalize:true:true} is the fastest option for MBString enabled systems }}
+ *
+ * @param string $string string to capitalize
+ * @param boolean $uc_digits also capitalize "x123" to "X123"
+ * @param boolean $lc_rest capitalize first letters, lowercase all following letters "aAa" to "Aaa"
+ * @return string capitalized string
* @author Monte Ohrt <monte at ohrt dot com>
- * @param string $
- * @return string
+ * @author Rodney Rehm
*/
-function smarty_modifier_capitalize($string, $uc_digits = false)
-{
- // uppercase with php function ucwords
- $upper_string = ucwords($string);
- // check for any missed hyphenated words
- $upper_string = preg_replace("!(^|[^\p{L}'])([\p{Ll}])!ue", "'\\1'.ucfirst('\\2')", $upper_string);
+function smarty_modifier_capitalize($string, $uc_digits = false, $lc_rest = false)
+{
+ if (SMARTY_MBSTRING /* ^phpunit */&&empty($_SERVER['SMARTY_PHPUNIT_DISABLE_MBSTRING'])/* phpunit$ */) {
+ if ($lc_rest) {
+ // uppercase (including hyphenated words)
+ $upper_string = mb_convert_case( $string, MB_CASE_TITLE, SMARTY_RESOURCE_CHAR_SET );
+ } else {
+ // uppercase word breaks
+ $upper_string = preg_replace("!(^|[^\p{L}'])([\p{Ll}])!ueS", "stripslashes('\\1').mb_convert_case(stripslashes('\\2'),MB_CASE_UPPER, SMARTY_RESOURCE_CHAR_SET)", $string);
+ }
+ // check uc_digits case
+ if (!$uc_digits) {
+ if (preg_match_all("!\b([\p{L}]*[\p{N}]+[\p{L}]*)\b!u", $string, $matches, PREG_OFFSET_CAPTURE)) {
+ foreach($matches[1] as $match) {
+ $upper_string = substr_replace($upper_string, mb_strtolower($match[0], SMARTY_RESOURCE_CHAR_SET), $match[1], strlen($match[0]));
+ }
+ }
+ }
+ $upper_string = preg_replace("!((^|\s)['\"])(\w)!ue", "stripslashes('\\1').mb_convert_case(stripslashes('\\3'),MB_CASE_UPPER, SMARTY_RESOURCE_CHAR_SET)", $upper_string);
+ return $upper_string;
+ }
+
+ // lowercase first
+ if ($lc_rest) {
+ $string = strtolower($string);
+ }
+ // uppercase (including hyphenated words)
+ $upper_string = preg_replace("!(^|[^\p{L}'])([\p{Ll}])!ueS", "stripslashes('\\1').ucfirst(stripslashes('\\2'))", $string);
// check uc_digits case
if (!$uc_digits) {
if (preg_match_all("!\b([\p{L}]*[\p{N}]+[\p{L}]*)\b!u", $string, $matches, PREG_OFFSET_CAPTURE)) {
- foreach($matches[1] as $match)
- $upper_string = substr_replace($upper_string, $match[0], $match[1], strlen($match[0]));
+ foreach($matches[1] as $match) {
+ $upper_string = substr_replace($upper_string, strtolower($match[0]), $match[1], strlen($match[0]));
+ }
}
- }
+ }
+ $upper_string = preg_replace("!((^|\s)['\"])(\w)!ue", "stripslashes('\\1').strtoupper(stripslashes('\\3'))", $upper_string);
return $upper_string;
}
diff --git a/gosa-core/include/smarty/plugins/modifier.date_format.php b/gosa-core/include/smarty/plugins/modifier.date_format.php
index 3656c1c8838af7ffcc5b222c20964872b263cec6..729322b206efd14b0220551aa44d450fd4cb4add 100644 (file)
* - format: strftime format for output
* - default_date: default date if $string is empty
*
- * @link http://smarty.php.net/manual/en/language.modifier.date.format.php date_format (Smarty online manual)
+ * @link http://www.smarty.net/manual/en/language.modifier.date.format.php date_format (Smarty online manual)
* @author Monte Ohrt <monte at ohrt dot com>
- * @param string $
- * @param string $
- * @param string $
+ * @param string $string input date string
+ * @param string $format strftime format for output
+ * @param string $default_date default date if $string is empty
+ * @param string $formatter either 'strftime' or 'auto'
* @return string |void
* @uses smarty_make_timestamp()
*/
diff --git a/gosa-core/include/smarty/plugins/modifier.debug_print_var.php b/gosa-core/include/smarty/plugins/modifier.debug_print_var.php
index 013337ae0db4157354ad2e1da859e35b121ff64c..747c87fde9141baca489eacd8a5bcc7f153ac916 100644 (file)
* Type: modifier<br>
* Name: debug_print_var<br>
* Purpose: formats variable contents for display in the console
- *
- * @link http://smarty.php.net/manual/en/language.modifier.debug.print.var.php debug_print_var (Smarty online manual)
+ *
* @author Monte Ohrt <monte at ohrt dot com>
- * @param array $ |object
- * @param integer $
- * @param integer $
+ * @param array|object $var variable to be formatted
+ * @param integer $depth maximum recursion depth if $var is an array
+ * @param integer $length maximum string length if $var is a string
* @return string
*/
function smarty_modifier_debug_print_var ($var, $depth = 0, $length = 40)
$depth--;
}
break;
+
case 'object' :
$object_vars = get_object_vars($var);
$results = '<b>' . get_class($var) . ' Object (' . count($object_vars) . ')</b>';
$depth--;
}
break;
+
case 'boolean' :
case 'NULL' :
case 'resource' :
}
$results = '<i>' . $results . '</i>';
break;
+
case 'integer' :
case 'float' :
$results = htmlspecialchars((string) $var);
break;
+
case 'string' :
$results = strtr($var, $_replace);
- if (strlen($var) > $length) {
- $results = substr($var, 0, $length - 3) . '...';
- }
+ if (SMARTY_MBSTRING /* ^phpunit */&&empty($_SERVER['SMARTY_PHPUNIT_DISABLE_MBSTRING'])/* phpunit$ */) {
+ if (mb_strlen($var, SMARTY_RESOURCE_CHAR_SET) > $length) {
+ $results = mb_substr($var, 0, $length - 3, SMARTY_RESOURCE_CHAR_SET) . '...';
+ }
+ } else {
+ if (isset($var[$length])) {
+ $results = substr($var, 0, $length - 3) . '...';
+ }
+ }
+
$results = htmlspecialchars('"' . $results . '"');
break;
+
case 'unknown type' :
default :
$results = strtr((string) $var, $_replace);
- if (strlen($results) > $length) {
- $results = substr($results, 0, $length - 3) . '...';
- }
+ if (SMARTY_MBSTRING /* ^phpunit */&&empty($_SERVER['SMARTY_PHPUNIT_DISABLE_MBSTRING'])/* phpunit$ */) {
+ if (mb_strlen($results, SMARTY_RESOURCE_CHAR_SET) > $length) {
+ $results = mb_substr($results, 0, $length - 3, SMARTY_RESOURCE_CHAR_SET) . '...';
+ }
+ } else {
+ if (strlen($results) > $length) {
+ $results = substr($results, 0, $length - 3) . '...';
+ }
+ }
+
$results = htmlspecialchars($results);
}
diff --git a/gosa-core/include/smarty/plugins/modifier.escape.php b/gosa-core/include/smarty/plugins/modifier.escape.php
index 37bc0e30e9e186eea810bf781bd0dcb95f317354..5e865a8fedf70ce9399f014af62990654169d955 100644 (file)
<?php
/**
* Smarty plugin
- *
+ *
* @package Smarty
* @subpackage PluginsModifier
*/
-
+
/**
* Smarty escape modifier plugin
- *
+ *
* Type: modifier<br>
* Name: escape<br>
* Purpose: escape string for output
- *
- * @link http://smarty.php.net/manual/en/language.modifier.count.characters.php count_characters (Smarty online manual)
- * @author Monte Ohrt <monte at ohrt dot com>
- * @param string $string input string
- * @param string $esc_type escape type
- * @param string $char_set character set
+ *
+ * @link http://www.smarty.net/manual/en/language.modifier.count.characters.php count_characters (Smarty online manual)
+ * @author Monte Ohrt <monte at ohrt dot com>
+ * @param string $string input string
+ * @param string $esc_type escape type
+ * @param string $char_set character set, used for htmlspecialchars() or htmlentities()
+ * @param boolean $double_encode encode already encoded entitites again, used for htmlspecialchars() or htmlentities()
* @return string escaped input string
*/
-function smarty_modifier_escape($string, $esc_type = 'html', $char_set = SMARTY_RESOURCE_CHAR_SET)
+function smarty_modifier_escape($string, $esc_type = 'html', $char_set = null, $double_encode = true)
{
+ if (!$char_set) {
+ $char_set = SMARTY_RESOURCE_CHAR_SET;
+ }
+
switch ($esc_type) {
case 'html':
- return htmlspecialchars($string, ENT_QUOTES, $char_set);
+ return htmlspecialchars($string, ENT_QUOTES, $char_set, $double_encode);
case 'htmlall':
- return htmlentities($string, ENT_QUOTES, $char_set);
+ if (SMARTY_MBSTRING /* ^phpunit */ && empty($_SERVER['SMARTY_PHPUNIT_DISABLE_MBSTRING'])/* phpunit$ */) {
+ // mb_convert_encoding ignores htmlspecialchars()
+ $string = htmlspecialchars($string, ENT_QUOTES, $char_set, $double_encode);
+ // htmlentities() won't convert everything, so use mb_convert_encoding
+ return mb_convert_encoding($string, 'HTML-ENTITIES', $char_set);
+ }
+
+ // no MBString fallback
+ return htmlentities($string, ENT_QUOTES, $char_set, $double_encode);
case 'url':
return rawurlencode($string);
@@ -35,57 +48,96 @@ function smarty_modifier_escape($string, $esc_type = 'html', $char_set = SMARTY_
case 'urlpathinfo':
return str_replace('%2F', '/', rawurlencode($string));
- case 'quotes':
+ case 'quotes':
// escape unescaped single quotes
return preg_replace("%(?<!\\\\)'%", "\\'", $string);
- case 'hex':
- // escape every character into hex
+ case 'hex':
+ // escape every byte into hex
+ // Note that the UTF-8 encoded character ä will be represented as %c3%a4
$return = '';
- for ($x = 0; $x < strlen($string); $x++) {
+ $_length = strlen($string);
+ for ($x = 0; $x < $_length; $x++) {
$return .= '%' . bin2hex($string[$x]);
- }
+ }
return $return;
case 'hexentity':
$return = '';
- for ($x = 0; $x < strlen($string); $x++) {
+ if (SMARTY_MBSTRING /* ^phpunit */ && empty($_SERVER['SMARTY_PHPUNIT_DISABLE_MBSTRING'])/* phpunit$ */) {
+ require_once(SMARTY_PLUGINS_DIR . 'shared.mb_unicode.php');
+ $return = '';
+ foreach (smarty_mb_to_unicode($string, SMARTY_RESOURCE_CHAR_SET) as $unicode) {
+ $return .= '&#x' . strtoupper(dechex($unicode)) . ';';
+ }
+ return $return;
+ }
+ // no MBString fallback
+ $_length = strlen($string);
+ for ($x = 0; $x < $_length; $x++) {
$return .= '&#x' . bin2hex($string[$x]) . ';';
- }
+ }
return $return;
case 'decentity':
$return = '';
- for ($x = 0; $x < strlen($string); $x++) {
+ if (SMARTY_MBSTRING /* ^phpunit */ && empty($_SERVER['SMARTY_PHPUNIT_DISABLE_MBSTRING'])/* phpunit$ */) {
+ require_once(SMARTY_PLUGINS_DIR . 'shared.mb_unicode.php');
+ $return = '';
+ foreach (smarty_mb_to_unicode($string, SMARTY_RESOURCE_CHAR_SET) as $unicode) {
+ $return .= '&#' . $unicode . ';';
+ }
+ return $return;
+ }
+ // no MBString fallback
+ $_length = strlen($string);
+ for ($x = 0; $x < $_length; $x++) {
$return .= '&#' . ord($string[$x]) . ';';
- }
+ }
return $return;
- case 'javascript':
+ case 'javascript':
// escape quotes and backslashes, newlines, etc.
return strtr($string, array('\\' => '\\\\', "'" => "\\'", '"' => '\\"', "\r" => '\\r', "\n" => '\\n', '</' => '<\/'));
- case 'mail':
- require_once(SMARTY_PLUGINS_DIR . 'shared.mb_str_replace.php');
- return smarty_mb_str_replace(array('@', '.'), array(' [AT] ', ' [DOT] '), $string);
+ case 'mail':
+ if (SMARTY_MBSTRING /* ^phpunit */ && empty($_SERVER['SMARTY_PHPUNIT_DISABLE_MBSTRING'])/* phpunit$ */) {
+ require_once(SMARTY_PLUGINS_DIR . 'shared.mb_str_replace.php');
+ return smarty_mb_str_replace(array('@', '.'), array(' [AT] ', ' [DOT] '), $string);
+ }
+ // no MBString fallback
+ return str_replace(array('@', '.'), array(' [AT] ', ' [DOT] '), $string);
- case 'nonstd':
+ case 'nonstd':
// escape non-standard chars, such as ms document quotes
- $_res = '';
- for($_i = 0, $_len = strlen($string); $_i < $_len; $_i++) {
- $_ord = ord(substr($string, $_i, 1));
+ $return = '';
+ if (SMARTY_MBSTRING /* ^phpunit */ && empty($_SERVER['SMARTY_PHPUNIT_DISABLE_MBSTRING'])/* phpunit$ */) {
+ require_once(SMARTY_PLUGINS_DIR . 'shared.mb_unicode.php');
+ foreach (smarty_mb_to_unicode($string, SMARTY_RESOURCE_CHAR_SET) as $unicode) {
+ if ($unicode >= 126) {
+ $return .= '&#' . $unicode . ';';
+ } else {
+ $return .= chr($unicode);
+ }
+ }
+ return $return;
+ }
+
+ $_length = strlen($string);
+ for ($_i = 0; $_i < $_length; $_i++) {
+ $_ord = ord(substr($string, $_i, 1));
// non-standard char, escape it
if ($_ord >= 126) {
- $_res .= '&#' . $_ord . ';';
+ $return .= '&#' . $_ord . ';';
} else {
- $_res .= substr($string, $_i, 1);
- }
- }
- return $_res;
+ $return .= substr($string, $_i, 1);
+ }
+ }
+ return $return;
default:
return $string;
- }
-}
+ }
+}
?>
\ No newline at end of file
diff --git a/gosa-core/include/smarty/plugins/modifier.regex_replace.php b/gosa-core/include/smarty/plugins/modifier.regex_replace.php
index 9f148800e98d2e3401769f36ec6c7e37ca223ee5..f9fd5fa5324a41a241bfddd42a8cb5e91a6806b4 100644 (file)
* Type: modifier<br>
* Name: regex_replace<br>
* Purpose: regular expression search/replace
+ *
* @link http://smarty.php.net/manual/en/language.modifier.regex.replace.php
* regex_replace (Smarty online manual)
- * @author Monte Ohrt <monte at ohrt dot com>
- * @param string
- * @param string|array
- * @param string|array
+ * @author Monte Ohrt <monte at ohrt dot com>
+ * @param string $string input string
+ * @param string|array $search regular expression(s) to search for
+ * @param string|array $replace string(s) that should be replaced
* @return string
*/
function smarty_modifier_regex_replace($string, $search, $replace)
{
if(is_array($search)) {
- foreach($search as $idx => $s)
- $search[$idx] = _smarty_regex_replace_check($s);
+ foreach($search as $idx => $s) {
+ $search[$idx] = _smarty_regex_replace_check($s);
+ }
} else {
- $search = _smarty_regex_replace_check($search);
- }
-
+ $search = _smarty_regex_replace_check($search);
+ }
return preg_replace($search, $replace, $string);
}
+/**
+ * @param string $search string(s) that should be replaced
+ * @return string
+ * @ignore
+ */
function _smarty_regex_replace_check($search)
{
- if (($pos = strpos($search,"\0")) !== false)
- $search = substr($search,0,$pos);
+ // null-byte injection detection
+ // anything behind the first null-byte is ignored
+ if (($pos = strpos($search,"\0")) !== false) {
+ $search = substr($search,0,$pos);
+ }
+ // remove eval-modifier from $search
if (preg_match('!([a-zA-Z\s]+)$!s', $search, $match) && (strpos($match[1], 'e') !== false)) {
- /* remove eval-modifier from $search */
$search = substr($search, 0, -strlen($match[1])) . preg_replace('![e\s]+!', '', $match[1]);
}
return $search;
diff --git a/gosa-core/include/smarty/plugins/modifier.replace.php b/gosa-core/include/smarty/plugins/modifier.replace.php
index 6a6698164312e52bf43a269f99057a49d9f2bc33..ce671b1f768bd2aebcd19360ac6d797d2fea0cfa 100644 (file)
* @link http://smarty.php.net/manual/en/language.modifier.replace.php replace (Smarty online manual)
* @author Monte Ohrt <monte at ohrt dot com>
* @author Uwe Tews
- * @param string $
- * @param string $
- * @param string $
+ * @param string $string input string
+ * @param string $search text to search for
+ * @param string $replace replacement text
* @return string
*/
function smarty_modifier_replace($string, $search, $replace)
{
- if (function_exists('mb_split')) {
- require_once(SMARTY_PLUGINS_DIR . 'shared.mb_str_replace.php');
- return smarty_mb_str_replace($search, $replace, $string);
+ if (SMARTY_MBSTRING /* ^phpunit */&&empty($_SERVER['SMARTY_PHPUNIT_DISABLE_MBSTRING'])/* phpunit$ */) {
+ require_once(SMARTY_PLUGINS_DIR . 'shared.mb_str_replace.php');
+ return smarty_mb_str_replace($search, $replace, $string);
}
+
return str_replace($search, $replace, $string);
}
+
?>
\ No newline at end of file
diff --git a/gosa-core/include/smarty/plugins/modifier.spacify.php b/gosa-core/include/smarty/plugins/modifier.spacify.php
index f14e026bcfb08d43c6d2f3eaaaa3574eb2077785..f7985add4053d25314a4d5a7e1f5c38d12a35c45 100644 (file)
*
* @link http://smarty.php.net/manual/en/language.modifier.spacify.php spacify (Smarty online manual)
* @author Monte Ohrt <monte at ohrt dot com>
- * @param string $
- * @param string $
- * @return string
+ * @param string $string input string
+ * @param string $spacify_char string to insert between characters.
+ * @return string
*/
function smarty_modifier_spacify($string, $spacify_char = ' ')
-{
- // mb_ functions available?
- if (function_exists('mb_strlen') && mb_detect_encoding($string, 'UTF-8, ISO-8859-1') === 'UTF-8') {
- $strlen = mb_strlen($string);
- while ($strlen) {
- $array[] = mb_substr($string, 0, 1, "UTF-8");
- $string = mb_substr($string, 1, $strlen, "UTF-8");
- $strlen = mb_strlen($string);
- }
- return implode($spacify_char, $array);
- } else {
- return implode($spacify_char, preg_split('//', $string, -1));
- }
+{
+ // well… what about charsets besides latin and UTF-8?
+ return implode($spacify_char, preg_split('//u', $string, -1, PREG_SPLIT_NO_EMPTY));
}
?>
\ No newline at end of file
diff --git a/gosa-core/include/smarty/plugins/modifier.truncate.php b/gosa-core/include/smarty/plugins/modifier.truncate.php
index 0e9d4b9f2124ec935aa953a31cd35250d049d533..99ae54375211564bdb875c46aacb8b2da1893b5f 100644 (file)
*
* @link http://smarty.php.net/manual/en/language.modifier.truncate.php truncate (Smarty online manual)
* @author Monte Ohrt <monte at ohrt dot com>
- * @param string $string input string
- * @param integer $length lenght of truncated text
- * @param string $etc end string
+ * @param string $string input string
+ * @param integer $length length of truncated text
+ * @param string $etc end string
* @param boolean $break_words truncate at word boundary
- * @param boolean $middle truncate in the middle of text
+ * @param boolean $middle truncate in the middle of text
* @return string truncated string
*/
-function smarty_modifier_truncate($string, $length = 80, $etc = '...',
- $break_words = false, $middle = false)
-{
+function smarty_modifier_truncate($string, $length = 80, $etc = '...', $break_words = false, $middle = false) {
if ($length == 0)
return '';
- if (is_callable('mb_strlen')) {
- if (mb_detect_encoding($string, 'UTF-8, ISO-8859-1') === 'UTF-8') {
- // $string has utf-8 encoding
- if (mb_strlen($string) > $length) {
- $length -= min($length, mb_strlen($etc));
- if (!$break_words && !$middle) {
- $string = preg_replace('/\s+?(\S+)?$/u', '', mb_substr($string, 0, $length + 1));
- }
- if (!$middle) {
- return mb_substr($string, 0, $length) . $etc;
- } else {
- return mb_substr($string, 0, $length / 2) . $etc . mb_substr($string, - $length / 2);
- }
- } else {
- return $string;
+ if (SMARTY_MBSTRING /* ^phpunit */&&empty($_SERVER['SMARTY_PHPUNIT_DISABLE_MBSTRING'])/* phpunit$ */) {
+ if (mb_strlen($string, SMARTY_RESOURCE_CHAR_SET) > $length) {
+ $length -= min($length, mb_strlen($etc, SMARTY_RESOURCE_CHAR_SET));
+ if (!$break_words && !$middle) {
+ $string = preg_replace('/\s+?(\S+)?$/u', '', mb_substr($string, 0, $length + 1, SMARTY_RESOURCE_CHAR_SET));
}
- }
- }
- // $string has no utf-8 encoding
- if (strlen($string) > $length) {
+ if (!$middle) {
+ return mb_substr($string, 0, $length, SMARTY_RESOURCE_CHAR_SET) . $etc;
+ }
+ return mb_substr($string, 0, $length / 2, SMARTY_RESOURCE_CHAR_SET) . $etc . mb_substr($string, - $length / 2, $length, SMARTY_RESOURCE_CHAR_SET);
+ }
+ return $string;
+ }
+
+ // no MBString fallback
+ if (isset($string[$length])) {
$length -= min($length, strlen($etc));
if (!$break_words && !$middle) {
$string = preg_replace('/\s+?(\S+)?$/', '', substr($string, 0, $length + 1));
}
if (!$middle) {
return substr($string, 0, $length) . $etc;
- } else {
- return substr($string, 0, $length / 2) . $etc . substr($string, - $length / 2);
- }
- } else {
- return $string;
- }
+ }
+ return substr($string, 0, $length / 2) . $etc . substr($string, - $length / 2);
+ }
+ return $string;
}
?>
\ No newline at end of file
diff --git a/gosa-core/include/smarty/plugins/modifiercompiler.cat.php b/gosa-core/include/smarty/plugins/modifiercompiler.cat.php
index 37019d723c36ef2ad0719438ec04188a8382f4ec..1cfe6308a18bf2606a49e964991b254454773e25 100644 (file)
*\r
* Type: modifier<br>\r
* Name: cat<br>\r
- * Date: Feb 24, 2003\r
- * Purpose: catenate a value to a variable\r
- * Input: string to catenate\r
+ * Date: Feb 24, 2003<br>\r
+ * Purpose: catenate a value to a variable<br>\r
+ * Input: string to catenate<br>\r
* Example: {$var|cat:"foo"}\r
+ *\r
* @link http://smarty.php.net/manual/en/language.modifier.cat.php cat\r
* (Smarty online manual)\r
* @author Uwe Tews\r
diff --git a/gosa-core/include/smarty/plugins/modifiercompiler.count_characters.php b/gosa-core/include/smarty/plugins/modifiercompiler.count_characters.php
index 40867f529635e978a95a0f202e6a999b0bb3dda3..ae95fda4a9b5fe551a199dcbb1323970477203a9 100644 (file)
\r
/**\r
* Smarty count_characters modifier plugin\r
- * \r
+ *\r
* Type: modifier<br>\r
* Name: count_characteres<br>\r
* Purpose: count the number of characters in a text\r
- * \r
- * @link http://smarty.php.net/manual/en/language.modifier.count.characters.php count_characters (Smarty online manual)\r
- * @author Uwe Tews \r
+ *\r
+ * @link http://www.smarty.net/manual/en/language.modifier.count.characters.php count_characters (Smarty online manual)\r
+ * @author Uwe Tews\r
* @param array $params parameters\r
* @return string with compiled code\r
*/\r
function smarty_modifiercompiler_count_characters($params, $compiler)\r
{\r
- // mb_ functions available?\r
- if (function_exists('mb_strlen')) {\r
- // count also spaces?\r
- if (isset($params[1]) && $params[1] == 'true') {\r
- return '((mb_detect_encoding(' . $params[0] . ', \'UTF-8, ISO-8859-1\') === \'UTF-8\') ? mb_strlen(' . $params[0] . ', SMARTY_RESOURCE_CHAR_SET) : strlen(' . $params[0] . '))';\r
- } \r
- return '((mb_detect_encoding(' . $params[0] . ', \'UTF-8, ISO-8859-1\') === \'UTF-8\') ? preg_match_all(\'#[^\s\pZ]#u\', ' . $params[0] . ', $tmp) : preg_match_all(\'/[^\s]/\',' . $params[0] . ', $tmp))';\r
- } else {\r
- // count also spaces?\r
- if (isset($params[1]) && $params[1] == 'true') {\r
- return 'strlen(' . $params[0] . ')';\r
- } \r
- return 'preg_match_all(\'/[^\s]/\',' . $params[0] . ', $tmp)';\r
- } \r
+ if (!isset($params[1]) || $params[1] != 'true') {\r
+ return 'preg_match_all(\'/[^\s]/u\',' . $params[0] . ', $tmp)';\r
+ }\r
+ if (SMARTY_MBSTRING /* ^phpunit */&&empty($_SERVER['SMARTY_PHPUNIT_DISABLE_MBSTRING'])/* phpunit$ */) {\r
+ return 'mb_strlen(' . $params[0] . ', SMARTY_RESOURCE_CHAR_SET)';\r
+ }\r
+ // no MBString fallback\r
+ return 'strlen(' . $params[0] . ')';\r
}\r
\r
?>
\ No newline at end of file
diff --git a/gosa-core/include/smarty/plugins/modifiercompiler.count_paragraphs.php b/gosa-core/include/smarty/plugins/modifiercompiler.count_paragraphs.php
index 09973ef355f8299da62eb7644a6ffc3f75b2b74d..0e1b0af83af8a75b402cad4949da3be808e6b1a1 100644 (file)
* Type: modifier<br>\r
* Name: count_paragraphs<br>\r
* Purpose: count the number of paragraphs in a text\r
- * @link http://smarty.php.net/manual/en/language.modifier.count.paragraphs.php\r
+ *\r
+ * @link http://www.smarty.net/manual/en/language.modifier.count.paragraphs.php\r
* count_paragraphs (Smarty online manual)\r
- * @author Uwe Tews \r
+ * @author Uwe Tews\r
* @param array $params parameters\r
* @return string with compiled code\r
*/\r
diff --git a/gosa-core/include/smarty/plugins/modifiercompiler.count_sentences.php b/gosa-core/include/smarty/plugins/modifiercompiler.count_sentences.php
index cde5c4679a6bbfa3b30394928e003afdae4e281f..7f48a3eceb371d027ecf367326379d453cc82ff7 100644 (file)
* Type: modifier<br>\r
* Name: count_sentences\r
* Purpose: count the number of sentences in a text\r
- * @link http://smarty.php.net/manual/en/language.modifier.count.paragraphs.php\r
+ *\r
+ * @link http://www.smarty.net/manual/en/language.modifier.count.paragraphs.php\r
* count_sentences (Smarty online manual)\r
- * @author Uwe Tews \r
+ * @author Uwe Tews\r
* @param array $params parameters\r
* @return string with compiled code\r
*/\r
function smarty_modifiercompiler_count_sentences($params, $compiler)\r
{\r
- // find periods with a word before but not after.\r
- return 'preg_match_all(\'/[^\s]\.(?!\w)/\', ' . $params[0] . ', $tmp)';\r
+ // find periods, question marks, exclamation marks with a word before but not after.\r
+ return 'preg_match_all("#\w[\.\?\!](\W|$)#uS", ' . $params[0] . ', $tmp)';\r
}\r
\r
?>
\ No newline at end of file
diff --git a/gosa-core/include/smarty/plugins/modifiercompiler.count_words.php b/gosa-core/include/smarty/plugins/modifiercompiler.count_words.php
index dbc2f43be34c28bed1ea8642196768ac622df474..cd9ae5bf73055173e2b4f5371eae55a6d0974dde 100644 (file)
<?php\r
/**\r
* Smarty plugin\r
- * \r
+ *\r
* @package Smarty\r
* @subpackage PluginsModifierCompiler\r
*/\r
\r
/**\r
* Smarty count_words modifier plugin\r
- * \r
+ *\r
* Type: modifier<br>\r
* Name: count_words<br>\r
* Purpose: count the number of words in a text\r
- * \r
- * @link http://smarty.php.net/manual/en/language.modifier.count.words.php count_words (Smarty online manual)\r
- * @author Uwe Tews \r
+ *\r
+ * @link http://www.smarty.net/manual/en/language.modifier.count.words.php count_words (Smarty online manual)\r
+ * @author Uwe Tews\r
* @param array $params parameters\r
* @return string with compiled code\r
*/\r
function smarty_modifiercompiler_count_words($params, $compiler)\r
-{ \r
- // mb_ functions available?\r
- if (function_exists('mb_strlen')) {\r
- return '((mb_detect_encoding(' . $params[0] . ', \'UTF-8, ISO-8859-1\') === \'UTF-8\') ? preg_match_all(\'#[\w\pL]+#u\', ' . $params[0] . ', $tmp) : preg_match_all(\'#\w+#\',' . $params[0] . ', $tmp))';\r
- } else {\r
- return 'str_word_count(' . $params[0] . ')';\r
- } \r
-} \r
+{\r
+ if (SMARTY_MBSTRING /* ^phpunit */&&empty($_SERVER['SMARTY_PHPUNIT_DISABLE_MBSTRING'])/* phpunit$ */) {\r
+ // return 'preg_match_all(\'#[\w\pL]+#u\', ' . $params[0] . ', $tmp)';\r
+ // expression taken from http://de.php.net/manual/en/function.str-word-count.php#85592\r
+ return 'preg_match_all(\'/\p{L}[\p{L}\p{Mn}\p{Pd}\\\'\x{2019}]*/u\', ' . $params[0] . ', $tmp)';\r
+ }\r
+ // no MBString fallback\r
+ return 'str_word_count(' . $params[0] . ')';\r
+}\r
\r
?>
\ No newline at end of file
diff --git a/gosa-core/include/smarty/plugins/modifiercompiler.default.php b/gosa-core/include/smarty/plugins/modifiercompiler.default.php
index 7bfda8b0ff3ef0ace04ffc06fd699f3b39c8e37d..4f831a5894665f3ed97fe3279123e756fdc0ec38 100644 (file)
\r
/**\r
* Smarty default modifier plugin\r
- * \r
+ *\r
* Type: modifier<br>\r
* Name: default<br>\r
* Purpose: designate default value for empty variables\r
- * \r
- * @link http://smarty.php.net/manual/en/language.modifier.default.php default (Smarty online manual)\r
- * @author Uwe Tews \r
+ *\r
+ * @link http://www.smarty.net/manual/en/language.modifier.default.php default (Smarty online manual)\r
+ * @author Uwe Tews\r
* @param array $params parameters\r
* @return string with compiled code\r
*/\r
$output = $params[0];\r
if (!isset($params[1])) {\r
$params[1] = "''";\r
- } \r
- for ($i = 1, $cnt = count($params); $i < $cnt; $i++) {\r
- $output = '(($tmp = @' . $output . ')===null||$tmp===\'\' ? ' . $params[$i] . ' : $tmp)';\r
- } \r
+ }\r
+ \r
+ array_shift($params);\r
+ foreach ($params as $param) {\r
+ $output = '(($tmp = @' . $output . ')===null||$tmp===\'\' ? ' . $param . ' : $tmp)';\r
+ }\r
return $output;\r
-} \r
+}\r
\r
?>
\ No newline at end of file
diff --git a/gosa-core/include/smarty/plugins/modifiercompiler.escape.php b/gosa-core/include/smarty/plugins/modifiercompiler.escape.php
--- /dev/null
@@ -0,0 +1,90 @@
+<?php\r
+/**\r
+ * Smarty plugin\r
+ *\r
+ * @package Smarty\r
+ * @subpackage PluginsModifierCompiler\r
+ */\r
+\r
+/**\r
+ * @ignore\r
+ */\r
+require_once( SMARTY_PLUGINS_DIR .'shared.literal_compiler_param.php' );\r
+\r
+/**\r
+ * Smarty escape modifier plugin\r
+ *\r
+ * Type: modifier<br>\r
+ * Name: escape<br>\r
+ * Purpose: escape string for output\r
+ *\r
+ * @link http://www.smarty.net/docsv2/en/language.modifier.escape count_characters (Smarty online manual)\r
+ * @author Rodney Rehm\r
+ * @param array $params parameters\r
+ * @return string with compiled code\r
+ */\r
+function smarty_modifiercompiler_escape($params, $compiler)\r
+{\r
+ try {\r
+ $esc_type = smarty_literal_compiler_param($params, 1, 'html');\r
+ $char_set = smarty_literal_compiler_param($params, 2, SMARTY_RESOURCE_CHAR_SET);\r
+ $double_encode = smarty_literal_compiler_param($params, 3, true);\r
+\r
+ if (!$char_set) {\r
+ $char_set = SMARTY_RESOURCE_CHAR_SET;\r
+ }\r
+\r
+ switch ($esc_type) {\r
+ case 'html':\r
+ return 'htmlspecialchars('\r
+ . $params[0] .', ENT_QUOTES, '\r
+ . var_export($char_set, true) . ', '\r
+ . var_export($double_encode, true) . ')';\r
+\r
+ case 'htmlall':\r
+ if (SMARTY_MBSTRING /* ^phpunit */&&empty($_SERVER['SMARTY_PHPUNIT_DISABLE_MBSTRING'])/* phpunit$ */) {\r
+ return 'mb_convert_encoding(htmlspecialchars('\r
+ . $params[0] .', ENT_QUOTES, '\r
+ . var_export($char_set, true) . ', '\r
+ . var_export($double_encode, true)\r
+ . '), "HTML-ENTITIES", '\r
+ . var_export($char_set, true) . ')';\r
+ }\r
+\r
+ // no MBString fallback\r
+ return 'htmlentities('\r
+ . $params[0] .', ENT_QUOTES, '\r
+ . var_export($char_set, true) . ', '\r
+ . var_export($double_encode, true) . ')';\r
+\r
+ case 'url':\r
+ return 'rawurlencode(' . $params[0] . ')';\r
+\r
+ case 'urlpathinfo':\r
+ return 'str_replace("%2F", "/", rawurlencode(' . $params[0] . '))';\r
+\r
+ case 'quotes':\r
+ // escape unescaped single quotes\r
+ return 'preg_replace("%(?<!\\\\\\\\)\'%", "\\\'",' . $params[0] . ')';\r
+\r
+ case 'javascript':\r
+ // escape quotes and backslashes, newlines, etc.\r
+ return 'strtr(' . $params[0] . ', array("\\\\" => "\\\\\\\\", "\'" => "\\\\\'", "\"" => "\\\\\"", "\\r" => "\\\\r", "\\n" => "\\\n", "</" => "<\/" ))';\r
+\r
+ }\r
+ } catch(SmartyException $e) {\r
+ // pass through to regular plugin fallback\r
+ }\r
+\r
+ // could not optimize |escape call, so fallback to regular plugin\r
+ if ($compiler->tag_nocache | $compiler->nocache) {\r
+ $compiler->template->required_plugins['nocache']['escape']['modifier']['file'] = SMARTY_PLUGINS_DIR .'modifier.escape.php';\r
+ $compiler->template->required_plugins['nocache']['escape']['modifier']['function'] = 'smarty_modifier_escape';\r
+ } else {\r
+ $compiler->template->required_plugins['compiled']['escape']['modifier']['file'] = SMARTY_PLUGINS_DIR .'modifier.escape.php';\r
+ $compiler->template->required_plugins['compiled']['escape']['modifier']['function'] = 'smarty_modifier_escape';\r
+ }\r
+ return 'smarty_modifier_escape(' . join( ', ', $params ) . ')';\r
+}\r
+\r
+?>
\ No newline at end of file
diff --git a/gosa-core/include/smarty/plugins/modifiercompiler.from_charset.php b/gosa-core/include/smarty/plugins/modifiercompiler.from_charset.php
--- /dev/null
@@ -0,0 +1,34 @@
+<?php\r
+/**\r
+ * Smarty plugin\r
+ *\r
+ * @package Smarty\r
+ * @subpackage PluginsModifierCompiler\r
+ */\r
+\r
+/**\r
+ * Smarty from_charset modifier plugin\r
+ *\r
+ * Type: modifier<br>\r
+ * Name: from_charset<br>\r
+ * Purpose: convert character encoding from $charset to internal encoding\r
+ *\r
+ * @author Rodney Rehm\r
+ * @param array $params parameters\r
+ * @return string with compiled code\r
+ */\r
+function smarty_modifiercompiler_from_charset($params, $compiler)\r
+{\r
+ if (!SMARTY_MBSTRING /* ^phpunit */&&empty($_SERVER['SMARTY_PHPUNIT_DISABLE_MBSTRING'])/* phpunit$ */) {\r
+ // FIXME: (rodneyrehm) shouldn't this throw an error?\r
+ return $params[0];\r
+ }\r
+\r
+ if (!isset($params[1])) {\r
+ $params[1] = '"ISO-8859-1"';\r
+ }\r
+\r
+ return 'mb_convert_encoding(' . $params[0] . ', SMARTY_RESOURCE_CHAR_SET, ' . $params[1] . ')';\r
+}\r
+\r
+?>
\ No newline at end of file
diff --git a/gosa-core/include/smarty/plugins/modifiercompiler.indent.php b/gosa-core/include/smarty/plugins/modifiercompiler.indent.php
index e62d56ca6634b5e0fd0056ac06029f024277741d..020c4fdb35c9636477d24d6861d26ed335ae3ac9 100644 (file)
* Type: modifier<br>\r
* Name: indent<br>\r
* Purpose: indent lines of text\r
- * @link http://smarty.php.net/manual/en/language.modifier.indent.php\r
- * indent (Smarty online manual)\r
- * @author Uwe Tews \r
+ *\r
+ * @link http://www.smarty.net/manual/en/language.modifier.indent.php indent (Smarty online manual)\r
+ * @author Uwe Tews\r
* @param array $params parameters\r
* @return string with compiled code\r
*/\r
{\r
if (!isset($params[1])) {\r
$params[1] = 4;\r
- } \r
+ }\r
if (!isset($params[2])) {\r
$params[2] = "' '";\r
- } \r
+ }\r
return 'preg_replace(\'!^!m\',str_repeat(' . $params[2] . ',' . $params[1] . '),' . $params[0] . ')';\r
}\r
\r
diff --git a/gosa-core/include/smarty/plugins/modifiercompiler.lower.php b/gosa-core/include/smarty/plugins/modifiercompiler.lower.php
index 3604994a98384f7f94dfd00fe8d0818efbcb7a08..17441584ea45efb986984ba7fdf7b4d69099c21a 100644 (file)
\r
/**\r
* Smarty lower modifier plugin\r
- * \r
+ *\r
* Type: modifier<br>\r
* Name: lower<br>\r
* Purpose: convert string to lowercase\r
- * \r
- * @link http://smarty.php.net/manual/en/language.modifier.lower.php lower (Smarty online manual)\r
- * @author Monte Ohrt <monte at ohrt dot com> \r
- * @author Uwe Tews \r
+ *\r
+ * @link http://www.smarty.net/manual/en/language.modifier.lower.php lower (Smarty online manual)\r
+ * @author Monte Ohrt <monte at ohrt dot com>\r
+ * @author Uwe Tews\r
* @param array $params parameters\r
* @return string with compiled code\r
*/\r
\r
function smarty_modifiercompiler_lower($params, $compiler)\r
{\r
- if (function_exists('mb_strtolower')) {\r
- return '((mb_detect_encoding(' . $params[0] . ', \'UTF-8, ISO-8859-1\') === \'UTF-8\') ? mb_strtolower(' . $params[0] . ',SMARTY_RESOURCE_CHAR_SET) : strtolower(' . $params[0] . '))' ;\r
- } else {\r
- return 'strtolower(' . $params[0] . ')';\r
- } \r
-} \r
+ if (SMARTY_MBSTRING /* ^phpunit */&&empty($_SERVER['SMARTY_PHPUNIT_DISABLE_MBSTRING'])/* phpunit$ */) {\r
+ return 'mb_strtolower(' . $params[0] . ',SMARTY_RESOURCE_CHAR_SET)' ;\r
+ }\r
+ // no MBString fallback\r
+ return 'strtolower(' . $params[0] . ')';\r
+}\r
\r
?>
\ No newline at end of file
diff --git a/gosa-core/include/smarty/plugins/modifiercompiler.noprint.php b/gosa-core/include/smarty/plugins/modifiercompiler.noprint.php
index cd2a663ec3851110ab182b898a6fea21468beab6..3ca26571af0557c8ae038de4f9bd84ceaae13c6d 100644 (file)
* Type: modifier<br>\r
* Name: noprint<br>\r
* Purpose: return an empty string\r
+ *\r
* @author Uwe Tews\r
* @param array $params parameters\r
* @return string with compiled code\r
diff --git a/gosa-core/include/smarty/plugins/modifiercompiler.string_format.php b/gosa-core/include/smarty/plugins/modifiercompiler.string_format.php
index fd9fd876cda012a516117043f510e47d13329cb5..83345977b766be9cf209bfbacd7345dde1c6c8d1 100644 (file)
<?php\r
/**\r
* Smarty plugin\r
- * \r
+ *\r
* @package Smarty\r
* @subpackage PluginsModifierCompiler\r
*/\r
\r
/**\r
* Smarty string_format modifier plugin\r
- * \r
+ *\r
* Type: modifier<br>\r
* Name: string_format<br>\r
* Purpose: format strings via sprintf\r
- * \r
- * @link http://smarty.php.net/manual/en/language.modifier.string.format.php string_format (Smarty online manual)\r
- * @author Uwe Tews \r
+ *\r
+ * @link http://www.smarty.net/manual/en/language.modifier.string.format.php string_format (Smarty online manual)\r
+ * @author Uwe Tews\r
* @param array $params parameters\r
* @return string with compiled code\r
*/\r
function smarty_modifiercompiler_string_format($params, $compiler)\r
{\r
return 'sprintf(' . $params[1] . ',' . $params[0] . ')';\r
-} \r
+}\r
\r
?>
\ No newline at end of file
diff --git a/gosa-core/include/smarty/plugins/modifiercompiler.strip.php b/gosa-core/include/smarty/plugins/modifiercompiler.strip.php
index 55b98e0ef92c2bcf30e9e7cb872d7c76f10c0166..2a2d9d0e3db1b43d5dd369fead4dd9fd0f68ffa7 100644 (file)
\r
/**\r
* Smarty strip modifier plugin\r
- * \r
+ *\r
* Type: modifier<br>\r
* Name: strip<br>\r
* Purpose: Replace all repeated spaces, newlines, tabs\r
* with a single space or supplied replacement string.<br>\r
- * Example: {$var|strip} {$var|strip:" "}\r
+ * Example: {$var|strip} {$var|strip:" "}<br>\r
* Date: September 25th, 2002\r
- * \r
- * @link http://smarty.php.net/manual/en/language.modifier.strip.php strip (Smarty online manual)\r
- * @author Uwe Tews \r
+ *\r
+ * @link http://www.smarty.net/manual/en/language.modifier.strip.php strip (Smarty online manual)\r
+ * @author Uwe Tews\r
* @param array $params parameters\r
* @return string with compiled code\r
*/\r
$params[1] = "' '";\r
}\r
return "preg_replace('!\s+!u', {$params[1]},{$params[0]})";\r
-} \r
+}\r
\r
?>
\ No newline at end of file
diff --git a/gosa-core/include/smarty/plugins/modifiercompiler.strip_tags.php b/gosa-core/include/smarty/plugins/modifiercompiler.strip_tags.php
index 5e479b2848077de0539d9b413e2c55a7d1f05aa5..296a3a2da6985b119006bc39d5f6319b64bf1270 100644 (file)
\r
/**\r
* Smarty strip_tags modifier plugin\r
- * \r
+ *\r
* Type: modifier<br>\r
* Name: strip_tags<br>\r
* Purpose: strip html tags from text\r
- * \r
- * @link http://smarty.php.net/manual/en/language.modifier.strip.tags.php strip_tags (Smarty online manual)\r
- * @author Uwe Tews \r
+ *\r
+ * @link http://www.smarty.net/manual/en/language.modifier.strip.tags.php strip_tags (Smarty online manual)\r
+ * @author Uwe Tews\r
* @param array $params parameters\r
* @return string with compiled code\r
*/\r
-\r
function smarty_modifiercompiler_strip_tags($params, $compiler)\r
{\r
if (!isset($params[1])) {\r
$params[1] = true;\r
- } \r
+ }\r
if ($params[1] === true) {\r
return "preg_replace('!<[^>]*?>!', ' ', {$params[0]})";\r
} else {\r
return 'strip_tags(' . $params[0] . ')';\r
- } \r
-} \r
+ }\r
+}\r
\r
?>
\ No newline at end of file
diff --git a/gosa-core/include/smarty/plugins/modifiercompiler.to_charset.php b/gosa-core/include/smarty/plugins/modifiercompiler.to_charset.php
--- /dev/null
@@ -0,0 +1,34 @@
+<?php\r
+/**\r
+ * Smarty plugin\r
+ *\r
+ * @package Smarty\r
+ * @subpackage PluginsModifierCompiler\r
+ */\r
+\r
+/**\r
+ * Smarty to_charset modifier plugin\r
+ *\r
+ * Type: modifier<br>\r
+ * Name: to_charset<br>\r
+ * Purpose: convert character encoding from internal encoding to $charset\r
+ *\r
+ * @author Rodney Rehm\r
+ * @param array $params parameters\r
+ * @return string with compiled code\r
+ */\r
+function smarty_modifiercompiler_to_charset($params, $compiler)\r
+{\r
+ if (!SMARTY_MBSTRING /* ^phpunit */&&empty($_SERVER['SMARTY_PHPUNIT_DISABLE_MBSTRING'])/* phpunit$ */) {\r
+ // FIXME: (rodneyrehm) shouldn't this throw an error?\r
+ return $params[0];\r
+ }\r
+\r
+ if (!isset($params[1])) {\r
+ $params[1] = '"ISO-8859-1"';\r
+ }\r
+\r
+ return 'mb_convert_encoding(' . $params[0] . ', ' . $params[1] . ', SMARTY_RESOURCE_CHAR_SET)';\r
+}\r
+\r
+?>
\ No newline at end of file
diff --git a/gosa-core/include/smarty/plugins/modifiercompiler.unescape.php b/gosa-core/include/smarty/plugins/modifiercompiler.unescape.php
--- /dev/null
@@ -0,0 +1,48 @@
+<?php\r
+/**\r
+ * Smarty plugin\r
+ *\r
+ * @package Smarty\r
+ * @subpackage PluginsModifierCompiler\r
+ */\r
+\r
+/**\r
+ * Smarty unescape modifier plugin\r
+ *\r
+ * Type: modifier<br>\r
+ * Name: unescape<br>\r
+ * Purpose: unescape html entities\r
+ *\r
+ * @author Rodney Rehm\r
+ * @param array $params parameters\r
+ * @return string with compiled code\r
+ */\r
+function smarty_modifiercompiler_unescape($params, $compiler)\r
+{\r
+ if (!isset($params[1])) {\r
+ $params[1] = 'html';\r
+ }\r
+ if (!isset($params[2])) {\r
+ $params[2] = "SMARTY_RESOURCE_CHAR_SET";\r
+ } else {\r
+ $params[2] = "'" . $params[2] . "'";\r
+ }\r
+\r
+ switch (trim($params[1], '"\'')) {\r
+ case 'entity':\r
+ return 'mb_convert_encoding(' . $params[0] . ', ' . $params[2] . ', \'HTML-ENTITIES\')';\r
+ case 'htmlall':\r
+ if (SMARTY_MBSTRING /* ^phpunit */&&empty($_SERVER['SMARTY_PHPUNIT_DISABLE_MBSTRING'])/* phpunit$ */) {\r
+ return 'mb_convert_encoding(' . $params[0] . ', ' . $params[2] . ', \'HTML-ENTITIES\')';\r
+ }\r
+ return 'html_entity_decode(' . $params[0] . ', ENT_QUOTES, ' . $params[2] . ')';\r
+\r
+ case 'html':\r
+ return 'htmlspecialchars_decode(' . $params[0] . ', ENT_QUOTES)';\r
+\r
+ default:\r
+ return $params[0];\r
+ }\r
+}\r
+\r
+?>
\ No newline at end of file
diff --git a/gosa-core/include/smarty/plugins/modifiercompiler.upper.php b/gosa-core/include/smarty/plugins/modifiercompiler.upper.php
index 2869b879fb08c735fc80657fefc510a0b0d91f30..739057ce9e9cb595b3ddf25b72ccb3b01d71ab4e 100644 (file)
*/\r
function smarty_modifiercompiler_upper($params, $compiler)\r
{\r
- if (function_exists('mb_strtoupper')) {\r
- return '((mb_detect_encoding(' . $params[0] . ', \'UTF-8, ISO-8859-1\') === \'UTF-8\') ? mb_strtoupper(' . $params[0] . ',SMARTY_RESOURCE_CHAR_SET) : strtoupper(' . $params[0] . '))' ;\r
- } else {\r
- return 'strtoupper(' . $params[0] . ')';\r
- } \r
+ if (SMARTY_MBSTRING /* ^phpunit */&&empty($_SERVER['SMARTY_PHPUNIT_DISABLE_MBSTRING'])/* phpunit$ */) {\r
+ return 'mb_strtoupper(' . $params[0] . ',SMARTY_RESOURCE_CHAR_SET)' ;\r
+ }\r
+ // no MBString fallback\r
+ return 'strtoupper(' . $params[0] . ')';\r
} \r
\r
?>
\ No newline at end of file
diff --git a/gosa-core/include/smarty/plugins/modifiercompiler.wordwrap.php b/gosa-core/include/smarty/plugins/modifiercompiler.wordwrap.php
index 5b91f64c3bdb732d349d07c03b7865a25071d33f..577135add4d789915034b8a8f8ef3b33e9206958 100644 (file)
if (!isset($params[3])) {\r
$params[3] = 'false';\r
} \r
- return 'wordwrap(' . $params[0] . ',' . $params[1] . ',' . $params[2] . ',' . $params[3] . ')';\r
+ $function = 'wordwrap';\r
+ if (SMARTY_MBSTRING /* ^phpunit */&&empty($_SERVER['SMARTY_PHPUNIT_DISABLE_MBSTRING'])/* phpunit$ */) {\r
+ if ($compiler->tag_nocache | $compiler->nocache) {\r
+ $compiler->template->required_plugins['nocache']['wordwrap']['modifier']['file'] = SMARTY_PLUGINS_DIR .'shared.mb_wordwrap.php';\r
+ $compiler->template->required_plugins['nocache']['wordwrap']['modifier']['function'] = 'smarty_mb_wordwrap';\r
+ } else {\r
+ $compiler->template->required_plugins['compiled']['wordwrap']['modifier']['file'] = SMARTY_PLUGINS_DIR .'shared.mb_wordwrap.php';\r
+ $compiler->template->required_plugins['compiled']['wordwrap']['modifier']['function'] = 'smarty_mb_wordwrap';\r
+ }\r
+ $function = 'smarty_mb_wordwrap';\r
+ }\r
+ return $function . '(' . $params[0] . ',' . $params[1] . ',' . $params[2] . ',' . $params[3] . ')';\r
} \r
\r
?>
\ No newline at end of file
diff --git a/gosa-core/include/smarty/plugins/outputfilter.trimwhitespace.php b/gosa-core/include/smarty/plugins/outputfilter.trimwhitespace.php
index 20e9bb60084f991c11bc149644a8b07bd4b5ad69..41828e1d3a3cdac15d49baf9310715d14ed6a37c 100644 (file)
/**
* Smarty trimwhitespace outputfilter plugin
*
- * File: outputfilter.trimwhitespace.php<br>
- * Type: outputfilter<br>
- * Name: trimwhitespace<br>
- * Date: Jan 25, 2003<br>
- * Purpose: trim leading white space and blank lines from
- * template source after it gets interpreted, cleaning
- * up code and saving bandwidth. Does not affect
- * <<PRE>></PRE> and <SCRIPT></SCRIPT> blocks.<br>
- * Install: Drop into the plugin directory, call
- * <code>$smarty->load_filter('output','trimwhitespace');</code>
- * from application.
- * @author Monte Ohrt <monte at ohrt dot com>
- * @author Contributions from Lars Noschinski <lars@usenet.noschinski.de>
- * @version 1.3
- * @param string $source input string
- * @param object &$smarty Smarty object
+ * Trim unnecessary whitespace from HTML markup.
+ *
+ * @author Rodney Rehm
+ * @param string $source input string
+ * @param Smarty_Internal_Template $smarty Smarty object
* @return string filtered output
*/
-function smarty_outputfilter_trimwhitespace($source, $smarty)
+function smarty_outputfilter_trimwhitespace($source, Smarty_Internal_Template $smarty)
{
- // Pull out the script blocks
- preg_match_all("!<script[^>]*?>.*?</script>!is", $source, $match);
- $_script_blocks = $match[0];
- $source = preg_replace("!<script[^>]*?>.*?</script>!is",
- '@@@SMARTY:TRIM:SCRIPT@@@', $source);
+ $store = array();
+ $_store = 0;
+ $_offset = 0;
- // Pull out the pre blocks
- preg_match_all("!<pre[^>]*?>.*?</pre>!is", $source, $match);
- $_pre_blocks = $match[0];
- $source = preg_replace("!<pre[^>]*?>.*?</pre>!is",
- '@@@SMARTY:TRIM:PRE@@@', $source);
-
- // Pull out the textarea blocks
- preg_match_all("!<textarea[^>]*?>.*?</textarea>!is", $source, $match);
- $_textarea_blocks = $match[0];
- $source = preg_replace("!<textarea[^>]*?>.*?</textarea>!is",
- '@@@SMARTY:TRIM:TEXTAREA@@@', $source);
+ // Unify Line-Breaks to \n
+ $source = preg_replace("/\015\012|\015|\012/", "\n", $source);
- // remove all leading spaces, tabs and carriage returns NOT
- // preceeded by a php close tag.
- $source = trim(preg_replace('/((?<!\?>)\n)[\s]+/m', '\1', $source));
+ // capture Internet Explorer Conditional Comments
+ if (preg_match_all('#<!--\[[^\]]+\]>.*?<!\[[^\]]+\]-->#is', $source, $matches, PREG_OFFSET_CAPTURE | PREG_SET_ORDER)) {
+ foreach ($matches as $match) {
+ $store[] = $match[0][0];
+ $_length = strlen($match[0][0]);
+ $replace = '@!@SMARTY:' . $_store . ':SMARTY@!@';
+ $source = substr_replace($source, $replace, $match[0][1] - $_offset, $_length);
- // replace textarea blocks
- smarty_outputfilter_trimwhitespace_replace("@@@SMARTY:TRIM:TEXTAREA@@@",$_textarea_blocks, $source);
+ $_offset += $_length - strlen($replace);
+ $_store++;
+ }
+ }
- // replace pre blocks
- smarty_outputfilter_trimwhitespace_replace("@@@SMARTY:TRIM:PRE@@@",$_pre_blocks, $source);
+ // Strip all HTML-Comments
+ $source = preg_replace( '#<!--.*?-->#ms', '', $source );
- // replace script blocks
- smarty_outputfilter_trimwhitespace_replace("@@@SMARTY:TRIM:SCRIPT@@@",$_script_blocks, $source);
+ // capture html elements not to be messed with
+ $_offset = 0;
+ if (preg_match_all('#<(script|pre|textarea)[^>]*>.*?</\\1>#is', $source, $matches, PREG_OFFSET_CAPTURE | PREG_SET_ORDER)) {
+ foreach ($matches as $match) {
+ $store[] = $match[0][0];
+ $_length = strlen($match[0][0]);
+ $replace = '@!@SMARTY:' . $_store . ':SMARTY@!@';
+ $source = substr_replace($source, $replace, $match[0][1] - $_offset, $_length);
- return $source;
-}
+ $_offset += $_length - strlen($replace);
+ $_store++;
+ }
+ }
+
+ $expressions = array(
+ // replace multiple spaces between tags by a single space
+ // can't remove them entirely, becaue that might break poorly implemented CSS display:inline-block elements
+ '#(:SMARTY@!@|>)\s+(?=@!@SMARTY:|<)#s' => '\1 \2',
+ // remove spaces between attributes (but not in attribute values!)
+ '#(([a-z0-9]\s*=\s*(["\'])[^\3]*?\3)|<[a-z0-9_]+)\s+([a-z/>])#is' => '\1 \4',
+ // note: for some very weird reason trim() seems to remove spaces inside attributes.
+ // maybe a \0 byte or something is interfering?
+ '#^\s+<#Ss' => '<',
+ '#>\s+$#Ss' => '>',
+ );
-function smarty_outputfilter_trimwhitespace_replace($search_str, $replace, &$subject) {
- $_len = strlen($search_str);
- $_pos = 0;
- for ($_i=0, $_count=count($replace); $_i<$_count; $_i++)
- if (($_pos=strpos($subject, $search_str, $_pos))!==false)
- $subject = substr_replace($subject, $replace[$_i], $_pos, $_len);
- else
- break;
+ $source = preg_replace( array_keys($expressions), array_values($expressions), $source );
+ // note: for some very weird reason trim() seems to remove spaces inside attributes.
+ // maybe a \0 byte or something is interfering?
+ // $source = trim( $source );
+ // capture html elements not to be messed with
+ $_offset = 0;
+ if (preg_match_all('#@!@SMARTY:([0-9]+):SMARTY@!@#is', $source, $matches, PREG_OFFSET_CAPTURE | PREG_SET_ORDER)) {
+ foreach ($matches as $match) {
+ $store[] = $match[0][0];
+ $_length = strlen($match[0][0]);
+ $replace = array_shift($store);
+ $source = substr_replace($source, $replace, $match[0][1] + $_offset, $_length);
+
+ $_offset += strlen($replace) - $_length;
+ $_store++;
+ }
+ }
+
+ return $source;
}
?>
\ No newline at end of file
diff --git a/gosa-core/include/smarty/plugins/shared.escape_special_chars.php b/gosa-core/include/smarty/plugins/shared.escape_special_chars.php
index e36b2c897c1cdb4196df5b4fe6f8739073e5f3c9..c087be1fdda29eb70c80280312754f529f5ad31d 100644 (file)
* @subpackage PluginsShared
*/
-/**
- * escape_special_chars common function
- *
- * Function: smarty_function_escape_special_chars<br>
- * Purpose: used by other smarty functions to escape
- * special chars except for already escaped ones
- * @author Monte Ohrt <monte at ohrt dot com>
- * @param string
- * @return string
- */
-function smarty_function_escape_special_chars($string)
-{
- if(!is_array($string)) {
- $string = preg_replace('!&(#?\w+);!', '%%%SMARTY_START%%%\\1%%%SMARTY_END%%%', $string);
- $string = htmlspecialchars($string);
- $string = str_replace(array('%%%SMARTY_START%%%','%%%SMARTY_END%%%'), array('&',';'), $string);
- }
- return $string;
-}
+if (version_compare(PHP_VERSION, '5.2.3', '>=')) {
+ /**
+ * escape_special_chars common function
+ *
+ * Function: smarty_function_escape_special_chars<br>
+ * Purpose: used by other smarty functions to escape
+ * special chars except for already escaped ones
+ *
+ * @author Monte Ohrt <monte at ohrt dot com>
+ * @param string $string text that should by escaped
+ * @return string
+ */
+ function smarty_function_escape_special_chars($string)
+ {
+ if (!is_array($string)) {
+ $string = htmlspecialchars($string, ENT_COMPAT, SMARTY_RESOURCE_CHAR_SET, false);
+ }
+ return $string;
+ }
+} else {
+ /**
+ * escape_special_chars common function
+ *
+ * Function: smarty_function_escape_special_chars<br>
+ * Purpose: used by other smarty functions to escape
+ * special chars except for already escaped ones
+ *
+ * @author Monte Ohrt <monte at ohrt dot com>
+ * @param string $string text that should by escaped
+ * @return string
+ */
+ function smarty_function_escape_special_chars($string)
+ {
+ if (!is_array($string)) {
+ $string = preg_replace('!&(#?\w+);!', '%%%SMARTY_START%%%\\1%%%SMARTY_END%%%', $string);
+ $string = htmlspecialchars($string);
+ $string = str_replace(array('%%%SMARTY_START%%%', '%%%SMARTY_END%%%'), array('&', ';'), $string);
+ }
+ return $string;
+ }
+}
?>
\ No newline at end of file
diff --git a/gosa-core/include/smarty/plugins/shared.literal_compiler_param.php b/gosa-core/include/smarty/plugins/shared.literal_compiler_param.php
--- /dev/null
@@ -0,0 +1,33 @@
+<?php
+/**
+ * Smarty plugin
+ *
+ * @package Smarty
+ * @subpackage PluginsShared
+ */
+
+/**
+ * evaluate compiler parameter
+ *
+ * @param array $params paramter array as given to the compiler function
+ * @param integer $index array index of the paramter to convert
+ * @param mixed $default value to be returned if the paramter is not present
+ * @return mixed evaluated value of paramter or $default
+ * @throws SmartyException if paramter is not a literal (but an expression, variable, …)
+ * @author Rodney Rehm
+ */
+function smarty_literal_compiler_param($params, $index, $default=null)
+{
+ // not set, go default
+ if (!isset($params[$index])) {
+ return $default;
+ }
+ // test if param is a literal
+ if (!preg_match('/^([\'"]?)[a-zA-Z0-9]+(\\1)$/', $params[$index])) {
+ throw new SmartyException('$param[' . $index . '] is not a literal and is thus not evaluatable at compile time');
+ }
+
+ $t = null;
+ eval("\$t = " . $params[$index] . ";");
+ return $t;
+}
diff --git a/gosa-core/include/smarty/plugins/shared.make_timestamp.php b/gosa-core/include/smarty/plugins/shared.make_timestamp.php
index 9789f53f7f8d9505a2fadc04ad87174e262f9914..5d7c97e9150082f2264dd9bff6138cade2e231ea 100644 (file)
/**
* Function: smarty_make_timestamp<br>
- * Purpose: used by other smarty functions to make a timestamp
- * from a string.
+ * Purpose: used by other smarty functions to make a timestamp from a string.
+ *
* @author Monte Ohrt <monte at ohrt dot com>
- * @param string $string
- * @return string
+ * @param DateTime|int|string $string date object, timestamp or string that can be converted using strtotime()
+ * @return int
*/
-
function smarty_make_timestamp($string)
{
- if(empty($string)) {
+ if (empty($string)) {
// use "now":
return time();
} elseif ($string instanceof DateTime) {
return $string->getTimestamp();
- } elseif (strlen($string)==14 && ctype_digit($string)) {
- // it is mysql timestamp format of YYYYMMDDHHMMSS?
+ } elseif (strlen($string) == 14 && ctype_digit($string)) {
+ // it is mysql timestamp format of YYYYMMDDHHMMSS?
return mktime(substr($string, 8, 2),substr($string, 10, 2),substr($string, 12, 2),
substr($string, 4, 2),substr($string, 6, 2),substr($string, 0, 4));
} elseif (is_numeric($string)) {
// it is a numeric string, we handle it as timestamp
- return (int)$string;
+ return (int) $string;
} else {
// strtotime should handle it
$time = strtotime($string);
diff --git a/gosa-core/include/smarty/plugins/shared.mb_str_replace.php b/gosa-core/include/smarty/plugins/shared.mb_str_replace.php
index 8bc156f08134033af7a9b0b5124951ad6635a793..ecafeb74a1ee75f4a77a809d20ea3022f3a23679 100644 (file)
<?php
+/**
+ * Smarty shared plugin
+ *
+ * @package Smarty
+ * @subpackage PluginsShared
+ */
+if (!function_exists('smarty_mb_str_replace')) {
-if(!function_exists('smarty_mb_str_replace')) {
- function smarty_mb_str_replace($search, $replace, $subject, &$count=0) {
- if (!is_array($search) && is_array($replace)) {
- return false;
- }
- if (is_array($subject)) {
- // call mb_replace for each single string in $subject
- foreach ($subject as &$string) {
- $string = &smarty_mb_str_replace($search, $replace, $string, $c);
- $count += $c;
- }
- } elseif (is_array($search)) {
- if (!is_array($replace)) {
- foreach ($search as &$string) {
- $subject = smarty_mb_str_replace($string, $replace, $subject, $c);
- $count += $c;
- }
- } else {
- $n = max(count($search), count($replace));
- while ($n--) {
- $subject = smarty_mb_str_replace(current($search), current($replace), $subject, $c);
- $count += $c;
- next($search);
- next($replace);
- }
- }
- } else {
- $parts = mb_split(preg_quote($search), $subject);
- $count = count($parts)-1;
- $subject = implode($replace, $parts);
- }
- return $subject;
- }
-}
+ /**
+ * Multibyte string replace
+ *
+ * @param string $search the string to be searched
+ * @param string $replace the replacement string
+ * @param string $subject the source string
+ * @param int &$count number of matches found
+ * @return string replaced string
+ * @author Rodney Rehm
+ */
+ function smarty_mb_str_replace($search, $replace, $subject, &$count=0)
+ {
+ if (!is_array($search) && is_array($replace)) {
+ return false;
+ }
+ if (is_array($subject)) {
+ // call mb_replace for each single string in $subject
+ foreach ($subject as &$string) {
+ $string = &smarty_mb_str_replace($search, $replace, $string, $c);
+ $count += $c;
+ }
+ } elseif (is_array($search)) {
+ if (!is_array($replace)) {
+ foreach ($search as &$string) {
+ $subject = smarty_mb_str_replace($string, $replace, $subject, $c);
+ $count += $c;
+ }
+ } else {
+ $n = max(count($search), count($replace));
+ while ($n--) {
+ $subject = smarty_mb_str_replace(current($search), current($replace), $subject, $c);
+ $count += $c;
+ next($search);
+ next($replace);
+ }
+ }
+ } else {
+ $parts = mb_split(preg_quote($search), $subject);
+ $count = count($parts) - 1;
+ $subject = implode($replace, $parts);
+ }
+ return $subject;
+ }
+}
?>
\ No newline at end of file
diff --git a/gosa-core/include/smarty/plugins/shared.mb_unicode.php b/gosa-core/include/smarty/plugins/shared.mb_unicode.php
--- /dev/null
@@ -0,0 +1,48 @@
+<?php
+/**
+ * Smarty shared plugin
+ *
+ * @package Smarty
+ * @subpackage PluginsShared
+ */
+
+/**
+ * convert characters to their decimal unicode equivalents
+ *
+ * @link http://www.ibm.com/developerworks/library/os-php-unicode/index.html#listing3 for inspiration
+ * @param string $string characters to calculate unicode of
+ * @param string $encoding encoding of $string, if null mb_internal_encoding() is used
+ * @return array sequence of unicodes
+ * @author Rodney Rehm
+ */
+function smarty_mb_to_unicode($string, $encoding=null) {
+ if ($encoding) {
+ $expanded = mb_convert_encoding($string, "UTF-32BE", $encoding);
+ } else {
+ $expanded = mb_convert_encoding($string, "UTF-32BE");
+ }
+ return unpack("N*", $expanded);
+}
+
+/**
+ * convert unicodes to the character of given encoding
+ *
+ * @link http://www.ibm.com/developerworks/library/os-php-unicode/index.html#listing3 for inspiration
+ * @param integer|array $unicode single unicode or list of unicodes to convert
+ * @param string $encoding encoding of returned string, if null mb_internal_encoding() is used
+ * @return string unicode as character sequence in given $encoding
+ * @author Rodney Rehm
+ */
+function smarty_mb_from_unicode($unicode, $encoding=null) {
+ $t = '';
+ if (!$encoding) {
+ $encoding = mb_internal_encoding();
+ }
+ foreach((array) $unicode as $utf32be) {
+ $character = pack("N", $utf32be);
+ $t .= mb_convert_encoding($character, $encoding, "UTF-32BE");
+ }
+ return $t;
+}
+
+?>
\ No newline at end of file
diff --git a/gosa-core/include/smarty/plugins/shared.mb_wordwrap.php b/gosa-core/include/smarty/plugins/shared.mb_wordwrap.php
--- /dev/null
@@ -0,0 +1,83 @@
+<?php
+/**
+ * Smarty shared plugin
+ *
+ * @package Smarty
+ * @subpackage PluginsShared
+ */
+
+if(!function_exists('smarty_mb_wordwrap')) {
+
+ /**
+ * Wrap a string to a given number of characters
+ *
+ * @link http://php.net/manual/en/function.wordwrap.php for similarity
+ * @param string $str the string to wrap
+ * @param int $width the width of the output
+ * @param string $break the character used to break the line
+ * @param boolean $cut ignored parameter, just for the sake of
+ * @return string wrapped string
+ * @author Rodney Rehm
+ */
+ function smarty_mb_wordwrap($str, $width=75, $break="\n", $cut=false)
+ {
+ // break words into tokens using white space as a delimiter
+ $tokens = preg_split('!(\s)!uS', $str, -1, PREG_SPLIT_NO_EMPTY + PREG_SPLIT_DELIM_CAPTURE);
+ $length = 0;
+ $t = '';
+ $_previous = false;
+
+ foreach ($tokens as $_token) {
+ $token_length = mb_strlen($_token, SMARTY_RESOURCE_CHAR_SET);
+ $_tokens = array($_token);
+ if ($token_length > $width) {
+ // remove last space
+ $t = mb_substr($t, 0, -1, SMARTY_RESOURCE_CHAR_SET);
+ $_previous = false;
+ $length = 0;
+
+ if ($cut) {
+ $_tokens = preg_split('!(.{' . $width . '})!uS', $_token, -1, PREG_SPLIT_NO_EMPTY + PREG_SPLIT_DELIM_CAPTURE);
+ // broken words go on a new line
+ $t .= $break;
+ }
+ }
+
+ foreach ($_tokens as $token) {
+ $_space = !!preg_match('!^\s$!uS', $token);
+ $token_length = mb_strlen($token, SMARTY_RESOURCE_CHAR_SET);
+ $length += $token_length;
+
+ if ($length > $width) {
+ // remove space before inserted break
+ if ($_previous && $token_length < $width) {
+ $t = mb_substr($t, 0, -1, SMARTY_RESOURCE_CHAR_SET);
+ }
+
+ // add the break before the token
+ $t .= $break;
+ $length = $token_length;
+
+ // skip space after inserting a break
+ if ($_space) {
+ $length = 0;
+ continue;
+ }
+ } else if ($token == "\n") {
+ // hard break must reset counters
+ $_previous = 0;
+ $length = 0;
+ } else {
+ // remember if we had a space or not
+ $_previous = $_space;
+ }
+ // add the token
+ $t .= $token;
+ }
+ }
+
+ return $t;
+ }
+
+}
+?>
\ No newline at end of file
diff --git a/gosa-core/include/smarty/plugins/variablefilter.htmlspecialchars.php b/gosa-core/include/smarty/plugins/variablefilter.htmlspecialchars.php
index 4d3550c04761626496328db47ac3c435af31641a..aeaeb6005e8eddfd0f8e98df943af05c11583170 100644 (file)
<?php
/**
* Smarty plugin
- *
+ *
* @package Smarty
* @subpackage PluginsFilter
*/
/**
* Smarty htmlspecialchars variablefilter plugin
- *
- * @param string $source input string
- * @param object $ &$smarty Smarty object
+ *
+ * @param string $source input string
+ * @param Smarty_Internal_Template $smarty Smarty object
* @return string filtered output
*/
-
function smarty_variablefilter_htmlspecialchars($source, $smarty)
{
- return htmlspecialchars($source, ENT_QUOTES);
-}
+ return htmlspecialchars($source, ENT_QUOTES, SMARTY_RESOURCE_CHAR_SET);
+}
?>
\ No newline at end of file
diff --git a/gosa-core/include/smarty/sysplugins/smarty_cacheresource.php b/gosa-core/include/smarty/sysplugins/smarty_cacheresource.php
--- /dev/null
@@ -0,0 +1,380 @@
+<?php
+/**
+* Smarty Internal Plugin
+*
+* @package Smarty
+* @subpackage Cacher
+*/
+
+/**
+* Cache Handler API
+*
+* @package Smarty
+* @subpackage Cacher
+* @author Rodney Rehm
+*/
+abstract class Smarty_CacheResource {
+ /**
+ * cache for Smarty_CacheResource instances
+ * @var array
+ */
+ public static $resources = array();
+
+ /**
+ * resource types provided by the core
+ * @var array
+ */
+ protected static $sysplugins = array(
+ 'file' => true,
+ );
+
+ /**
+ * populate Cached Object with meta data from Resource
+ *
+ * @param Smarty_Template_Cached $cached cached object
+ * @param Smarty_Internal_Template $_template template object
+ * @return void
+ */
+ public abstract function populate(Smarty_Template_Cached $cached, Smarty_Internal_Template $_template);
+
+ /**
+ * populate Cached Object with timestamp and exists from Resource
+ *
+ * @param Smarty_Template_Cached $source cached object
+ * @return void
+ */
+ public abstract function populateTimestamp(Smarty_Template_Cached $cached);
+
+ /**
+ * Read the cached template and process header
+ *
+ * @param Smarty_Internal_Template $_template template object
+ * @param Smarty_Template_Cached $cached cached object
+ * @return booelan true or false if the cached content does not exist
+ */
+ public abstract function process(Smarty_Internal_Template $_template, Smarty_Template_Cached $cached=null);
+
+ /**
+ * Write the rendered template output to cache
+ *
+ * @param Smarty_Internal_Template $_template template object
+ * @param string $content content to cache
+ * @return boolean success
+ */
+ public abstract function writeCachedContent(Smarty_Internal_Template $_template, $content);
+
+ /**
+ * Return cached content
+ *
+ * @param Smarty_Internal_Template $_template template object
+ * @param string $content content of cache
+ */
+ public function getCachedContent(Smarty_Internal_Template $_template)
+ {
+ if ($_template->cached->handler->process($_template)) {
+ ob_start();
+ $_template->properties['unifunc']($_template);
+ return ob_get_clean();
+ }
+ return null;
+ }
+
+ /**
+ * Empty cache
+ *
+ * @param Smarty $smarty Smarty object
+ * @param integer $exp_time expiration time (number of seconds, not timestamp)
+ * @return integer number of cache files deleted
+ */
+ public abstract function clearAll(Smarty $smarty, $exp_time=null);
+
+ /**
+ * Empty cache for a specific template
+ *
+ * @param Smarty $smarty Smarty object
+ * @param string $resource_name template name
+ * @param string $cache_id cache id
+ * @param string $compile_id compile id
+ * @param integer $exp_time expiration time (number of seconds, not timestamp)
+ * @return integer number of cache files deleted
+ */
+ public abstract function clear(Smarty $smarty, $resource_name, $cache_id, $compile_id, $exp_time);
+
+
+ public function locked(Smarty $smarty, Smarty_Template_Cached $cached)
+ {
+ // theoretically locking_timeout should be checked against time_limit (max_execution_time)
+ $start = microtime(true);
+ $hadLock = null;
+ while ($this->hasLock($smarty, $cached)) {
+ $hadLock = true;
+ if (microtime(true) - $start > $smarty->locking_timeout) {
+ // abort waiting for lock release
+ return false;
+ }
+ sleep(1);
+ }
+ return $hadLock;
+ }
+
+ public function hasLock(Smarty $smarty, Smarty_Template_Cached $cached)
+ {
+ // check if lock exists
+ return false;
+ }
+
+ public function acquireLock(Smarty $smarty, Smarty_Template_Cached $cached)
+ {
+ // create lock
+ return true;
+ }
+
+ public function releaseLock(Smarty $smarty, Smarty_Template_Cached $cached)
+ {
+ // release lock
+ return true;
+ }
+
+
+ /**
+ * Load Cache Resource Handler
+ *
+ * @param Smarty $smarty Smarty object
+ * @param string $type name of the cache resource
+ * @return Smarty_CacheResource Cache Resource Handler
+ */
+ public static function load(Smarty $smarty, $type = null)
+ {
+ if (!isset($type)) {
+ $type = $smarty->caching_type;
+ }
+
+ // try smarty's cache
+ if (isset($smarty->_cacheresource_handlers[$type])) {
+ return $smarty->_cacheresource_handlers[$type];
+ }
+
+ // try registered resource
+ if (isset($smarty->registered_cache_resources[$type])) {
+ // do not cache these instances as they may vary from instance to instance
+ return $smarty->_cacheresource_handlers[$type] = $smarty->registered_cache_resources[$type];
+ }
+ // try sysplugins dir
+ if (isset(self::$sysplugins[$type])) {
+ if (!isset(self::$resources[$type])) {
+ $cache_resource_class = 'Smarty_Internal_CacheResource_' . ucfirst($type);
+ self::$resources[$type] = new $cache_resource_class();
+ }
+ return $smarty->_cacheresource_handlers[$type] = self::$resources[$type];
+ }
+ // try plugins dir
+ $cache_resource_class = 'Smarty_CacheResource_' . ucfirst($type);
+ if ($smarty->loadPlugin($cache_resource_class)) {
+ if (!isset(self::$resources[$type])) {
+ self::$resources[$type] = new $cache_resource_class();
+ }
+ return $smarty->_cacheresource_handlers[$type] = self::$resources[$type];
+ }
+ // give up
+ throw new SmartyException("Unable to load cache resource '{$type}'");
+ }
+
+ /**
+ * Invalid Loaded Cache Files
+ *
+ * @param Smarty $smarty Smarty object
+ */
+ public static function invalidLoadedCache(Smarty $smarty)
+ {
+ foreach ($smarty->template_objects as $tpl) {
+ if (isset($tpl->cached)) {
+ $tpl->cached->valid = false;
+ $tpl->cached->processed = false;
+ }
+ }
+ }
+}
+
+/**
+* Smarty Resource Data Object
+*
+* Cache Data Container for Template Files
+*
+* @package Smarty
+* @subpackage TemplateResources
+* @author Rodney Rehm
+*/
+class Smarty_Template_Cached {
+ /**
+ * Source Filepath
+ * @var string
+ */
+ public $filepath = false;
+
+ /**
+ * Source Content
+ * @var string
+ */
+ public $content = null;
+
+ /**
+ * Source Timestamp
+ * @var integer
+ */
+ public $timestamp = false;
+
+ /**
+ * Source Existance
+ * @var boolean
+ */
+ public $exists = false;
+
+ /**
+ * Cache Is Valid
+ * @var boolean
+ */
+ public $valid = false;
+
+ /**
+ * Cache was processed
+ * @var boolean
+ */
+ public $processed = false;
+
+ /**
+ * CacheResource Handler
+ * @var Smarty_CacheResource
+ */
+ public $handler = null;
+
+ /**
+ * Template Compile Id (Smarty_Internal_Template::$compile_id)
+ * @var string
+ */
+ public $compile_id = null;
+
+ /**
+ * Template Cache Id (Smarty_Internal_Template::$cache_id)
+ * @var string
+ */
+ public $cache_id = null;
+
+ /**
+ * Id for cache locking
+ * @var string
+ */
+ public $lock_id = null;
+
+ /**
+ * flag that cache is locked by this instance
+ * @var bool
+ */
+ public $is_locked = false;
+
+ /**
+ * Source Object
+ * @var Smarty_Template_Source
+ */
+ public $source = null;
+
+ /**
+ * create Cached Object container
+ *
+ * @param Smarty_Internal_Template $_template template object
+ */
+ public function __construct(Smarty_Internal_Template $_template)
+ {
+ $this->compile_id = $_template->compile_id;
+ $this->cache_id = $_template->cache_id;
+ $this->source = $_template->source;
+ $_template->cached = $this;
+ $smarty = $_template->smarty;
+
+ //
+ // load resource handler
+ //
+ $this->handler = $handler = Smarty_CacheResource::load($smarty); // Note: prone to circular references
+
+ //
+ // check if cache is valid
+ //
+ if (!($_template->caching == Smarty::CACHING_LIFETIME_CURRENT || $_template->caching == Smarty::CACHING_LIFETIME_SAVED) || $_template->source->recompiled) {
+ return;
+ }
+ while (true) {
+ while (true) {
+ $handler->populate($this, $_template);
+ if ($this->timestamp === false || $smarty->force_compile || $smarty->force_cache) {
+ $this->valid = false;
+ } else {
+ $this->valid = true;
+ }
+ if ($this->valid && $_template->caching == Smarty::CACHING_LIFETIME_CURRENT && $_template->cache_lifetime >= 0 && time() > ($this->timestamp + $_template->cache_lifetime)) {
+ // lifetime expired
+ $this->valid = false;
+ }
+ if ($this->valid || !$_template->smarty->cache_locking) {
+ break;
+ }
+ if (!$this->handler->locked($_template->smarty, $this)) {
+ $this->handler->acquireLock($_template->smarty, $this);
+ break 2;
+ }
+ }
+ if ($this->valid) {
+ if (!$_template->smarty->cache_locking || $this->handler->locked($_template->smarty, $this) === null) {
+ // load cache file for the following checks
+ if ($smarty->debugging) {
+ Smarty_Internal_Debug::start_cache($_template);
+ }
+ if($handler->process($_template, $this) === false) {
+ $this->valid = false;
+ } else {
+ $this->processed = true;
+ }
+ if ($smarty->debugging) {
+ Smarty_Internal_Debug::end_cache($_template);
+ }
+ } else {
+ continue;
+ }
+ } else {
+ return;
+ }
+ if ($this->valid && $_template->caching === Smarty::CACHING_LIFETIME_SAVED && $_template->properties['cache_lifetime'] >= 0 && (time() > ($_template->cached->timestamp + $_template->properties['cache_lifetime']))) {
+ $this->valid = false;
+ }
+ if (!$this->valid && $_template->smarty->cache_locking) {
+ $this->handler->acquireLock($_template->smarty, $this);
+ return;
+ } else {
+ return;
+ }
+ }
+ }
+
+ /**
+ * Write this cache object to handler
+ *
+ * @param Smarty_Internal_Template $_template template object
+ * @param string $content content to cache
+ * @return boolean success
+ */
+ public function write(Smarty_Internal_Template $_template, $content)
+ {
+ if (!$_template->source->recompiled) {
+ if ($this->handler->writeCachedContent($_template, $content)) {
+ $this->timestamp = time();
+ $this->exists = true;
+ $this->valid = true;
+ if ($_template->smarty->cache_locking) {
+ $this->handler->releaseLock($_template->smarty, $this);
+ }
+ return true;
+ }
+ }
+ return false;
+ }
+
+}
+?>
\ No newline at end of file
diff --git a/gosa-core/include/smarty/sysplugins/smarty_cacheresource_custom.php b/gosa-core/include/smarty/sysplugins/smarty_cacheresource_custom.php
--- /dev/null
@@ -0,0 +1,238 @@
+<?php
+/**
+ * Smarty Internal Plugin
+ *
+ * @package Smarty
+ * @subpackage Cacher
+ */
+
+/**
+ * Cache Handler API
+ *
+ * @package Smarty
+ * @subpackage Cacher
+ * @author Rodney Rehm
+ */
+abstract class Smarty_CacheResource_Custom extends Smarty_CacheResource {
+
+ /**
+ * fetch cached content and its modification time from data source
+ *
+ * @param string $id unique cache content identifier
+ * @param string $name template name
+ * @param string $cache_id cache id
+ * @param string $compile_id compile id
+ * @param string $content cached content
+ * @param integer $mtime cache modification timestamp (epoch)
+ * @return void
+ */
+ protected abstract function fetch($id, $name, $cache_id, $compile_id, &$content, &$mtime);
+
+ /**
+ * Fetch cached content's modification timestamp from data source
+ *
+ * {@internal implementing this method is optional.
+ * Only implement it if modification times can be accessed faster than loading the complete cached content.}}
+ *
+ * @param string $id unique cache content identifier
+ * @param string $name template name
+ * @param string $cache_id cache id
+ * @param string $compile_id compile id
+ * @return integer|boolean timestamp (epoch) the template was modified, or false if not found
+ */
+ protected function fetchTimestamp($id, $name, $cache_id, $compile_id)
+ {
+ return null;
+ }
+
+ /**
+ * Save content to cache
+ *
+ * @param string $id unique cache content identifier
+ * @param string $name template name
+ * @param string $cache_id cache id
+ * @param string $compile_id compile id
+ * @param integer|null $exp_time seconds till expiration or null
+ * @param string $content content to cache
+ * @return boolean success
+ */
+ protected abstract function save($id, $name, $cache_id, $compile_id, $exp_time, $content);
+
+ /**
+ * Delete content from cache
+ *
+ * @param string $name template name
+ * @param string $cache_id cache id
+ * @param string $compile_id compile id
+ * @param integer|null $exp_time seconds till expiration time in seconds or null
+ * @return integer number of deleted caches
+ */
+ protected abstract function delete($name, $cache_id, $compile_id, $exp_time);
+
+ /**
+ * populate Cached Object with meta data from Resource
+ *
+ * @param Smarty_Template_Cached $cached cached object
+ * @param Smarty_Internal_Template $_template template object
+ * @return void
+ */
+ public function populate(Smarty_Template_Cached $cached, Smarty_Internal_Template $_template)
+ {
+ $_cache_id = isset($cached->cache_id) ? preg_replace('![^\w\|]+!', '_', $cached->cache_id) : null;
+ $_compile_id = isset($cached->compile_id) ? preg_replace('![^\w\|]+!', '_', $cached->compile_id) : null;
+
+ $cached->filepath = sha1($cached->source->filepath . $_cache_id . $_compile_id);
+ $this->populateTimestamp($cached);
+ }
+
+ /**
+ * populate Cached Object with timestamp and exists from Resource
+ *
+ * @param Smarty_Template_Cached $source cached object
+ * @return void
+ */
+ public function populateTimestamp(Smarty_Template_Cached $cached)
+ {
+ $mtime = $this->fetchTimestamp($cached->filepath, $cached->source->name, $cached->cache_id, $cached->compile_id);
+ if ($mtime !== null) {
+ $cached->timestamp = $mtime;
+ $cached->exists = !!$cached->timestamp;
+ return;
+ }
+ $timestamp = null;
+ $this->fetch($cached->filepath, $cached->source->name, $cached->cache_id, $cached->compile_id, $cached->content, $timestamp);
+ $cached->timestamp = isset($timestamp) ? $timestamp : false;
+ $cached->exists = !!$cached->timestamp;
+ }
+
+ /**
+ * Read the cached template and process the header
+ *
+ * @param Smarty_Internal_Template $_template template object
+ * @param Smarty_Template_Cached $cached cached object
+ * @return booelan true or false if the cached content does not exist
+ */
+ public function process(Smarty_Internal_Template $_template, Smarty_Template_Cached $cached=null)
+ {
+ if (!$cached) {
+ $cached = $_template->cached;
+ }
+ $content = $cached->content ? $cached->content : null;
+ $timestamp = $cached->timestamp ? $cached->timestamp : null;
+ if ($content === null || !$timestamp) {
+ $this->fetch(
+ $_template->cached->filepath,
+ $_template->source->name,
+ $_template->cache_id,
+ $_template->compile_id,
+ $content,
+ $timestamp
+ );
+ }
+ if (isset($content)) {
+ $_smarty_tpl = $_template;
+ eval("?>" . $content);
+ return true;
+ }
+ return false;
+ }
+
+ /**
+ * Write the rendered template output to cache
+ *
+ * @param Smarty_Internal_Template $_template template object
+ * @param string $content content to cache
+ * @return boolean success
+ */
+ public function writeCachedContent(Smarty_Internal_Template $_template, $content)
+ {
+ return $this->save(
+ $_template->cached->filepath,
+ $_template->source->name,
+ $_template->cache_id,
+ $_template->compile_id,
+ $_template->properties['cache_lifetime'],
+ $content
+ );
+ }
+
+ /**
+ * Empty cache
+ *
+ * @param Smarty $smarty Smarty object
+ * @param integer $exp_time expiration time (number of seconds, not timestamp)
+ * @return integer number of cache files deleted
+ */
+ public function clearAll(Smarty $smarty, $exp_time=null)
+ {
+ $this->cache = array();
+ return $this->delete(null, null, null, $exp_time);
+ }
+
+ /**
+ * Empty cache for a specific template
+ *
+ * @param Smarty $smarty Smarty object
+ * @param string $resource_name template name
+ * @param string $cache_id cache id
+ * @param string $compile_id compile id
+ * @param integer $exp_time expiration time (number of seconds, not timestamp)
+ * @return integer number of cache files deleted
+ */
+ public function clear(Smarty $smarty, $resource_name, $cache_id, $compile_id, $exp_time)
+ {
+ $this->cache = array();
+ return $this->delete($resource_name, $cache_id, $compile_id, $exp_time);
+ }
+
+ /**
+ * Check is cache is locked for this template
+ *
+ * @param Smarty $smarty Smarty object
+ * @param Smarty_Template_Cached $cached cached object
+ * @return booelan true or false if cache is locked
+ */
+ public function hasLock(Smarty $smarty, Smarty_Template_Cached $cached)
+ {
+ $id = $cached->filepath;
+ $name = $cached->source->name . '.lock';
+
+ $mtime = $this->fetchTimestamp($id, $name, null, null);
+ if ($mtime === null) {
+ $this->fetch($id, $name, null, null, $content, $mtime);
+ }
+
+ return $mtime && time() - $mtime < $smarty->locking_timeout;
+ }
+
+ /**
+ * Lock cache for this template
+ *
+ * @param Smarty $smarty Smarty object
+ * @param Smarty_Template_Cached $cached cached object
+ */
+ public function acquireLock(Smarty $smarty, Smarty_Template_Cached $cached)
+ {
+ $cached->is_locked = true;
+
+ $id = $cached->filepath;
+ $name = $cached->source->name . '.lock';
+ $this->save($id, $name, null, null, $smarty->locking_timeout, '');
+ }
+
+ /**
+ * Unlock cache for this template
+ *
+ * @param Smarty $smarty Smarty object
+ * @param Smarty_Template_Cached $cached cached object
+ */
+ public function releaseLock(Smarty $smarty, Smarty_Template_Cached $cached)
+ {
+ $cached->is_locked = false;
+
+ $id = $cached->filepath;
+ $name = $cached->source->name . '.lock';
+ $this->delete($name, null, null, null);
+ }
+}
+?>
\ No newline at end of file
diff --git a/gosa-core/include/smarty/sysplugins/smarty_cacheresource_keyvaluestore.php b/gosa-core/include/smarty/sysplugins/smarty_cacheresource_keyvaluestore.php
--- /dev/null
@@ -0,0 +1,456 @@
+<?php
+/**
+ * Smarty Internal Plugin
+ *
+ * @package Smarty
+ * @subpackage Cacher
+ */
+
+/**
+ * Smarty Cache Handler Base for Key/Value Storage Implementations
+ *
+ * This class implements the functionality required to use simple key/value stores
+ * for hierarchical cache groups. key/value stores like memcache or APC do not support
+ * wildcards in keys, therefore a cache group cannot be cleared like "a|*" - which
+ * is no problem to filesystem and RDBMS implementations.
+ *
+ * This implementation is based on the concept of invalidation. While one specific cache
+ * can be identified and cleared, any range of caches cannot be identified. For this reason
+ * each level of the cache group hierarchy can have its own value in the store. These values
+ * are nothing but microtimes, telling us when a particular cache group was cleared for the
+ * last time. These keys are evaluated for every cache read to determine if the cache has
+ * been invalidated since it was created and should hence be treated as inexistent.
+ *
+ * Although deep hierarchies are possible, they are not recommended. Try to keep your
+ * cache groups as shallow as possible. Anything up 3-5 parents should be ok. So
+ * »a|b|c« is a good depth where »a|b|c|d|e|f|g|h|i|j|k« isn't. Try to join correlating
+ * cache groups: if your cache groups look somewhat like »a|b|$page|$items|$whatever«
+ * consider using »a|b|c|$page-$items-$whatever« instead.
+ *
+ * @package Smarty
+ * @subpackage Cacher
+ * @author Rodney Rehm
+ */
+abstract class Smarty_CacheResource_KeyValueStore extends Smarty_CacheResource {
+
+ /**
+ * cache for contents
+ * @var array
+ */
+ protected $contents = array();
+ /**
+ * cache for timestamps
+ * @var array
+ */
+ protected $timestamps = array();
+
+ /**
+ * populate Cached Object with meta data from Resource
+ *
+ * @param Smarty_Template_Cached $cached cached object
+ * @param Smarty_Internal_Template $_template template object
+ * @return void
+ */
+ public function populate(Smarty_Template_Cached $cached, Smarty_Internal_Template $_template)
+ {
+ $cached->filepath = $_template->source->uid
+ . '#' . $this->sanitize($cached->source->name)
+ . '#' . $this->sanitize($cached->cache_id)
+ . '#' . $this->sanitize($cached->compile_id);
+
+ $this->populateTimestamp($cached);
+ }
+
+ /**
+ * populate Cached Object with timestamp and exists from Resource
+ *
+ * @param Smarty_Template_Cached $cached cached object
+ * @return void
+ */
+ public function populateTimestamp(Smarty_Template_Cached $cached)
+ {
+ if (!$this->fetch($cached->filepath, $cached->source->name, $cached->cache_id, $cached->compile_id, $content, $timestamp, $cached->source->uid)) {
+ return;
+ }
+ $cached->content = $content;
+ $cached->timestamp = (int) $timestamp;
+ $cached->exists = $cached->timestamp;
+ }
+
+ /**
+ * Read the cached template and process the header
+ *
+ * @param Smarty_Internal_Template $_template template object
+ * @param Smarty_Template_Cached $cached cached object
+ * @return booelan true or false if the cached content does not exist
+ */
+ public function process(Smarty_Internal_Template $_template, Smarty_Template_Cached $cached=null)
+ {
+ if (!$cached) {
+ $cached = $_template->cached;
+ }
+ $content = $cached->content ? $cached->content : null;
+ $timestamp = $cached->timestamp ? $cached->timestamp : null;
+ if ($content === null || !$timestamp) {
+ if (!$this->fetch($_template->cached->filepath, $_template->source->name, $_template->cache_id, $_template->compile_id, $content, $timestamp, $_template->source->uid)) {
+ return false;
+ }
+ }
+ if (isset($content)) {
+ $_smarty_tpl = $_template;
+ eval("?>" . $content);
+ return true;
+ }
+ return false;
+ }
+
+ /**
+ * Write the rendered template output to cache
+ *
+ * @param Smarty_Internal_Template $_template template object
+ * @param string $content content to cache
+ * @return boolean success
+ */
+ public function writeCachedContent(Smarty_Internal_Template $_template, $content)
+ {
+ $this->addMetaTimestamp($content);
+ return $this->write(array($_template->cached->filepath => $content), $_template->properties['cache_lifetime']);
+ }
+
+ /**
+ * Empty cache
+ *
+ * {@internal the $exp_time argument is ignored altogether }}
+ *
+ * @param Smarty $smarty Smarty object
+ * @param integer $exp_time expiration time [being ignored]
+ * @return integer number of cache files deleted [always -1]
+ * @uses purge() to clear the whole store
+ * @uses invalidate() to mark everything outdated if purge() is inapplicable
+ */
+ public function clearAll(Smarty $smarty, $exp_time=null)
+ {
+ if (!$this->purge()) {
+ $this->invalidate(null);
+ }
+ return -1;
+ }
+
+ /**
+ * Empty cache for a specific template
+ *
+ * {@internal the $exp_time argument is ignored altogether}}
+ *
+ * @param Smarty $smarty Smarty object
+ * @param string $resource_name template name
+ * @param string $cache_id cache id
+ * @param string $compile_id compile id
+ * @param integer $exp_time expiration time [being ignored]
+ * @return integer number of cache files deleted [always -1]
+ * @uses buildCachedFilepath() to generate the CacheID
+ * @uses invalidate() to mark CacheIDs parent chain as outdated
+ * @uses delete() to remove CacheID from cache
+ */
+ public function clear(Smarty $smarty, $resource_name, $cache_id, $compile_id, $exp_time)
+ {
+ $uid = $this->getTemplateUid($smarty, $resource_name, $cache_id, $compile_id);
+ $cid = $uid . '#' . $this->sanitize($resource_name) . '#' . $this->sanitize($cache_id) . '#' . $this->sanitize($compile_id);
+ $this->delete(array($cid));
+ $this->invalidate($cid, $resource_name, $cache_id, $compile_id, $uid);
+ return -1;
+ }
+ /**
+ * Get template's unique ID
+ *
+ * @param Smarty $smarty Smarty object
+ * @param string $resource_name template name
+ * @param string $cache_id cache id
+ * @param string $compile_id compile id
+ * @return string filepath of cache file
+ */
+ protected function getTemplateUid(Smarty $smarty, $resource_name, $cache_id, $compile_id)
+ {
+ $uid = '';
+ if (isset($resource_name)) {
+ $tpl = new $smarty->template_class($resource_name, $smarty);
+ if ($tpl->source->exists) {
+ $uid = $tpl->source->uid;
+ }
+
+ // remove from template cache
+ $_templateId = sha1($tpl->source->unique_resource . $tpl->cache_id . $tpl->compile_id);
+ unset($smarty->template_objects[$_templateId]);
+ }
+ return $uid;
+ }
+
+ /**
+ * Sanitize CacheID components
+ *
+ * @param string $string CacheID component to sanitize
+ * @return string sanitized CacheID component
+ */
+ protected function sanitize($string)
+ {
+ // some poeple smoke bad weed
+ $string = trim($string, '|');
+ if (!$string) {
+ return null;
+ }
+ return preg_replace('#[^\w\|]+#S', '_', $string);
+ }
+
+ /**
+ * Fetch and prepare a cache object.
+ *
+ * @param string $cid CacheID to fetch
+ * @param string $resource_name template name
+ * @param string $cache_id cache id
+ * @param string $compile_id compile id
+ * @param string $content cached content
+ * @param integer &$timestamp cached timestamp (epoch)
+ * @param string $resource_uid resource's uid
+ * @return boolean success
+ */
+ protected function fetch($cid, $resource_name = null, $cache_id = null, $compile_id = null, &$content = null, &$timestamp = null, $resource_uid = null)
+ {
+ $t = $this->read(array($cid));
+ $content = !empty($t[$cid]) ? $t[$cid] : null;
+ $timestamp = null;
+
+ if ($content && ($timestamp = $this->getMetaTimestamp($content))) {
+ $invalidated = $this->getLatestInvalidationTimestamp($cid, $resource_name, $cache_id, $compile_id, $resource_uid);
+ if ($invalidated > $timestamp) {
+ $timestamp = null;
+ $content = null;
+ }
+ }
+
+ return !!$content;
+ }
+
+ /**
+ * Add current microtime to the beginning of $cache_content
+ *
+ * {@internal the header uses 8 Bytes, the first 4 Bytes are the seconds, the second 4 Bytes are the microseconds}}
+ *
+ * @param string &$content the content to be cached
+ */
+ protected function addMetaTimestamp(&$content)
+ {
+ $mt = explode(" ", microtime());
+ $ts = pack("NN", $mt[1], (int) ($mt[0] * 100000000));
+ $content = $ts . $content;
+ }
+
+ /**
+ * Extract the timestamp the $content was cached
+ *
+ * @param string &$content the cached content
+ * @return float the microtime the content was cached
+ */
+ protected function getMetaTimestamp(&$content)
+ {
+ $s = unpack("N", substr($content, 0, 4));
+ $m = unpack("N", substr($content, 4, 4));
+ $content = substr($content, 8);
+ return $s[1] + ($m[1] / 100000000);
+ }
+
+ /**
+ * Invalidate CacheID
+ *
+ * @param string $cid CacheID
+ * @param string $resource_name template name
+ * @param string $cache_id cache id
+ * @param string $compile_id compile id
+ * @param string $resource_uid source's uid
+ * @return void
+ */
+ protected function invalidate($cid = null, $resource_name = null, $cache_id = null, $compile_id = null, $resource_uid = null)
+ {
+ $now = microtime(true);
+ $key = null;
+ // invalidate everything
+ if (!$resource_name && !$cache_id && !$compile_id) {
+ $key = 'IVK#ALL';
+ }
+ // invalidate all caches by template
+ else if ($resource_name && !$cache_id && !$compile_id) {
+ $key = 'IVK#TEMPLATE#' . $resource_uid . '#' . $this->sanitize($resource_name);
+ }
+ // invalidate all caches by cache group
+ else if (!$resource_name && $cache_id && !$compile_id) {
+ $key = 'IVK#CACHE#' . $this->sanitize($cache_id);
+ }
+ // invalidate all caches by compile id
+ else if (!$resource_name && !$cache_id && $compile_id) {
+ $key = 'IVK#COMPILE#' . $this->sanitize($compile_id);
+ }
+ // invalidate by combination
+ else {
+ $key = 'IVK#CID#' . $cid;
+ }
+ $this->write(array($key => $now));
+ }
+
+ /**
+ * Determine the latest timestamp known to the invalidation chain
+ *
+ * @param string $cid CacheID to determine latest invalidation timestamp of
+ * @param string $resource_name template name
+ * @param string $cache_id cache id
+ * @param string $compile_id compile id
+ * @param string $resource_uid source's filepath
+ * @return float the microtime the CacheID was invalidated
+ */
+ protected function getLatestInvalidationTimestamp($cid, $resource_name = null, $cache_id = null, $compile_id = null, $resource_uid = null)
+ {
+ // abort if there is no CacheID
+ if (false && !$cid) {
+ return 0;
+ }
+ // abort if there are no InvalidationKeys to check
+ if (!($_cid = $this->listInvalidationKeys($cid, $resource_name, $cache_id, $compile_id, $resource_uid))) {
+ return 0;
+ }
+
+ // there are no InValidationKeys
+ if (!($values = $this->read($_cid))) {
+ return 0;
+ }
+ // make sure we're dealing with floats
+ $values = array_map('floatval', $values);
+ return max($values);
+ }
+
+ /**
+ * Translate a CacheID into the list of applicable InvalidationKeys.
+ *
+ * Splits "some|chain|into|an|array" into array( '#clearAll#', 'some', 'some|chain', 'some|chain|into', ... )
+ *
+ * @param string $cid CacheID to translate
+ * @param string $resource_name template name
+ * @param string $cache_id cache id
+ * @param string $compile_id compile id
+ * @param string $resource_uid source's filepath
+ * @return array list of InvalidationKeys
+ * @uses $invalidationKeyPrefix to prepend to each InvalidationKey
+ */
+ protected function listInvalidationKeys($cid, $resource_name = null, $cache_id = null, $compile_id = null, $resource_uid = null)
+ {
+ $t = array('IVK#ALL');
+ $_name = $_compile = '#';
+ if ($resource_name) {
+ $_name .= $resource_uid . '#' . $this->sanitize($resource_name);
+ $t[] = 'IVK#TEMPLATE' . $_name;
+ }
+ if ($compile_id) {
+ $_compile .= $this->sanitize($compile_id);
+ $t[] = 'IVK#COMPILE' . $_compile;
+ }
+ $_name .= '#';
+ // some poeple smoke bad weed
+ $cid = trim($cache_id, '|');
+ if (!$cid) {
+ return $t;
+ }
+ $i = 0;
+ while (true) {
+ // determine next delimiter position
+ $i = strpos($cid, '|', $i);
+ // add complete CacheID if there are no more delimiters
+ if ($i === false) {
+ $t[] = 'IVK#CACHE#' . $cid;
+ $t[] = 'IVK#CID' . $_name . $cid . $_compile;
+ $t[] = 'IVK#CID' . $_name . $_compile;
+ break;
+ }
+ $part = substr($cid, 0, $i);
+ // add slice to list
+ $t[] = 'IVK#CACHE#' . $part;
+ $t[] = 'IVK#CID' . $_name . $part . $_compile;
+ // skip past delimiter position
+ $i++;
+ }
+ return $t;
+ }
+
+ /**
+ * Check is cache is locked for this template
+ *
+ * @param Smarty $smarty Smarty object
+ * @param Smarty_Template_Cached $cached cached object
+ * @return booelan true or false if cache is locked
+ */
+ public function hasLock(Smarty $smarty, Smarty_Template_Cached $cached)
+ {
+ $key = 'LOCK#' . $cached->filepath;
+ $data = $this->read(array($key));
+ return $data && time() - $data[$key] < $smarty->locking_timeout;
+ }
+
+ /**
+ * Lock cache for this template
+ *
+ * @param Smarty $smarty Smarty object
+ * @param Smarty_Template_Cached $cached cached object
+ */
+ public function acquireLock(Smarty $smarty, Smarty_Template_Cached $cached)
+ {
+ $cached->is_locked = true;
+ $key = 'LOCK#' . $cached->filepath;
+ $this->write(array($key => time()), $smarty->locking_timeout);
+ }
+
+ /**
+ * Unlock cache for this template
+ *
+ * @param Smarty $smarty Smarty object
+ * @param Smarty_Template_Cached $cached cached object
+ */
+ public function releaseLock(Smarty $smarty, Smarty_Template_Cached $cached)
+ {
+ $cached->is_locked = false;
+ $key = 'LOCK#' . $cached->filepath;
+ $this->delete(array($key));
+ }
+
+ /**
+ * Read values for a set of keys from cache
+ *
+ * @param array $keys list of keys to fetch
+ * @return array list of values with the given keys used as indexes
+ */
+ protected abstract function read(array $keys);
+
+ /**
+ * Save values for a set of keys to cache
+ *
+ * @param array $keys list of values to save
+ * @param int $expire expiration time
+ * @return boolean true on success, false on failure
+ */
+ protected abstract function write(array $keys, $expire=null);
+
+ /**
+ * Remove values from cache
+ *
+ * @param array $keys list of keys to delete
+ * @return boolean true on success, false on failure
+ */
+ protected abstract function delete(array $keys);
+
+ /**
+ * Remove *all* values from cache
+ *
+ * @return boolean true on success, false on failure
+ */
+ protected function purge()
+ {
+ return false;
+ }
+
+}
+
+?>
\ No newline at end of file
diff --git a/gosa-core/include/smarty/sysplugins/smarty_config_source.php b/gosa-core/include/smarty/sysplugins/smarty_config_source.php
--- /dev/null
@@ -0,0 +1,95 @@
+<?php
+/**
+ * Smarty Internal Plugin
+ *
+ * @package Smarty
+ * @subpackage TemplateResources
+ */
+
+/**
+ * Smarty Resource Data Object
+ *
+ * Meta Data Container for Config Files
+ *
+ * @package Smarty
+ * @subpackage TemplateResources
+ * @author Rodney Rehm
+ *
+ * @property string $content
+ * @property int $timestamp
+ * @property bool $exists
+ */
+class Smarty_Config_Source extends Smarty_Template_Source {
+
+ /**
+ * create Config Object container
+ *
+ * @param Smarty_Resource $handler Resource Handler this source object communicates with
+ * @param Smarty $smarty Smarty instance this source object belongs to
+ * @param string $resource full config_resource
+ * @param string $type type of resource
+ * @param string $name resource name
+ * @param string $unique_resource unqiue resource name
+ */
+ public function __construct(Smarty_Resource $handler, Smarty $smarty, $resource, $type, $name, $unique_resource)
+ {
+ $this->handler = $handler; // Note: prone to circular references
+
+ // Note: these may be ->config_compiler_class etc in the future
+ //$this->config_compiler_class = $handler->config_compiler_class;
+ //$this->config_lexer_class = $handler->config_lexer_class;
+ //$this->config_parser_class = $handler->config_parser_class;
+
+ $this->smarty = $smarty;
+ $this->resource = $resource;
+ $this->type = $type;
+ $this->name = $name;
+ $this->unique_resource = $unique_resource;
+ }
+
+ /**
+ * <<magic>> Generic setter.
+ *
+ * @param string $property_name valid: content, timestamp, exists
+ * @param mixed $value newly assigned value (not check for correct type)
+ * @throws SmartyException when the given property name is not valid
+ */
+ public function __set($property_name, $value)
+ {
+ switch ($property_name) {
+ case 'content':
+ case 'timestamp':
+ case 'exists':
+ $this->$property_name = $value;
+ break;
+
+ default:
+ throw new SmartyException("invalid config property '$property_name'.");
+ }
+ }
+
+ /**
+ * <<magic>> Generic getter.
+ *
+ * @param string $property_name valid: content, timestamp, exists
+ * @throws SmartyException when the given property name is not valid
+ */
+ public function __get($property_name)
+ {
+ switch ($property_name) {
+ case 'timestamp':
+ case 'exists':
+ $this->handler->populateTimestamp($this);
+ return $this->$property_name;
+
+ case 'content':
+ return $this->content = $this->handler->getContent($this);
+
+ default:
+ throw new SmartyException("config property '$property_name' does not exist.");
+ }
+ }
+
+}
+
+?>
\ No newline at end of file
diff --git a/gosa-core/include/smarty/sysplugins/smarty_internal_cacheresource_file.php b/gosa-core/include/smarty/sysplugins/smarty_internal_cacheresource_file.php
index 512f6fbf723ce2732de3a07b64b95e0b9f8a541a..c5e985b6ddc25ef596069908ad936fc99baac4a9 100644 (file)
<?php
-
/**
* Smarty Internal Plugin CacheResource File
- *
- * Implements the file system as resource for the HTML cache
- * Version ussing nocache inserts
- *
+ *
* @package Smarty
* @subpackage Cacher
- * @author Uwe Tews
+ * @author Uwe Tews
+ * @author Rodney Rehm
*/
/**
* This class does contain all necessary methods for the HTML cache on file system
+ *
+ * Implements the file system as resource for the HTML cache Version ussing nocache inserts.
+ *
+ * @package Smarty
+ * @subpackage Cacher
*/
-class Smarty_Internal_CacheResource_File {
- function __construct($smarty)
- {
- $this->smarty = $smarty;
- }
+class Smarty_Internal_CacheResource_File extends Smarty_CacheResource {
+
/**
- * Returns the filepath of the cached template output
- *
- * @param object $_template current template
- * @return string the cache filepath
+ * populate Cached Object with meta data from Resource
+ *
+ * @param Smarty_Template_Cached $cached cached object
+ * @param Smarty_Internal_Template $_template template object
+ * @return void
*/
- public function getCachedFilepath($_template)
+ public function populate(Smarty_Template_Cached $cached, Smarty_Internal_Template $_template)
{
- $_source_file_path = str_replace(':', '.', $_template->getTemplateFilepath());
+ $_source_file_path = str_replace(':', '.', $_template->source->filepath);
$_cache_id = isset($_template->cache_id) ? preg_replace('![^\w\|]+!', '_', $_template->cache_id) : null;
$_compile_id = isset($_template->compile_id) ? preg_replace('![^\w\|]+!', '_', $_template->compile_id) : null;
- $_filepath = $_template->templateUid;
+ $_filepath = $_template->source->uid;
// if use_sub_dirs, break file into directories
- if ($this->smarty->use_sub_dirs) {
+ if ($_template->smarty->use_sub_dirs) {
$_filepath = substr($_filepath, 0, 2) . DS
- . substr($_filepath, 2, 2) . DS
- . substr($_filepath, 4, 2) . DS
- . $_filepath;
- }
- $_compile_dir_sep = $this->smarty->use_sub_dirs ? DS : '^';
+ . substr($_filepath, 2, 2) . DS
+ . substr($_filepath, 4, 2) . DS
+ . $_filepath;
+ }
+ $_compile_dir_sep = $_template->smarty->use_sub_dirs ? DS : '^';
if (isset($_cache_id)) {
$_cache_id = str_replace('|', $_compile_dir_sep, $_cache_id) . $_compile_dir_sep;
} else {
$_cache_id = '';
- }
+ }
if (isset($_compile_id)) {
$_compile_id = $_compile_id . $_compile_dir_sep;
} else {
$_compile_id = '';
- }
- $_cache_dir = $this->smarty->cache_dir;
- if (strpos('/\\', substr($_cache_dir, -1)) === false) {
- $_cache_dir .= DS;
- }
- return $_cache_dir . $_cache_id . $_compile_id . $_filepath . '.' . basename($_source_file_path) . '.php';
- }
+ }
+ $_cache_dir = $_template->smarty->getCacheDir();
+ if ($_template->smarty->cache_locking) {
+ // create locking file name
+ // relative file name?
+ if (!preg_match('/^([\/\\\\]|[a-zA-Z]:[\/\\\\])/', $_cache_dir)) {
+ $_lock_dir = rtrim(getcwd(), '/\\') . DS . $_cache_dir;
+ } else {
+ $_lock_dir = $_cache_dir;
+ }
+ $cached->lock_id = $_lock_dir.sha1($_cache_id.$_compile_id.$_template->source->uid).'.lock';
+ }
+ $cached->filepath = $_cache_dir . $_cache_id . $_compile_id . $_filepath . '.' . basename($_source_file_path) . '.php';
+ $cached->timestamp = @filemtime($cached->filepath);
+ $cached->exists = !!$cached->timestamp;
+ }
/**
- * Returns the timpestamp of the cached template output
- *
- * @param object $_template current template
- * @return integer |booelan the template timestamp or false if the file does not exist
+ * populate Cached Object with timestamp and exists from Resource
+ *
+ * @param Smarty_Template_Cached $cached cached object
+ * @return void
*/
- public function getCachedTimestamp($_template)
- {
- // return @filemtime ($_template->getCachedFilepath());
- return ($_template->getCachedFilepath() && file_exists($_template->getCachedFilepath())) ? filemtime($_template->getCachedFilepath()) : false ;
- }
+ public function populateTimestamp(Smarty_Template_Cached $cached)
+ {
+ $cached->timestamp = @filemtime($cached->filepath);
+ $cached->exists = !!$cached->timestamp;
+ }
/**
- * Returns the cached template output
- *
- * @param object $_template current template
- * @return string |booelan the template content or false if the file does not exist
+ * Read the cached template and process its header
+ *
+ * @param Smarty_Internal_Template $_template template object
+ * @param Smarty_Template_Cached $cached cached object
+ * @return booelan true or false if the cached content does not exist
*/
- public function getCachedContents($_template, $no_render = false)
+ public function process(Smarty_Internal_Template $_template, Smarty_Template_Cached $cached=null)
{
- if (!$no_render) {
- ob_start();
- }
$_smarty_tpl = $_template;
- include $_template->getCachedFilepath();
- if ($no_render) {
- return null;
- } else {
- return ob_get_clean();
- }
- }
+ return @include $_template->cached->filepath;
+ }
/**
- * Writes the rendered template output to cache file
- *
- * @param object $_template current template
- * @return boolean status
+ * Write the rendered template output to cache
+ *
+ * @param Smarty_Internal_Template $_template template object
+ * @param string $content content to cache
+ * @return boolean success
*/
- public function writeCachedContent($_template, $content)
+ public function writeCachedContent(Smarty_Internal_Template $_template, $content)
{
- if (!$_template->resource_object->isEvaluated) {
- if (Smarty_Internal_Write_File::writeFile($_template->getCachedFilepath(), $content, $this->smarty) === true) {
- $_template->cached_timestamp = filemtime($_template->getCachedFilepath());
- return true;
- }
- }
+ if (Smarty_Internal_Write_File::writeFile($_template->cached->filepath, $content, $_template->smarty) === true) {
+ $_template->cached->timestamp = filemtime($_template->cached->filepath);
+ $_template->cached->exists = !!$_template->cached->timestamp;
+ return true;
+ }
return false;
- }
+ }
/**
- * Empty cache folder
- *
- * @param integer $exp_time expiration time
+ * Empty cache
+ *
+ * @param Smarty_Internal_Template $_template template object
+ * @param integer $exp_time expiration time (number of seconds, not timestamp)
* @return integer number of cache files deleted
*/
- public function clearAll($exp_time = null)
+ public function clearAll(Smarty $smarty, $exp_time = null)
{
- return $this->clear(null, null, null, $exp_time);
- }
+ return $this->clear($smarty, null, null, null, $exp_time);
+ }
+
/**
* Empty cache for a specific template
- *
- * @param string $resource_name template name
- * @param string $cache_id cache id
- * @param string $compile_id compile id
- * @param integer $exp_time expiration time
+ *
+ * @param Smarty $_template template object
+ * @param string $resource_name template name
+ * @param string $cache_id cache id
+ * @param string $compile_id compile id
+ * @param integer $exp_time expiration time (number of seconds, not timestamp)
* @return integer number of cache files deleted
- */
- public function clear($resource_name, $cache_id, $compile_id, $exp_time)
+ */
+ public function clear(Smarty $smarty, $resource_name, $cache_id, $compile_id, $exp_time)
{
$_cache_id = isset($cache_id) ? preg_replace('![^\w\|]+!', '_', $cache_id) : null;
$_compile_id = isset($compile_id) ? preg_replace('![^\w\|]+!', '_', $compile_id) : null;
- $_dir_sep = $this->smarty->use_sub_dirs ? '/' : '^';
- $_compile_id_offset = $this->smarty->use_sub_dirs ? 3 : 0;
- $_dir = rtrim($this->smarty->cache_dir, '/\\') . DS;
+ $_dir_sep = $smarty->use_sub_dirs ? '/' : '^';
+ $_compile_id_offset = $smarty->use_sub_dirs ? 3 : 0;
+ $_dir = $smarty->getCacheDir();
$_dir_length = strlen($_dir);
if (isset($_cache_id)) {
$_cache_id_parts = explode('|', $_cache_id);
$_cache_id_parts_count = count($_cache_id_parts);
- if ($this->smarty->use_sub_dirs) {
+ if ($smarty->use_sub_dirs) {
foreach ($_cache_id_parts as $id_part) {
$_dir .= $id_part . DS;
- }
- }
- }
+ }
+ }
+ }
if (isset($resource_name)) {
- $_save_stat = $this->smarty->caching;
- $this->smarty->caching = true;
- $tpl = new $this->smarty->template_class($resource_name, $this->smarty);
- $this->smarty->caching = $_save_stat;
- if ($tpl->isExisting()) {
- $_resourcename_parts = basename(str_replace('^', '/', $tpl->getCachedFilepath()));
- // remove from template cache
- unset($this->smarty->template_objects[sha1($tpl->template_resource . $tpl->cache_id . $tpl->compile_id)]);
+ $_save_stat = $smarty->caching;
+ $smarty->caching = true;
+ $tpl = new $smarty->template_class($resource_name, $smarty);
+ $smarty->caching = $_save_stat;
+
+ // remove from template cache
+ $tpl->source; // have the template registered before unset()
+ $_templateId = sha1($tpl->source->unique_resource . $tpl->cache_id . $tpl->compile_id);
+ unset($smarty->template_objects[$_templateId]);
+
+ if ($tpl->source->exists) {
+ $_resourcename_parts = basename(str_replace('^', '/', $tpl->cached->filepath));
} else {
- // remove from template cache
- unset($this->smarty->template_objects[sha1($tpl->template_resource . $tpl->cache_id . $tpl->compile_id)]);
return 0;
- }
- }
+ }
+ }
$_count = 0;
+ $_time = time();
if (file_exists($_dir)) {
$_cacheDirs = new RecursiveDirectoryIterator($_dir);
$_cache = new RecursiveIteratorIterator($_cacheDirs, RecursiveIteratorIterator::CHILD_FIRST);
foreach ($_cache as $_file) {
- if (substr($_file->getBasename(),0,1) == '.') continue;
+ if (substr($_file->getBasename(),0,1) == '.' || strpos($_file, '.svn') !== false) continue;
// directory ?
if ($_file->isDir()) {
if (!$_cache->isDot()) {
// delete folder if empty
@rmdir($_file->getPathname());
- }
+ }
} else {
$_parts = explode($_dir_sep, str_replace('\\', '/', substr((string)$_file, $_dir_length)));
- $_parts_count = count($_parts);
+ $_parts_count = count($_parts);
// check name
if (isset($resource_name)) {
if ($_parts[$_parts_count-1] != $_resourcename_parts) {
continue;
- }
- }
+ }
+ }
// check compile id
if (isset($_compile_id) && (!isset($_parts[$_parts_count-2 - $_compile_id_offset]) || $_parts[$_parts_count-2 - $_compile_id_offset] != $_compile_id)) {
continue;
- }
+ }
// check cache id
if (isset($_cache_id)) {
// count of cache id parts
$_parts_count = (isset($_compile_id)) ? $_parts_count - 2 - $_compile_id_offset : $_parts_count - 1 - $_compile_id_offset;
if ($_parts_count < $_cache_id_parts_count) {
continue;
- }
+ }
for ($i = 0; $i < $_cache_id_parts_count; $i++) {
if ($_parts[$i] != $_cache_id_parts[$i]) continue 2;
- }
- }
+ }
+ }
// expired ?
- if (isset($exp_time) && time() - @filemtime($_file) < $exp_time) {
+ if (isset($exp_time) && $_time - @filemtime($_file) < $exp_time) {
continue;
- }
+ }
$_count += @unlink((string) $_file) ? 1 : 0;
- }
- }
- }
+ }
+ }
+ }
return $_count;
- }
-}
+ }
+
+ /**
+ * Check is cache is locked for this template
+ *
+ * @param Smarty $smarty Smarty object
+ * @param Smarty_Template_Cached $cached cached object
+ * @return booelan true or false if cache is locked
+ */
+ public function hasLock(Smarty $smarty, Smarty_Template_Cached $cached)
+ {
+ if (version_compare(PHP_VERSION, '5.3.0', '>=')) {
+ clearstatcache(true, $cached->lock_id);
+ } else {
+ clearstatcache();
+ }
+ $t = @filemtime($cached->lock_id);
+ return $t && (time() - $t < $smarty->locking_timeout);
+ }
+
+ /**
+ * Lock cache for this template
+ *
+ * @param Smarty $smarty Smarty object
+ * @param Smarty_Template_Cached $cached cached object
+ */
+ public function acquireLock(Smarty $smarty, Smarty_Template_Cached $cached)
+ {
+ $cached->is_locked = true;
+ touch($cached->lock_id);
+ }
+
+ /**
+ * Unlock cache for this template
+ *
+ * @param Smarty $smarty Smarty object
+ * @param Smarty_Template_Cached $cached cached object
+ */
+ public function releaseLock(Smarty $smarty, Smarty_Template_Cached $cached)
+ {
+ $cached->is_locked = false;
+ @unlink($cached->lock_id);
+ }
+}
?>
\ No newline at end of file
diff --git a/gosa-core/include/smarty/sysplugins/smarty_internal_compile_append.php b/gosa-core/include/smarty/sysplugins/smarty_internal_compile_append.php
index 98e696e30e2a8f4eecaa532a98acc395e63bb9f4..f6036e88322ca4dcca52047f62a3bc378f6cbc15 100644 (file)
<?php
-
/**
* Smarty Internal Plugin Compile Append
- *
+ *
* Compiles the {append} tag
- *
+ *
* @package Smarty
* @subpackage Compiler
- * @author Uwe Tews
+ * @author Uwe Tews
*/
+
/**
* Smarty Internal Plugin Compile Append Class
+ *
+ * @package Smarty
+ * @subpackage Compiler
*/
class Smarty_Internal_Compile_Append extends Smarty_Internal_Compile_Assign {
/**
* Compiles code for the {append} tag
- *
+ *
* @param array $args array with attributes from parser
* @param object $compiler compiler object
* @param array $parameter array with compilation parameter
*/
public function compile($args, $compiler, $parameter)
{
- $this->compiler = $compiler;
// the following must be assigned at runtime because it will be overwritten in parent class
$this->required_attributes = array('var', 'value');
$this->shorttag_order = array('var', 'value');
- $this->optional_attributes = array('scope','index');
+ $this->optional_attributes = array('scope', 'index');
// check and get attributes
- $_attr = $this->_get_attributes($args);
+ $_attr = $this->getAttributes($compiler, $args);
// map to compile assign attributes
if (isset($_attr['index'])) {
$_params['smarty_internal_index'] = '[' . $_attr['index'] . ']';
$_new_attr = array();
foreach ($_attr as $key => $value) {
$_new_attr[] = array($key => $value);
- }
+ }
// call compile assign
return parent::compile($_new_attr, $compiler, $_params);
- }
-}
+ }
+
+}
?>
\ No newline at end of file
diff --git a/gosa-core/include/smarty/sysplugins/smarty_internal_compile_assign.php b/gosa-core/include/smarty/sysplugins/smarty_internal_compile_assign.php
index 8d8c643afceacbdb90fb78eba511e1338432f91d..40e4686210b4bd8fe079f69c5ee846cf39857e84 100644 (file)
<?php
-
/**
* Smarty Internal Plugin Compile Assign
- *
+ *
* Compiles the {assign} tag
- *
+ *
* @package Smarty
* @subpackage Compiler
- * @author Uwe Tews
+ * @author Uwe Tews
*/
/**
* Smarty Internal Plugin Compile Assign Class
+ *
+ * @package Smarty
+ * @subpackage Compiler
*/
class Smarty_Internal_Compile_Assign extends Smarty_Internal_CompileBase {
+
/**
* Compiles code for the {assign} tag
- *
- * @param array $args array with attributes from parser
- * @param object $compiler compiler object
- * @param array $parameter array with compilation parameter
+ *
+ * @param array $args array with attributes from parser
+ * @param object $compiler compiler object
+ * @param array $parameter array with compilation parameter
* @return string compiled code
*/
public function compile($args, $compiler, $parameter)
{
- $this->compiler = $compiler;
// the following must be assigned at runtime because it will be overwritten in Smarty_Internal_Compile_Append
$this->required_attributes = array('var', 'value');
$this->shorttag_order = array('var', 'value');
$this->optional_attributes = array('scope');
$_nocache = 'null';
- $_scope = 'null';
+ $_scope = Smarty::SCOPE_LOCAL;
// check and get attributes
- $_attr = $this->_get_attributes($args);
- // nocache ?
- if ($this->compiler->tag_nocache || $this->compiler->nocache) {
- $_nocache = 'true';
+ $_attr = $this->getAttributes($compiler, $args);
+ // nocache ?
+ if ($compiler->tag_nocache || $compiler->nocache) {
+ $_nocache = 'true';
// create nocache var to make it know for further compiling
$compiler->template->tpl_vars[trim($_attr['var'], "'")] = new Smarty_variable(null, true);
- }
+ }
// scope setup
if (isset($_attr['scope'])) {
$_attr['scope'] = trim($_attr['scope'], "'\"");
} elseif ($_attr['scope'] == 'global') {
$_scope = Smarty::SCOPE_GLOBAL;
} else {
- $this->compiler->trigger_template_error('illegal value for "scope" attribute', $this->compiler->lex->taglineno);
- }
- }
+ $compiler->trigger_template_error('illegal value for "scope" attribute', $compiler->lex->taglineno);
+ }
+ }
// compiled output
if (isset($parameter['smarty_internal_index'])) {
- return "<?php if (!isset(\$_smarty_tpl->tpl_vars[$_attr[var]]) || !is_array(\$_smarty_tpl->tpl_vars[$_attr[var]]->value)) \$_smarty_tpl->createLocalArrayVariable($_attr[var], $_nocache, $_scope);\n\$_smarty_tpl->tpl_vars[$_attr[var]]->value$parameter[smarty_internal_index] = $_attr[value];?>";
+ $output = "<?php \$_smarty_tpl->createLocalArrayVariable($_attr[var], $_nocache, $_scope);\n\$_smarty_tpl->tpl_vars[$_attr[var]]->value$parameter[smarty_internal_index] = $_attr[value];";
} else {
- return "<?php \$_smarty_tpl->tpl_vars[$_attr[var]] = new Smarty_variable($_attr[value], $_nocache, $_scope);?>";
- }
- }
-}
+ $output = "<?php \$_smarty_tpl->tpl_vars[$_attr[var]] = new Smarty_variable($_attr[value], $_nocache, $_scope);";
+ }
+ if ($_scope == Smarty::SCOPE_PARENT) {
+ $output .= "\nif (\$_smarty_tpl->parent != null) \$_smarty_tpl->parent->tpl_vars[$_attr[var]] = clone \$_smarty_tpl->tpl_vars[$_attr[var]];";
+ } elseif ($_scope == Smarty::SCOPE_ROOT || $_scope == Smarty::SCOPE_GLOBAL) {
+ $output .= "\n\$_ptr = \$_smarty_tpl->parent; while (\$_ptr != null) {\$_ptr->tpl_vars[$_attr[var]] = clone \$_smarty_tpl->tpl_vars[$_attr[var]]; \$_ptr = \$_ptr->parent; }";
+ }
+ if ( $_scope == Smarty::SCOPE_GLOBAL) {
+ $output .= "\nSmarty::\$global_tpl_vars[$_attr[var]] = clone \$_smarty_tpl->tpl_vars[$_attr[var]];";
+ }
+ $output .= '?>';
+ return $output;
+ }
+
+}
?>
\ No newline at end of file
diff --git a/gosa-core/include/smarty/sysplugins/smarty_internal_compile_block.php b/gosa-core/include/smarty/sysplugins/smarty_internal_compile_block.php
index fc003dd71526f1c16747580ffd6c358188a9aa49..3a9f91b63156a47a06af319705161e67f8d68cfe 100644 (file)
/**
* Smarty Internal Plugin Compile Block Class
+ *
+ * @package Smarty
+ * @subpackage Compiler
*/
class Smarty_Internal_Compile_Block extends Smarty_Internal_CompileBase {
- // attribute definitions
+
+ /**
+ * Attribute definition: Overwrites base class.
+ *
+ * @var array
+ * @see Smarty_Internal_CompileBase
+ */
public $required_attributes = array('name');
- public $shorttag_order = array('name');
+ /**
+ * Attribute definition: Overwrites base class.
+ *
+ * @var array
+ * @see Smarty_Internal_CompileBase
+ */
+ public $shorttag_order = array('name', 'hide');
+ /**
+ * Attribute definition: Overwrites base class.
+ *
+ * @var array
+ * @see Smarty_Internal_CompileBase
+ */
+ public $optional_attributes = array('hide');
+
/**
* Compiles code for the {block} tag
*
- * @param array $args array with attributes from parser
+ * @param array $args array with attributes from parser
* @param object $compiler compiler object
* @return boolean true
*/
public function compile($args, $compiler)
{
- $this->compiler = $compiler;
// check and get attributes
- $_attr = $this->_get_attributes($args);
- $save = array($_attr, $compiler->parser->current_buffer, $this->compiler->nocache, $this->compiler->smarty->merge_compiled_includes, $compiler->smarty->inheritance);
- $this->_open_tag('block', $save);
+ $_attr = $this->getAttributes($compiler, $args);
+ $save = array($_attr, $compiler->parser->current_buffer, $compiler->nocache, $compiler->smarty->merge_compiled_includes);
+ $this->openTag($compiler, 'block', $save);
if ($_attr['nocache'] == true) {
$compiler->nocache = true;
}
// set flag for {block} tag
- $compiler->smarty->inheritance = true;
+ $compiler->inheritance = true;
// must merge includes
- $this->compiler->smarty->merge_compiled_includes = true;
+ $compiler->smarty->merge_compiled_includes = true;
$compiler->parser->current_buffer = new _smarty_template_buffer($compiler->parser);
$compiler->has_code = false;
return true;
}
-
- static function saveBlockData($block_content, $block_tag, $template, $filepath)
+ /**
+ * Save or replace child block source by block name during parsing
+ *
+ * @param string $block_content block source content
+ * @param string $block_tag opening block tag
+ * @param object $template template object
+ * @param string $filepath filepath of template source
+ */
+ public static function saveBlockData($block_content, $block_tag, $template, $filepath)
{
- $_rdl = preg_quote($template->smarty->right_delimiter);
+ $_rdl = preg_quote($template->smarty->right_delimiter);
$_ldl = preg_quote($template->smarty->left_delimiter);
- if (0 == preg_match("!({$_ldl}block\s+)(name=)?(\w+|'.*'|\".*\")(\s*?)?((append|prepend|nocache)(=true)?)?(\s*{$_rdl})!", $block_tag, $_match)) {
- $error_text = 'Syntax Error in template "' . $template->getTemplateFilepath() . '" "' . htmlspecialchars($block_tag) . '" illegal options';
+ if (0 == preg_match("!({$_ldl}block\s+)(name=)?(\w+|'.*'|\".*\")(\s*?)?((append|prepend|nocache)?(\s*)?(hide)?)?(\s*{$_rdl})!", $block_tag, $_match)) {
+ $error_text = 'Syntax Error in template "' . $template->source->filepath . '" "' . htmlspecialchars($block_tag) . '" illegal options';
throw new SmartyCompilerException($error_text);
} else {
$_name = trim($_match[3], '\'"');
- // replace {$smarty.block.child}
- if (strpos($block_content, $template->smarty->left_delimiter . '$smarty.block.child' . $template->smarty->right_delimiter) !== false) {
- if (isset($template->block_data[$_name])) {
- $block_content = str_replace($template->smarty->left_delimiter . '$smarty.block.child' . $template->smarty->right_delimiter,
+ if ($_match[8] != 'hide' || isset($template->block_data[$_name])) { // replace {$smarty.block.child}
+ if (strpos($block_content, $template->smarty->left_delimiter . '$smarty.block.child' . $template->smarty->right_delimiter) !== false) {
+ if (isset($template->block_data[$_name])) {
+ $block_content = str_replace($template->smarty->left_delimiter . '$smarty.block.child' . $template->smarty->right_delimiter,
$template->block_data[$_name]['source'], $block_content);
- unset($template->block_data[$_name]);
- } else {
- $block_content = str_replace($template->smarty->left_delimiter . '$smarty.block.child' . $template->smarty->right_delimiter,
+ unset($template->block_data[$_name]);
+ } else {
+ $block_content = str_replace($template->smarty->left_delimiter . '$smarty.block.child' . $template->smarty->right_delimiter,
'', $block_content);
+ }
}
- }
- if (isset($template->block_data[$_name])) {
- if (strpos($template->block_data[$_name]['source'], '%%%%SMARTY_PARENT%%%%') !== false) {
- $template->block_data[$_name]['source'] =
- str_replace('%%%%SMARTY_PARENT%%%%', $block_content, $template->block_data[$_name]['source']);
- } elseif ($template->block_data[$_name]['mode'] == 'prepend') {
- $template->block_data[$_name]['source'] .= $block_content;
- } elseif ($template->block_data[$_name]['mode'] == 'append') {
- $template->block_data[$_name]['source'] = $block_content . $template->block_data[$_name]['source'];
+ if (isset($template->block_data[$_name])) {
+ if (strpos($template->block_data[$_name]['source'], '%%%%SMARTY_PARENT%%%%') !== false) {
+ $template->block_data[$_name]['source'] =
+ str_replace('%%%%SMARTY_PARENT%%%%', $block_content, $template->block_data[$_name]['source']);
+ } elseif ($template->block_data[$_name]['mode'] == 'prepend') {
+ $template->block_data[$_name]['source'] .= $block_content;
+ } elseif ($template->block_data[$_name]['mode'] == 'append') {
+ $template->block_data[$_name]['source'] = $block_content . $template->block_data[$_name]['source'];
+ }
+ } else {
+ $template->block_data[$_name]['source'] = $block_content;
+ $template->block_data[$_name]['file'] = $filepath;
+ }
+ if ($_match[6] == 'append') {
+ $template->block_data[$_name]['mode'] = 'append';
+ } elseif ($_match[6] == 'prepend') {
+ $template->block_data[$_name]['mode'] = 'prepend';
+ } else {
+ $template->block_data[$_name]['mode'] = 'replace';
}
- } else {
- $template->block_data[$_name]['source'] = $block_content;
- }
- if ($_match[6] == 'append') {
- $template->block_data[$_name]['mode'] = 'append';
- } elseif ($_match[6] == 'prepend') {
- $template->block_data[$_name]['mode'] = 'prepend';
- } else {
- $template->block_data[$_name]['mode'] = 'replace';
}
- $template->block_data[$_name]['file'] = $filepath;
}
}
- static function compileChildBlock ($compiler, $_name = null)
- {
- $_output = '';
+ /**
+ * Compile saved child block source
+ *
+ * @param object $compiler compiler object
+ * @param string $_name optional name of child block
+ * @return string compiled code of schild block
+ */
+ public static function compileChildBlock($compiler, $_name = null)
+ {
+ $_output = '';
// if called by {$smarty.block.child} we must search the name of enclosing {block}
- if ($_name == null) {
- $stack_count = count($compiler->_tag_stack);
+ if ($_name == null) {
+ $stack_count = count($compiler->_tag_stack);
while (--$stack_count >= 0) {
- if ($compiler->_tag_stack[$stack_count][0] == 'block') {
- $_name = trim($compiler->_tag_stack[$stack_count][1][0]['name'] ,"'\"");
- break;
+ if ($compiler->_tag_stack[$stack_count][0] == 'block') {
+ $_name = trim($compiler->_tag_stack[$stack_count][1][0]['name'] ,"'\"");
+ break;
+ }
+ }
+ // flag that child is already compile by {$smarty.block.child} inclusion
+ $compiler->template->block_data[$_name]['compiled'] = true;
+ }
+ if ($_name == null) {
+ $compiler->trigger_template_error('{$smarty.block.child} used out of context', $compiler->lex->taglineno);
+ }
+ // undefined child?
+ if (!isset($compiler->template->block_data[$_name]['source'])) {
+ return '';
+ }
+ $_tpl = new Smarty_Internal_template ('string:' . $compiler->template->block_data[$_name]['source'], $compiler->smarty, $compiler->template, $compiler->template->cache_id,
+ $compiler->template->compile_id = null, $compiler->template->caching, $compiler->template->cache_lifetime);
+ $_tpl->variable_filters = $compiler->template->variable_filters;
+ $_tpl->properties['nocache_hash'] = $compiler->template->properties['nocache_hash'];
+ $_tpl->source->filepath = $compiler->template->block_data[$_name]['file'];
+ $_tpl->allow_relative_path = true;
+ if ($compiler->nocache) {
+ $_tpl->compiler->forceNocache = 2;
+ } else {
+ $_tpl->compiler->forceNocache = 1;
+ }
+ $_tpl->compiler->suppressHeader = true;
+ $_tpl->compiler->suppressTemplatePropertyHeader = true;
+ $_tpl->compiler->suppressMergedTemplates = true;
+ if (strpos($compiler->template->block_data[$_name]['source'], '%%%%SMARTY_PARENT%%%%') !== false) {
+ $_output = str_replace('%%%%SMARTY_PARENT%%%%', $compiler->parser->current_buffer->to_smarty_php(), $_tpl->compiler->compileTemplate($_tpl));
+ } elseif ($compiler->template->block_data[$_name]['mode'] == 'prepend') {
+ $_output = $_tpl->compiler->compileTemplate($_tpl) . $compiler->parser->current_buffer->to_smarty_php();
+ } elseif ($compiler->template->block_data[$_name]['mode'] == 'append') {
+ $_output = $compiler->parser->current_buffer->to_smarty_php() . $_tpl->compiler->compileTemplate($_tpl);
+ } elseif (!empty($compiler->template->block_data[$_name])) {
+ $_output = $_tpl->compiler->compileTemplate($_tpl);
+ }
+ $compiler->template->properties['file_dependency'] = array_merge($compiler->template->properties['file_dependency'], $_tpl->properties['file_dependency']);
+ $compiler->template->properties['function'] = array_merge($compiler->template->properties['function'], $_tpl->properties['function']);
+ $compiler->merged_templates = array_merge($compiler->merged_templates, $_tpl->compiler->merged_templates);
+ $compiler->template->variable_filters = $_tpl->variable_filters;
+ if ($_tpl->has_nocache_code) {
+ $compiler->template->has_nocache_code = true;
+ }
+ foreach($_tpl->required_plugins as $code => $tmp1) {
+ foreach($tmp1 as $name => $tmp) {
+ foreach($tmp as $type => $data) {
+ $compiler->template->required_plugins[$code][$name][$type] = $data;
}
}
- // flag that child is already compile by {$smarty.block.child} inclusion
- $compiler->template->block_data[$_name]['compiled'] = true;
}
- if ($_name == null) {
- $compiler->trigger_template_error('{$smarty.block.child} used out of context', $compiler->lex->taglineno);
- }
- // undefined child?
- if (!isset($compiler->template->block_data[$_name])) {
- return '';
- }
- $_tpl = new Smarty_Internal_template ('eval:' . $compiler->template->block_data[$_name]['source'], $compiler->smarty, $compiler->template, $compiler->template->cache_id,
- $compiler->template->compile_id = null, $compiler->template->caching, $compiler->template->cache_lifetime);
- $_tpl->properties['nocache_hash'] = $compiler->template->properties['nocache_hash'];
- $_tpl->template_filepath = $compiler->template->block_data[$_name]['file'];
- if ($compiler->nocache) {
- $_tpl->forceNocache = 2;
- } else {
- $_tpl->forceNocache = 1;
- }
- $_tpl->suppressHeader = true;
- $_tpl->suppressFileDependency = true;
- if (strpos($compiler->template->block_data[$_name]['source'], '%%%%SMARTY_PARENT%%%%') !== false) {
- $_output = str_replace('%%%%SMARTY_PARENT%%%%', $compiler->parser->current_buffer->to_smarty_php(), $_tpl->getCompiledTemplate());
- } elseif ($compiler->template->block_data[$_name]['mode'] == 'prepend') {
- $_output = $_tpl->getCompiledTemplate() . $compiler->parser->current_buffer->to_smarty_php();
- } elseif ($compiler->template->block_data[$_name]['mode'] == 'append') {
- $_output = $compiler->parser->current_buffer->to_smarty_php() . $_tpl->getCompiledTemplate();
- } elseif (!empty($compiler->template->block_data[$_name])) {
- $_output = $_tpl->getCompiledTemplate();
- }
- $compiler->template->properties['file_dependency'] = array_merge($compiler->template->properties['file_dependency'], $_tpl->properties['file_dependency']);
- $compiler->template->properties['function'] = array_merge($compiler->template->properties['function'], $_tpl->properties['function']);
- if ($_tpl->has_nocache_code) {
- $compiler->template->has_nocache_code = true;
- }
- foreach($_tpl->required_plugins as $code => $tmp1) {
- foreach($tmp1 as $name => $tmp) {
- foreach($tmp as $type => $data) {
- $compiler->template->required_plugins[$code][$name][$type] = $data;
- }
- }
- }
- unset($_tpl);
- return $_output;
- }
+ unset($_tpl);
+ return $_output;
+ }
}
/**
* Smarty Internal Plugin Compile BlockClose Class
- */
+ *
+ * @package Smarty
+ * @subpackage Compiler
+*/
class Smarty_Internal_Compile_Blockclose extends Smarty_Internal_CompileBase {
+
/**
* Compiles code for the {/block} tag
*
- * @param array $args array with attributes from parser
+ * @param array $args array with attributes from parser
* @param object $compiler compiler object
* @return string compiled code
*/
public function compile($args, $compiler)
{
- $this->compiler = $compiler;
- $this->smarty = $compiler->smarty;
- $this->compiler->has_code = true;
+ $compiler->has_code = true;
// check and get attributes
- $_attr = $this->_get_attributes($args);
- $saved_data = $this->_close_tag(array('block'));
+ $_attr = $this->getAttributes($compiler, $args);
+ $saved_data = $this->closeTag($compiler, array('block'));
$_name = trim($saved_data[0]['name'], "\"'");
if (isset($compiler->template->block_data[$_name]) && !isset($compiler->template->block_data[$_name]['compiled'])) {
- $_output = Smarty_Internal_Compile_Block::compileChildBlock($compiler, $_name);
+ $_output = Smarty_Internal_Compile_Block::compileChildBlock($compiler, $_name);
} else {
- $_output = $compiler->parser->current_buffer->to_smarty_php();
+ if (isset($saved_data[0]['hide']) && !isset($compiler->template->block_data[$_name]['source'])) {
+ $_output = '';
+ } else {
+ $_output = $compiler->parser->current_buffer->to_smarty_php();
+ }
unset ($compiler->template->block_data[$_name]['compiled']);
}
// reset flags
$compiler->parser->current_buffer = $saved_data[1];
$compiler->nocache = $saved_data[2];
$compiler->smarty->merge_compiled_includes = $saved_data[3];
- $compiler->smarty->inheritance = $saved_data[4];
+ // reset flag for {block} tag
+ $compiler->inheritance = false;
// $_output content has already nocache code processed
$compiler->suppressNocacheProcessing = true;
return $_output;
}
+
}
+
?>
\ No newline at end of file
diff --git a/gosa-core/include/smarty/sysplugins/smarty_internal_compile_break.php b/gosa-core/include/smarty/sysplugins/smarty_internal_compile_break.php
index 2e57da4017d45e86f992fe86e5f5e9fb8ca36131..259c66e2b23ebe5a0fc0763592e3f913fdbe5d1e 100644 (file)
<?php\r
-\r
/**\r
* Smarty Internal Plugin Compile Break\r
- * \r
+ *\r
* Compiles the {break} tag\r
- * \r
+ *\r
* @package Smarty\r
* @subpackage Compiler\r
- * @author Uwe Tews \r
+ * @author Uwe Tews\r
*/\r
/**\r
* Smarty Internal Plugin Compile Break Class\r
+ *\r
+ * @package Smarty\r
+ * @subpackage Compiler\r
*/\r
class Smarty_Internal_Compile_Break extends Smarty_Internal_CompileBase {\r
- // attribute definitions\r
- public $optional_attributes = array('levels'); \r
- public $shorttag_order = array('levels');\r
\r
+ /**\r
+ * Attribute definition: Overwrites base class.\r
+ *\r
+ * @var array\r
+ * @see Smarty_Internal_CompileBase\r
+ */\r
+ public $optional_attributes = array('levels');\r
+ /**\r
+ * Attribute definition: Overwrites base class.\r
+ *\r
+ * @var array\r
+ * @see Smarty_Internal_CompileBase\r
+ */\r
+ public $shorttag_order = array('levels');\r
\r
/**\r
* Compiles code for the {break} tag\r
- * \r
- * @param array $args array with attributes from parser\r
- * @param object $compiler compiler object\r
- * @param array $parameter array with compilation parameter\r
+ *\r
+ * @param array $args array with attributes from parser\r
+ * @param object $compiler compiler object\r
+ * @param array $parameter array with compilation parameter\r
* @return string compiled code\r
*/\r
public function compile($args, $compiler, $parameter)\r
- { \r
- $this->compiler = $compiler;\r
- $this->smarty = $compiler->smarty;\r
+ {\r
+ static $_is_loopy = array('for' => true, 'foreach' => true, 'while' => true, 'section' => true);\r
// check and get attributes\r
- $_attr = $this->_get_attributes($args);\r
+ $_attr = $this->getAttributes($compiler, $args);\r
\r
if ($_attr['nocache'] === true) {\r
- $this->compiler->trigger_template_error('nocache option not allowed', $this->compiler->lex->taglineno);\r
+ $compiler->trigger_template_error('nocache option not allowed', $compiler->lex->taglineno);\r
}\r
\r
if (isset($_attr['levels'])) {\r
if (!is_numeric($_attr['levels'])) {\r
- $this->compiler->trigger_template_error('level attribute must be a numeric constant', $this->compiler->lex->taglineno);\r
- } \r
+ $compiler->trigger_template_error('level attribute must be a numeric constant', $compiler->lex->taglineno);\r
+ }\r
$_levels = $_attr['levels'];\r
} else {\r
$_levels = 1;\r
- } \r
+ }\r
$level_count = $_levels;\r
$stack_count = count($compiler->_tag_stack) - 1;\r
while ($level_count > 0 && $stack_count >= 0) {\r
- if (in_array($compiler->_tag_stack[$stack_count][0], array('for', 'foreach', 'while', 'section'))) {\r
+ if (isset($_is_loopy[$compiler->_tag_stack[$stack_count][0]])) {\r
$level_count--;\r
- } \r
+ }\r
$stack_count--;\r
- } \r
+ }\r
if ($level_count != 0) {\r
- $this->compiler->trigger_template_error("cannot break {$_levels} level(s)", $this->compiler->lex->taglineno);\r
- } \r
- // this tag does not return compiled code\r
- $this->compiler->has_code = true;\r
+ $compiler->trigger_template_error("cannot break {$_levels} level(s)", $compiler->lex->taglineno);\r
+ }\r
+ $compiler->has_code = true;\r
return "<?php break {$_levels}?>";\r
- } \r
-} \r
+ }\r
+\r
+}\r
\r
?>
\ No newline at end of file
diff --git a/gosa-core/include/smarty/sysplugins/smarty_internal_compile_call.php b/gosa-core/include/smarty/sysplugins/smarty_internal_compile_call.php
index 50ba6328d3209906ced4a6ae272ac0f26c4b3d7c..af12a048c5b075b84c46c8714f08d6a355eee468 100644 (file)
<?php
-
/**
* Smarty Internal Plugin Compile Function_Call
- *
+ *
* Compiles the calls of user defined tags defined by {function}
- *
+ *
* @package Smarty
* @subpackage Compiler
- * @author Uwe Tews
+ * @author Uwe Tews
*/
/**
* Smarty Internal Plugin Compile Function_Call Class
+ *
+ * @package Smarty
+ * @subpackage Compiler
*/
class Smarty_Internal_Compile_Call extends Smarty_Internal_CompileBase {
- // attribute definitions
+
+ /**
+ * Attribute definition: Overwrites base class.
+ *
+ * @var array
+ * @see Smarty_Internal_CompileBase
+ */
public $required_attributes = array('name');
+ /**
+ * Attribute definition: Overwrites base class.
+ *
+ * @var array
+ * @see Smarty_Internal_CompileBase
+ */
public $shorttag_order = array('name');
- public $optional_attributes = array('_any');
+ /**
+ * Attribute definition: Overwrites base class.
+ *
+ * @var array
+ * @see Smarty_Internal_CompileBase
+ */
+ public $optional_attributes = array('_any');
/**
* Compiles the calls of user defined tags defined by {function}
- *
- * @param array $args array with attributes from parser
- * @param object $compiler compiler object
- * @param array $parameter array with compilation parameter
+ *
+ * @param array $args array with attributes from parser
+ * @param object $compiler compiler object
+ * @param array $parameter array with compilation parameter
* @return string compiled code
*/
public function compile($args, $compiler)
{
- $this->compiler = $compiler;
- $this->smarty = $compiler->smarty;
// check and get attributes
- $_attr = $this->_get_attributes($args);
+ $_attr = $this->getAttributes($compiler, $args);
// save possible attributes
if (isset($_attr['assign'])) {
// output will be stored in a smarty variable instead of beind displayed
$_assign = $_attr['assign'];
- }
+ }
$_name = $_attr['name'];
- unset($_attr['name'], $_attr['assign'], $_attr['nocache']);
+ if ($compiler->compiles_template_function) {
+ $compiler->called_functions[] = trim($_name, "'\"");
+ }
+ unset($_attr['name'], $_attr['assign'], $_attr['nocache']);
// set flag (compiled code of {function} must be included in cache file
if ($compiler->nocache || $compiler->tag_nocache) {
$_nocache = 'true';
} else {
$_nocache = 'false';
- }
+ }
$_paramsArray = array();
foreach ($_attr as $_key => $_value) {
if (is_int($_key)) {
$_paramsArray[] = "$_key=>$_value";
} else {
$_paramsArray[] = "'$_key'=>$_value";
- }
+ }
}
if (isset($compiler->template->properties['function'][$_name]['parameter'])) {
foreach ($compiler->template->properties['function'][$_name]['parameter'] as $_key => $_value) {
$_paramsArray[] = "$_key=>$_value";
} else {
$_paramsArray[] = "'$_key'=>$_value";
- }
- }
- }
- } elseif (isset($this->smarty->template_functions[$_name]['parameter'])) {
- foreach ($this->smarty->template_functions[$_name]['parameter'] as $_key => $_value) {
+ }
+ }
+ }
+ } elseif (isset($compiler->smarty->template_functions[$_name]['parameter'])) {
+ foreach ($compiler->smarty->template_functions[$_name]['parameter'] as $_key => $_value) {
if (!isset($_attr[$_key])) {
if (is_int($_key)) {
$_paramsArray[] = "$_key=>$_value";
} else {
$_paramsArray[] = "'$_key'=>$_value";
- }
- }
- }
+ }
+ }
+ }
}
//varibale name?
- if (!(strpos($_name,'$')===false)) {
- $call_cache = $_name;
- $call_function = '$tmp = "smarty_template_function_".'.$_name.'; $tmp';
- } else {
- $_name = trim($_name, "'\"");
- $call_cache = "'{$_name}'";
- $call_function = 'smarty_template_function_'.$_name;
+ if (!(strpos($_name, '$') === false)) {
+ $call_cache = $_name;
+ $call_function = '$tmp = "smarty_template_function_".' . $_name . '; $tmp';
+ } else {
+ $_name = trim($_name, "'\"");
+ $call_cache = "'{$_name}'";
+ $call_function = 'smarty_template_function_' . $_name;
}
-
+
$_params = 'array(' . implode(",", $_paramsArray) . ')';
- $_hash = str_replace('-','_',$compiler->template->properties['nocache_hash']);
+ $_hash = str_replace('-', '_', $compiler->template->properties['nocache_hash']);
// was there an assign attribute
if (isset($_assign)) {
if ($compiler->template->caching) {
$_output = "<?php ob_start(); Smarty_Internal_Function_Call_Handler::call ({$call_cache},\$_smarty_tpl,{$_params},'{$_hash}',{$_nocache}); \$_smarty_tpl->assign({$_assign}, ob_get_clean());?>\n";
} else {
$_output = "<?php ob_start(); {$call_function}(\$_smarty_tpl,{$_params}); \$_smarty_tpl->assign({$_assign}, ob_get_clean());?>\n";
- }
+ }
} else {
if ($compiler->template->caching) {
$_output = "<?php Smarty_Internal_Function_Call_Handler::call ({$call_cache},\$_smarty_tpl,{$_params},'{$_hash}',{$_nocache});?>\n";
} else {
$_output = "<?php {$call_function}(\$_smarty_tpl,{$_params});?>\n";
- }
- }
+ }
+ }
return $_output;
- }
-}
+ }
+
+}
?>
\ No newline at end of file
diff --git a/gosa-core/include/smarty/sysplugins/smarty_internal_compile_capture.php b/gosa-core/include/smarty/sysplugins/smarty_internal_compile_capture.php
index 74ade6804288aebfcfe1ed4e64b4eb0f5359577e..fe54b36b8d063642176a9d583f742880e633768b 100644 (file)
<?php
/**
* Smarty Internal Plugin Compile Capture
- *
+ *
* Compiles the {capture} tag
- *
+ *
* @package Smarty
* @subpackage Compiler
- * @author Uwe Tews
+ * @author Uwe Tews
*/
/**
* Smarty Internal Plugin Compile Capture Class
+ *
+ * @package Smarty
+ * @subpackage Compiler
*/
class Smarty_Internal_Compile_Capture extends Smarty_Internal_CompileBase {
- // attribute definitions
+
+ /**
+ * Attribute definition: Overwrites base class.
+ *
+ * @var array
+ * @see Smarty_Internal_CompileBase
+ */
public $shorttag_order = array('name');
- public $optional_attributes = array('name', 'assign', 'append');
+ /**
+ * Attribute definition: Overwrites base class.
+ *
+ * @var array
+ * @see Smarty_Internal_CompileBase
+ */
+ public $optional_attributes = array('name', 'assign', 'append');
/**
* Compiles code for the {capture} tag
- *
- * @param array $args array with attributes from parser
+ *
+ * @param array $args array with attributes from parser
* @param object $compiler compiler object
* @return string compiled code
*/
public function compile($args, $compiler)
{
- $this->compiler = $compiler;
// check and get attributes
- $_attr = $this->_get_attributes($args);
+ $_attr = $this->getAttributes($compiler, $args);
$buffer = isset($_attr['name']) ? $_attr['name'] : "'default'";
- $assign = isset($_attr['assign']) ? $_attr['assign'] : null;
- $append = isset($_attr['append']) ? $_attr['append'] : null;
+ $assign = isset($_attr['assign']) ? $_attr['assign'] : 'null';
+ $append = isset($_attr['append']) ? $_attr['append'] : 'null';
- $this->compiler->_capture_stack[] = array($buffer, $assign, $append, $this->compiler->nocache);
+ $compiler->_capture_stack[] = array($buffer, $assign, $append, $compiler->nocache);
// maybe nocache because of nocache variables
- $this->compiler->nocache = $this->compiler->nocache | $this->compiler->tag_nocache;
- $_output = "<?php ob_start(); ?>";
+ $compiler->nocache = $compiler->nocache | $compiler->tag_nocache;
+ $_output = "<?php \$_smarty_tpl->_capture_stack[] = array($buffer, $assign, $append); ob_start(); ?>";
return $_output;
- }
-}
+ }
+
+}
/**
* Smarty Internal Plugin Compile Captureclose Class
+ *
+ * @package Smarty
+ * @subpackage Compiler
*/
class Smarty_Internal_Compile_CaptureClose extends Smarty_Internal_CompileBase {
+
/**
* Compiles code for the {/capture} tag
- *
- * @param array $args array with attributes from parser
+ *
+ * @param array $args array with attributes from parser
* @param object $compiler compiler object
* @return string compiled code
*/
public function compile($args, $compiler)
{
- $this->compiler = $compiler;
// check and get attributes
- $_attr = $this->_get_attributes($args);
+ $_attr = $this->getAttributes($compiler, $args);
// must endblock be nocache?
- if ($this->compiler->nocache) {
- $this->compiler->tag_nocache = true;
- }
+ if ($compiler->nocache) {
+ $compiler->tag_nocache = true;
+ }
- list($buffer, $assign, $append, $this->compiler->nocache) = array_pop($this->compiler->_capture_stack);
+ list($buffer, $assign, $append, $compiler->nocache) = array_pop($compiler->_capture_stack);
- $_output = "<?php ";
- if (isset($assign)) {
- $_output .= " \$_smarty_tpl->assign($assign, ob_get_contents());";
- }
- if (isset($append)) {
- $_output .= " \$_smarty_tpl->append($append, ob_get_contents());";
- }
- $_output .= " Smarty::\$_smarty_vars['capture'][$buffer]=ob_get_clean();?>";
+ $_output = "<?php list(\$_capture_buffer, \$_capture_assign, \$_capture_append) = array_pop(\$_smarty_tpl->_capture_stack);\n";
+ $_output .= "if (!empty(\$_capture_buffer)) {\n";
+ $_output .= " if (isset(\$_capture_assign)) \$_smarty_tpl->assign(\$_capture_assign, ob_get_contents());\n";
+ $_output .= " if (isset( \$_capture_append)) \$_smarty_tpl->append( \$_capture_append, ob_get_contents());\n";
+ $_output .= " Smarty::\$_smarty_vars['capture'][\$_capture_buffer]=ob_get_clean();\n";
+ $_output .= "} else \$_smarty_tpl->capture_error();?>";
return $_output;
- }
-}
+ }
+
+}
?>
\ No newline at end of file
diff --git a/gosa-core/include/smarty/sysplugins/smarty_internal_compile_config_load.php b/gosa-core/include/smarty/sysplugins/smarty_internal_compile_config_load.php
index 733e1ac5d2782f5f6fa080ea1c3b567342488b8a..deaa052c52b69d2dbc15672a2ba104de5243c160 100644 (file)
<?php
-
/**
* Smarty Internal Plugin Compile Config Load
- *
+ *
* Compiles the {config load} tag
- *
+ *
* @package Smarty
* @subpackage Compiler
- * @author Uwe Tews
+ * @author Uwe Tews
*/
/**
* Smarty Internal Plugin Compile Config Load Class
+ *
+ * @package Smarty
+ * @subpackage Compiler
*/
class Smarty_Internal_Compile_Config_Load extends Smarty_Internal_CompileBase {
- // attribute definitions
+
+ /**
+ * Attribute definition: Overwrites base class.
+ *
+ * @var array
+ * @see Smarty_Internal_CompileBase
+ */
public $required_attributes = array('file');
+ /**
+ * Attribute definition: Overwrites base class.
+ *
+ * @var array
+ * @see Smarty_Internal_CompileBase
+ */
public $shorttag_order = array('file','section');
- public $optional_attributes = array('section', 'scope');
+ /**
+ * Attribute definition: Overwrites base class.
+ *
+ * @var array
+ * @see Smarty_Internal_CompileBase
+ */
+ public $optional_attributes = array('section', 'scope');
/**
* Compiles code for the {config_load} tag
- *
- * @param array $args array with attributes from parser
+ *
+ * @param array $args array with attributes from parser
* @param object $compiler compiler object
* @return string compiled code
*/
public function compile($args, $compiler)
{
- $this->compiler = $compiler;
+ static $_is_legal_scope = array('local' => true,'parent' => true,'root' => true,'global' => true);
// check and get attributes
- $_attr = $this->_get_attributes($args);
-
+ $_attr = $this->getAttributes($compiler, $args);
+
if ($_attr['nocache'] === true) {
- $this->compiler->trigger_template_error('nocache option not allowed', $this->compiler->lex->taglineno);
+ $compiler->trigger_template_error('nocache option not allowed', $compiler->lex->taglineno);
}
-
+
// save posible attributes
$conf_file = $_attr['file'];
if (isset($_attr['section'])) {
$section = $_attr['section'];
} else {
$section = 'null';
- }
+ }
$scope = 'local';
// scope setup
if (isset($_attr['scope'])) {
$_attr['scope'] = trim($_attr['scope'], "'\"");
- if (in_array($_attr['scope'],array('local','parent','root','global'))) {
+ if (isset($_is_legal_scope[$_attr['scope']])) {
$scope = $_attr['scope'];
} else {
- $this->compiler->trigger_template_error('illegal value for "scope" attribute', $this->compiler->lex->taglineno);
- }
- }
+ $compiler->trigger_template_error('illegal value for "scope" attribute', $compiler->lex->taglineno);
+ }
+ }
// create config object
$_output = "<?php \$_config = new Smarty_Internal_Config($conf_file, \$_smarty_tpl->smarty, \$_smarty_tpl);";
$_output .= "\$_config->loadConfigVars($section, '$scope'); ?>";
return $_output;
- }
-}
+ }
+
+}
?>
\ No newline at end of file
diff --git a/gosa-core/include/smarty/sysplugins/smarty_internal_compile_continue.php b/gosa-core/include/smarty/sysplugins/smarty_internal_compile_continue.php
index 7d79667328e9bdecce7704ffd2d2697918ccec3a..4082a93b37d94fba4a0a3702c6ad3207cbf70499 100644 (file)
<?php\r
-\r
/**\r
* Smarty Internal Plugin Compile Continue\r
- * \r
+ *\r
* Compiles the {continue} tag\r
- * \r
+ *\r
* @package Smarty\r
* @subpackage Compiler\r
- * @author Uwe Tews \r
+ * @author Uwe Tews\r
*/\r
+\r
/**\r
* Smarty Internal Plugin Compile Continue Class\r
+ *\r
+ * @package Smarty\r
+ * @subpackage Compiler\r
*/\r
class Smarty_Internal_Compile_Continue extends Smarty_Internal_CompileBase {\r
- // attribute definitions\r
- public $optional_attributes = array('levels'); \r
+\r
+ /**\r
+ * Attribute definition: Overwrites base class.\r
+ *\r
+ * @var array\r
+ * @see Smarty_Internal_CompileBase\r
+ */\r
+ public $optional_attributes = array('levels');\r
+ /**\r
+ * Attribute definition: Overwrites base class.\r
+ *\r
+ * @var array\r
+ * @see Smarty_Internal_CompileBase\r
+ */\r
public $shorttag_order = array('levels');\r
\r
/**\r
* Compiles code for the {continue} tag\r
- * \r
- * @param array $args array with attributes from parser\r
- * @param object $compiler compiler object\r
- * @param array $parameter array with compilation parameter\r
+ *\r
+ * @param array $args array with attributes from parser\r
+ * @param object $compiler compiler object\r
+ * @param array $parameter array with compilation parameter\r
* @return string compiled code\r
*/\r
public function compile($args, $compiler, $parameter)\r
{\r
- $this->compiler = $compiler;\r
- $this->smarty = $compiler->smarty;\r
+ static $_is_loopy = array('for' => true, 'foreach' => true, 'while' => true, 'section' => true);\r
// check and get attributes\r
- $_attr = $this->_get_attributes($args);\r
+ $_attr = $this->getAttributes($compiler, $args);\r
\r
if ($_attr['nocache'] === true) {\r
- $this->compiler->trigger_template_error('nocache option not allowed', $this->compiler->lex->taglineno);\r
+ $compiler->trigger_template_error('nocache option not allowed', $compiler->lex->taglineno);\r
}\r
\r
if (isset($_attr['levels'])) {\r
if (!is_numeric($_attr['levels'])) {\r
- $this->compiler->trigger_template_error('level attribute must be a numeric constant', $this->compiler->lex->taglineno);\r
- } \r
+ $compiler->trigger_template_error('level attribute must be a numeric constant', $compiler->lex->taglineno);\r
+ }\r
$_levels = $_attr['levels'];\r
} else {\r
$_levels = 1;\r
- } \r
+ }\r
$level_count = $_levels;\r
$stack_count = count($compiler->_tag_stack) - 1;\r
while ($level_count > 0 && $stack_count >= 0) {\r
- if (in_array($compiler->_tag_stack[$stack_count][0], array('for', 'foreach', 'while', 'section'))) {\r
+ if (isset($_is_loopy[$compiler->_tag_stack[$stack_count][0]])) {\r
$level_count--;\r
- } \r
+ }\r
$stack_count--;\r
- } \r
+ }\r
if ($level_count != 0) {\r
- $this->compiler->trigger_template_error("cannot continue {$_levels} level(s)", $this->compiler->lex->taglineno);\r
- } \r
- // this tag does not return compiled code\r
- $this->compiler->has_code = true;\r
+ $compiler->trigger_template_error("cannot continue {$_levels} level(s)", $compiler->lex->taglineno);\r
+ }\r
+ $compiler->has_code = true;\r
return "<?php continue {$_levels}?>";\r
- } \r
-} \r
+ }\r
+\r
+}\r
\r
?>
\ No newline at end of file
diff --git a/gosa-core/include/smarty/sysplugins/smarty_internal_compile_debug.php b/gosa-core/include/smarty/sysplugins/smarty_internal_compile_debug.php
index f6189e7e1cc24904574d3f6bf5dc7f1687911ce7..f50c7aee2145672b427625725f6b9ec2bab4762c 100644 (file)
-<?php
+<?php
/**
* Smarty Internal Plugin Compile Debug
*
- * Compiles the {debug} tag
- * It opens a window the the Smarty Debugging Console
+ * Compiles the {debug} tag.
+ * It opens a window the the Smarty Debugging Console.
+ *
* @package Smarty
* @subpackage Compiler
* @author Uwe Tews
/**
* Smarty Internal Plugin Compile Debug Class
- */
+ *
+ * @package Smarty
+ * @subpackage Compiler
+ */
class Smarty_Internal_Compile_Debug extends Smarty_Internal_CompileBase {
+
/**
* Compiles code for the {debug} tag
- *
- * @param array $args array with attributes from parser
+ *
+ * @param array $args array with attributes from parser
* @param object $compiler compiler object
* @return string compiled code
*/
public function compile($args, $compiler)
{
- $this->compiler = $compiler;
// check and get attributes
- $_attr = $this->_get_attributes($args);
+ $_attr = $this->getAttributes($compiler, $args);
- // compile always as nocache
- $this->compiler->tag_nocache = true;
+ // compile always as nocache
+ $compiler->tag_nocache = true;
// display debug template
$_output = "<?php \$_smarty_tpl->smarty->loadPlugin('Smarty_Internal_Debug'); Smarty_Internal_Debug::display_debug(\$_smarty_tpl); ?>";
return $_output;
- }
-}
+ }
+
+}
?>
\ No newline at end of file
diff --git a/gosa-core/include/smarty/sysplugins/smarty_internal_compile_eval.php b/gosa-core/include/smarty/sysplugins/smarty_internal_compile_eval.php
index aa3c25807751b79a6096155e5c0695be5c5b0df2..6cf481b505fa9f80be4bb5ad54f2b8f283a268f7 100644 (file)
<?php
-
/**
* Smarty Internal Plugin Compile Eval
*
- * Compiles the {eval} tag
+ * Compiles the {eval} tag.
+ *
* @package Smarty
* @subpackage Compiler
* @author Uwe Tews
/**
* Smarty Internal Plugin Compile Eval Class
- */
+ *
+ * @package Smarty
+ * @subpackage Compiler
+ */
class Smarty_Internal_Compile_Eval extends Smarty_Internal_CompileBase {
+
+ /**
+ * Attribute definition: Overwrites base class.
+ *
+ * @var array
+ * @see Smarty_Internal_CompileBase
+ */
public $required_attributes = array('var');
- public $optional_attributes = array('assign');
+ /**
+ * Attribute definition: Overwrites base class.
+ *
+ * @var array
+ * @see Smarty_Internal_CompileBase
+ */
+ public $optional_attributes = array('assign');
+ /**
+ * Attribute definition: Overwrites base class.
+ *
+ * @var array
+ * @see Smarty_Internal_CompileBase
+ */
public $shorttag_order = array('var','assign');
/**
* Compiles code for the {eval} tag
- *
- * @param array $args array with attributes from parser
+ *
+ * @param array $args array with attributes from parser
* @param object $compiler compiler object
* @return string compiled code
*/
public function compile($args, $compiler)
{
- $this->compiler = $compiler;
$this->required_attributes = array('var');
- $this->optional_attributes = array('assign');
+ $this->optional_attributes = array('assign');
// check and get attributes
- $_attr = $this->_get_attributes($args);
+ $_attr = $this->getAttributes($compiler, $args);
if (isset($_attr['assign'])) {
// output will be stored in a smarty variable instead of beind displayed
$_assign = $_attr['assign'];
}
-
+
// create template object
- $_output = "\$_template = new {$compiler->smarty->template_class}('eval:'.".$_attr['var'].", \$_smarty_tpl->smarty, \$_smarty_tpl);";
- //was there an assign attribute?
+ $_output = "\$_template = new {$compiler->smarty->template_class}('eval:'.".$_attr['var'].", \$_smarty_tpl->smarty, \$_smarty_tpl);";
+ //was there an assign attribute?
if (isset($_assign)) {
- $_output .= "\$_smarty_tpl->assign($_assign,\$_template->getRenderedTemplate());";
+ $_output .= "\$_smarty_tpl->assign($_assign,\$_template->fetch());";
} else {
- $_output .= "echo \$_template->getRenderedTemplate();";
- }
+ $_output .= "echo \$_template->fetch();";
+ }
return "<?php $_output ?>";
- }
-}
+ }
+
+}
?>
\ No newline at end of file
diff --git a/gosa-core/include/smarty/sysplugins/smarty_internal_compile_extends.php b/gosa-core/include/smarty/sysplugins/smarty_internal_compile_extends.php
index b76cf98d4f2a2df6ce1efbbe19b8854df9f6f25a..8a4deeed88ce10a3c8824bfa0a77a437c86e4460 100644 (file)
<?php
/**
- * Smarty Internal Plugin Compile extend
- *
- * Compiles the {extends} tag
- *
- * @package Smarty
- * @subpackage Compiler
- * @author Uwe Tews
- */
+* Smarty Internal Plugin Compile extend
+*
+* Compiles the {extends} tag
+*
+* @package Smarty
+* @subpackage Compiler
+* @author Uwe Tews
+*/
/**
- * Smarty Internal Plugin Compile extend Class
- */
+* Smarty Internal Plugin Compile extend Class
+*
+* @package Smarty
+* @subpackage Compiler
+*/
class Smarty_Internal_Compile_Extends extends Smarty_Internal_CompileBase {
- // attribute definitions
+
+ /**
+ * Attribute definition: Overwrites base class.
+ *
+ * @var array
+ * @see Smarty_Internal_CompileBase
+ */
public $required_attributes = array('file');
+ /**
+ * Attribute definition: Overwrites base class.
+ *
+ * @var array
+ * @see Smarty_Internal_CompileBase
+ */
public $shorttag_order = array('file');
/**
- * Compiles code for the {extends} tag
- *
- * @param array $args array with attributes from parser
- * @param object $compiler compiler object
- * @return string compiled code
- */
+ * Compiles code for the {extends} tag
+ *
+ * @param array $args array with attributes from parser
+ * @param object $compiler compiler object
+ * @return string compiled code
+ */
public function compile($args, $compiler)
{
- $this->compiler = $compiler;
- $this->smarty = $compiler->smarty;
- $this->_rdl = preg_quote($this->smarty->right_delimiter);
- $this->_ldl = preg_quote($this->smarty->left_delimiter);
- $filepath = $compiler->template->getTemplateFilepath();
+ static $_is_stringy = array('string' => true, 'eval' => true);
+ $this->_rdl = preg_quote($compiler->smarty->right_delimiter);
+ $this->_ldl = preg_quote($compiler->smarty->left_delimiter);
+ $filepath = $compiler->template->source->filepath;
// check and get attributes
- $_attr = $this->_get_attributes($args);
+ $_attr = $this->getAttributes($compiler, $args);
if ($_attr['nocache'] === true) {
- $this->compiler->trigger_template_error('nocache option not allowed', $this->compiler->lex->taglineno);
+ $compiler->trigger_template_error('nocache option not allowed', $compiler->lex->taglineno);
}
$_smarty_tpl = $compiler->template;
$include_file = null;
- if (strpos($_attr['file'],'$_tmp') !== false || strpos($_attr['file'],'$_smarty_tpl') !== false || strpos($_attr['file'],'::') !== false) {
- $this->compiler->trigger_template_error('a variable file attribute is illegal', $this->compiler->lex->taglineno);
+ if (strpos($_attr['file'], '$_tmp') !== false) {
+ $compiler->trigger_template_error('illegal value for file attribute', $compiler->lex->taglineno);
}
eval('$include_file = ' . $_attr['file'] . ';');
// create template object
- $_template = new $compiler->smarty->template_class($include_file, $this->smarty, $compiler->template);
+ $_template = new $compiler->smarty->template_class($include_file, $compiler->smarty, $compiler->template);
// save file dependency
- if (in_array($_template->resource_type,array('eval','string'))) {
- $template_sha1 = sha1($include_file);
- } else {
- $template_sha1 = sha1($_template->getTemplateFilepath());
- }
+ if (isset($_is_stringy[$_template->source->type])) {
+ $template_sha1 = sha1($include_file);
+ } else {
+ $template_sha1 = sha1($_template->source->filepath);
+ }
if (isset($compiler->template->properties['file_dependency'][$template_sha1])) {
- $this->compiler->trigger_template_error("illegal recursive call of \"{$include_file}\"",$compiler->lex->line-1);
+ $compiler->trigger_template_error("illegal recursive call of \"{$include_file}\"", $compiler->lex->line - 1);
}
- $compiler->template->properties['file_dependency'][$template_sha1] = array($_template->getTemplateFilepath(), $_template->getTemplateTimestamp(),$_template->resource_type);
- $_content = substr($compiler->template->template_source,$compiler->lex->counter-1);
+ $compiler->template->properties['file_dependency'][$template_sha1] = array($_template->source->filepath, $_template->source->timestamp, $_template->source->type);
+ $_content = substr($compiler->template->source->content, $compiler->lex->counter - 1);
if (preg_match_all("!({$this->_ldl}block\s(.+?){$this->_rdl})!", $_content, $s) !=
- preg_match_all("!({$this->_ldl}/block{$this->_rdl})!", $_content, $c)) {
- $this->compiler->trigger_template_error('unmatched {block} {/block} pairs');
+ preg_match_all("!({$this->_ldl}/block{$this->_rdl})!", $_content, $c)) {
+ $compiler->trigger_template_error('unmatched {block} {/block} pairs');
}
- preg_match_all("!{$this->_ldl}block\s(.+?){$this->_rdl}|{$this->_ldl}/block{$this->_rdl}!", $_content, $_result, PREG_OFFSET_CAPTURE);
+ preg_match_all("!{$this->_ldl}block\s(.+?){$this->_rdl}|{$this->_ldl}/block{$this->_rdl}|{$this->_ldl}\*([\S\s]*?)\*{$this->_rdl}!", $_content, $_result, PREG_OFFSET_CAPTURE);
$_result_count = count($_result[0]);
$_start = 0;
- while ($_start < $_result_count) {
+ while ($_start+1 < $_result_count) {
$_end = 0;
$_level = 1;
+ if (substr($_result[0][$_start][0],0,strlen($compiler->smarty->left_delimiter)+1) == $compiler->smarty->left_delimiter.'*') {
+ $_start++;
+ continue;
+ }
while ($_level != 0) {
$_end++;
+ if (substr($_result[0][$_start + $_end][0],0,strlen($compiler->smarty->left_delimiter)+1) == $compiler->smarty->left_delimiter.'*') {
+ continue;
+ }
if (!strpos($_result[0][$_start + $_end][0], '/')) {
$_level++;
} else {
$_level--;
}
}
- $_block_content = str_replace($this->smarty->left_delimiter . '$smarty.block.parent' . $this->smarty->right_delimiter, '%%%%SMARTY_PARENT%%%%',
- substr($_content, $_result[0][$_start][1] + strlen($_result[0][$_start][0]), $_result[0][$_start + $_end][1] - $_result[0][$_start][1] - + strlen($_result[0][$_start][0])));
+ $_block_content = str_replace($compiler->smarty->left_delimiter . '$smarty.block.parent' . $compiler->smarty->right_delimiter, '%%%%SMARTY_PARENT%%%%',
+ substr($_content, $_result[0][$_start][1] + strlen($_result[0][$_start][0]), $_result[0][$_start + $_end][1] - $_result[0][$_start][1] - + strlen($_result[0][$_start][0])));
Smarty_Internal_Compile_Block::saveBlockData($_block_content, $_result[0][$_start][0], $compiler->template, $filepath);
$_start = $_start + $_end + 1;
}
- $compiler->template->template_source = $_template->getTemplateSource();
- $compiler->template->template_filepath = $_template->getTemplateFilepath();
+ if ($_template->source->type == 'extends') {
+ $_template->block_data = $compiler->template->block_data;
+ }
+ $compiler->template->source->content = $_template->source->content;
+ if ($_template->source->type == 'extends') {
+ $compiler->template->block_data = $_template->block_data;
+ foreach ($_template->source->components as $key => $component) {
+ $compiler->template->properties['file_dependency'][$key] = array($component->filepath, $component->timestamp, $component->type);
+ }
+ }
+ $compiler->template->source->filepath = $_template->source->filepath;
$compiler->abort_and_recompile = true;
return '';
}
}
+
?>
\ No newline at end of file
diff --git a/gosa-core/include/smarty/sysplugins/smarty_internal_compile_for.php b/gosa-core/include/smarty/sysplugins/smarty_internal_compile_for.php
index 2e5d0a11f9197f61f7896d1690698c0638c5f043..057f4fb7955a7a063d784aa51680cd7f160702a6 100644 (file)
<?php
/**
* Smarty Internal Plugin Compile For
- *
+ *
* Compiles the {for} {forelse} {/for} tags
- *
+ *
* @package Smarty
* @subpackage Compiler
- * @author Uwe Tews
+ * @author Uwe Tews
*/
/**
* Smarty Internal Plugin Compile For Class
+ *
+ * @package Smarty
+ * @subpackage Compiler
*/
class Smarty_Internal_Compile_For extends Smarty_Internal_CompileBase {
+
/**
* Compiles code for the {for} tag
- *
+ *
* Smarty 3 does implement two different sytaxes:
- *
+ *
* - {for $var in $array}
* For looping over arrays or iterators
- *
+ *
* - {for $x=0; $x<$y; $x++}
* For general loops
- *
- * The parser is gereration different sets of attribute by which this compiler can
+ *
+ * The parser is gereration different sets of attribute by which this compiler can
* determin which syntax is used.
- *
- * @param array $args array with attributes from parser
- * @param object $compiler compiler object
- * @param array $parameter array with compilation parameter
+ *
+ * @param array $args array with attributes from parser
+ * @param object $compiler compiler object
+ * @param array $parameter array with compilation parameter
* @return string compiled code
*/
public function compile($args, $compiler, $parameter)
{
- $this->compiler = $compiler;
if ($parameter == 0) {
- $this->required_attributes = array('start','to');
- $this->optional_attributes = array('max','step');
+ $this->required_attributes = array('start', 'to');
+ $this->optional_attributes = array('max', 'step');
} else {
- $this->required_attributes = array('start','ifexp','var','step');
- $this->optional_attributes = array();
+ $this->required_attributes = array('start', 'ifexp', 'var', 'step');
+ $this->optional_attributes = array();
}
// check and get attributes
- $_attr = $this->_get_attributes($args);
-
- $local_vars = array();
+ $_attr = $this->getAttributes($compiler, $args);
$output = "<?php ";
if ($parameter == 1) {
foreach ($_attr['start'] as $_statement) {
$output .= " \$_smarty_tpl->tpl_vars[$_statement[var]] = new Smarty_Variable;";
$output .= " \$_smarty_tpl->tpl_vars[$_statement[var]]->value = $_statement[value];\n";
- $compiler->local_var[$_statement['var']] = true;
- $local_vars[] = $_statement['var'];
- }
+ }
$output .= " if ($_attr[ifexp]){ for (\$_foo=true;$_attr[ifexp]; \$_smarty_tpl->tpl_vars[$_attr[var]]->value$_attr[step]){\n";
} else {
$_statement = $_attr['start'];
$output .= "\$_smarty_tpl->tpl_vars[$_statement[var]] = new Smarty_Variable;";
- $compiler->local_var[$_statement['var']] = true;
- $local_vars[] = $_statement['var'];
if (isset($_attr['step'])) {
$output .= "\$_smarty_tpl->tpl_vars[$_statement[var]]->step = $_attr[step];";
} else {
$output .= "\$_smarty_tpl->tpl_vars[$_statement[var]]->step = 1;";
- }
+ }
if (isset($_attr['max'])) {
$output .= "\$_smarty_tpl->tpl_vars[$_statement[var]]->total = (int)min(ceil((\$_smarty_tpl->tpl_vars[$_statement[var]]->step > 0 ? $_attr[to]+1 - ($_statement[value]) : $_statement[value]-($_attr[to])+1)/abs(\$_smarty_tpl->tpl_vars[$_statement[var]]->step)),$_attr[max]);\n";
} else {
$output .= "\$_smarty_tpl->tpl_vars[$_statement[var]]->total = (int)ceil((\$_smarty_tpl->tpl_vars[$_statement[var]]->step > 0 ? $_attr[to]+1 - ($_statement[value]) : $_statement[value]-($_attr[to])+1)/abs(\$_smarty_tpl->tpl_vars[$_statement[var]]->step));\n";
- }
+ }
$output .= "if (\$_smarty_tpl->tpl_vars[$_statement[var]]->total > 0){\n";
$output .= "for (\$_smarty_tpl->tpl_vars[$_statement[var]]->value = $_statement[value], \$_smarty_tpl->tpl_vars[$_statement[var]]->iteration = 1;\$_smarty_tpl->tpl_vars[$_statement[var]]->iteration <= \$_smarty_tpl->tpl_vars[$_statement[var]]->total;\$_smarty_tpl->tpl_vars[$_statement[var]]->value += \$_smarty_tpl->tpl_vars[$_statement[var]]->step, \$_smarty_tpl->tpl_vars[$_statement[var]]->iteration++){\n";
$output .= "\$_smarty_tpl->tpl_vars[$_statement[var]]->first = \$_smarty_tpl->tpl_vars[$_statement[var]]->iteration == 1;";
$output .= "\$_smarty_tpl->tpl_vars[$_statement[var]]->last = \$_smarty_tpl->tpl_vars[$_statement[var]]->iteration == \$_smarty_tpl->tpl_vars[$_statement[var]]->total;";
- }
+ }
$output .= "?>";
- $this->_open_tag('for', array('for', $this->compiler->nocache, $local_vars));
+ $this->openTag($compiler, 'for', array('for', $compiler->nocache));
// maybe nocache because of nocache variables
- $this->compiler->nocache = $this->compiler->nocache | $this->compiler->tag_nocache;
+ $compiler->nocache = $compiler->nocache | $compiler->tag_nocache;
// return compiled code
return $output;
- }
-}
+ }
+
+}
/**
* Smarty Internal Plugin Compile Forelse Class
+ *
+ * @package Smarty
+ * @subpackage Compiler
*/
class Smarty_Internal_Compile_Forelse extends Smarty_Internal_CompileBase {
+
/**
* Compiles code for the {forelse} tag
- *
- * @param array $args array with attributes from parser
- * @param object $compiler compiler object
- * @param array $parameter array with compilation parameter
+ *
+ * @param array $args array with attributes from parser
+ * @param object $compiler compiler object
+ * @param array $parameter array with compilation parameter
* @return string compiled code
*/
public function compile($args, $compiler, $parameter)
{
- $this->compiler = $compiler;
// check and get attributes
- $_attr = $this->_get_attributes($args);
+ $_attr = $this->getAttributes($compiler, $args);
- list($_open_tag, $nocache, $local_vars) = $this->_close_tag(array('for'));
- $this->_open_tag('forelse', array('forelse', $nocache, $local_vars));
+ list($openTag, $nocache) = $this->closeTag($compiler, array('for'));
+ $this->openTag($compiler, 'forelse', array('forelse', $nocache));
return "<?php }} else { ?>";
- }
-}
+ }
+
+}
/**
* Smarty Internal Plugin Compile Forclose Class
+ *
+ * @package Smarty
+ * @subpackage Compiler
*/
class Smarty_Internal_Compile_Forclose extends Smarty_Internal_CompileBase {
+
/**
* Compiles code for the {/for} tag
- *
- * @param array $args array with attributes from parser
- * @param object $compiler compiler object
- * @param array $parameter array with compilation parameter
+ *
+ * @param array $args array with attributes from parser
+ * @param object $compiler compiler object
+ * @param array $parameter array with compilation parameter
* @return string compiled code
*/
public function compile($args, $compiler, $parameter)
{
- $this->compiler = $compiler;
// check and get attributes
- $_attr = $this->_get_attributes($args);
+ $_attr = $this->getAttributes($compiler, $args);
// must endblock be nocache?
- if ($this->compiler->nocache) {
- $this->compiler->tag_nocache = true;
- }
+ if ($compiler->nocache) {
+ $compiler->tag_nocache = true;
+ }
- list($_open_tag, $this->compiler->nocache, $local_vars) = $this->_close_tag(array('for', 'forelse'));
+ list($openTag, $compiler->nocache) = $this->closeTag($compiler, array('for', 'forelse'));
- foreach ($local_vars as $var) {
- unset($compiler->local_var[$var]);
- }
- if ($_open_tag == 'forelse')
+ if ($openTag == 'forelse') {
return "<?php } ?>";
- else
+ } else {
return "<?php }} ?>";
- }
-}
+ }
+ }
+
+}
?>
\ No newline at end of file
diff --git a/gosa-core/include/smarty/sysplugins/smarty_internal_compile_foreach.php b/gosa-core/include/smarty/sysplugins/smarty_internal_compile_foreach.php
index 6ad1e07ef3d64a32f7f285219f717380e99b6353..1354c89d534a273b5dcf52e2d0c006c038df5f83 100644 (file)
<?php
/**
* Smarty Internal Plugin Compile Foreach
- *
+ *
* Compiles the {foreach} {foreachelse} {/foreach} tags
- *
+ *
* @package Smarty
* @subpackage Compiler
- * @author Uwe Tews
+ * @author Uwe Tews
*/
/**
* Smarty Internal Plugin Compile Foreach Class
+ *
+ * @package Smarty
+ * @subpackage Compiler
*/
class Smarty_Internal_Compile_Foreach extends Smarty_Internal_CompileBase {
- // attribute definitions
+ /**
+ * Attribute definition: Overwrites base class.
+ *
+ * @var array
+ * @see Smarty_Internal_CompileBase
+ */
public $required_attributes = array('from', 'item');
- public $optional_attributes = array('name', 'key');
+ /**
+ * Attribute definition: Overwrites base class.
+ *
+ * @var array
+ * @see Smarty_Internal_CompileBase
+ */
+ public $optional_attributes = array('name', 'key');
+ /**
+ * Attribute definition: Overwrites base class.
+ *
+ * @var array
+ * @see Smarty_Internal_CompileBase
+ */
public $shorttag_order = array('from','item','key','name');
/**
* Compiles code for the {foreach} tag
- *
- * @param array $args array with attributes from parser
- * @param object $compiler compiler object
- * @param array $parameter array with compilation parameter
+ *
+ * @param array $args array with attributes from parser
+ * @param object $compiler compiler object
+ * @param array $parameter array with compilation parameter
* @return string compiled code
*/
public function compile($args, $compiler, $parameter)
{
- $this->compiler = $compiler;
- $tpl = $compiler->template;
+ $tpl = $compiler->template;
// check and get attributes
- $_attr = $this->_get_attributes($args);
+ $_attr = $this->getAttributes($compiler, $args);
$from = $_attr['from'];
$item = $_attr['item'];
-
- if (substr_compare("\$_smarty_tpl->getVariable($item)", $from,0, strlen("\$_smarty_tpl->getVariable($item)")) == 0) {
- $this->compiler->trigger_template_error("item variable {$item} may not be the same variable as at 'from'", $this->compiler->lex->taglineno);
- }
+ if (!strncmp("\$_smarty_tpl->tpl_vars[$item]", $from, strlen($item) + 24)) {
+ $compiler->trigger_template_error("item variable {$item} may not be the same variable as at 'from'", $compiler->lex->taglineno);
+ }
if (isset($_attr['key'])) {
$key = $_attr['key'];
} else {
$key = null;
- }
+ }
- $this->_open_tag('foreach', array('foreach', $this->compiler->nocache, $item, $key));
+ $this->openTag($compiler, 'foreach', array('foreach', $compiler->nocache, $item, $key));
// maybe nocache because of nocache variables
- $this->compiler->nocache = $this->compiler->nocache | $this->compiler->tag_nocache;
+ $compiler->nocache = $compiler->nocache | $compiler->tag_nocache;
if (isset($_attr['name'])) {
$name = $_attr['name'];
} else {
$name = null;
$has_name = false;
- }
- $ItemVarName = '$' . trim($item, '\'"') . '@';
+ }
+ $ItemVarName = '$' . trim($item, '\'"') . '@';
// evaluates which Smarty variables and properties have to be computed
if ($has_name) {
- $usesSmartyFirst = strpos($tpl->template_source, $SmartyVarName . 'first') !== false;
- $usesSmartyLast = strpos($tpl->template_source, $SmartyVarName . 'last') !== false;
- $usesSmartyIndex = strpos($tpl->template_source, $SmartyVarName . 'index') !== false;
- $usesSmartyIteration = strpos($tpl->template_source, $SmartyVarName . 'iteration') !== false;
- $usesSmartyShow = strpos($tpl->template_source, $SmartyVarName . 'show') !== false;
- $usesSmartyTotal = strpos($tpl->template_source, $SmartyVarName . 'total') !== false;
+ $usesSmartyFirst = strpos($tpl->source->content, $SmartyVarName . 'first') !== false;
+ $usesSmartyLast = strpos($tpl->source->content, $SmartyVarName . 'last') !== false;
+ $usesSmartyIndex = strpos($tpl->source->content, $SmartyVarName . 'index') !== false;
+ $usesSmartyIteration = strpos($tpl->source->content, $SmartyVarName . 'iteration') !== false;
+ $usesSmartyShow = strpos($tpl->source->content, $SmartyVarName . 'show') !== false;
+ $usesSmartyTotal = strpos($tpl->source->content, $SmartyVarName . 'total') !== false;
} else {
$usesSmartyFirst = false;
$usesSmartyLast = false;
$usesSmartyTotal = false;
$usesSmartyShow = false;
- }
-
- $usesPropFirst = $usesSmartyFirst || strpos($tpl->template_source, $ItemVarName . 'first') !== false;
- $usesPropLast = $usesSmartyLast || strpos($tpl->template_source, $ItemVarName . 'last') !== false;
- $usesPropIndex = $usesPropFirst || strpos($tpl->template_source, $ItemVarName . 'index') !== false;
- $usesPropIteration = $usesPropLast || strpos($tpl->template_source, $ItemVarName . 'iteration') !== false;
- $usesPropShow = strpos($tpl->template_source, $ItemVarName . 'show') !== false;
- $usesPropTotal = $usesSmartyTotal || $usesSmartyShow || $usesPropShow || $usesPropLast || strpos($tpl->template_source, $ItemVarName . 'total') !== false;
+ }
+
+ $usesPropFirst = $usesSmartyFirst || strpos($tpl->source->content, $ItemVarName . 'first') !== false;
+ $usesPropLast = $usesSmartyLast || strpos($tpl->source->content, $ItemVarName . 'last') !== false;
+ $usesPropIndex = $usesPropFirst || strpos($tpl->source->content, $ItemVarName . 'index') !== false;
+ $usesPropIteration = $usesPropLast || strpos($tpl->source->content, $ItemVarName . 'iteration') !== false;
+ $usesPropShow = strpos($tpl->source->content, $ItemVarName . 'show') !== false;
+ $usesPropTotal = $usesSmartyTotal || $usesSmartyShow || $usesPropShow || $usesPropLast || strpos($tpl->source->content, $ItemVarName . 'total') !== false;
// generate output code
$output = "<?php ";
- $output .= " \$_smarty_tpl->tpl_vars[$item] = new Smarty_Variable;\n";
- $compiler->local_var[$item] = true;
+ $output .= " \$_smarty_tpl->tpl_vars[$item] = new Smarty_Variable; \$_smarty_tpl->tpl_vars[$item]->_loop = false;\n";
if ($key != null) {
$output .= " \$_smarty_tpl->tpl_vars[$key] = new Smarty_Variable;\n";
- $compiler->local_var[$key] = true;
- }
+ }
$output .= " \$_from = $from; if (!is_array(\$_from) && !is_object(\$_from)) { settype(\$_from, 'array');}\n";
if ($usesPropTotal) {
$output .= " \$_smarty_tpl->tpl_vars[$item]->total= \$_smarty_tpl->_count(\$_from);\n";
- }
+ }
if ($usesPropIteration) {
$output .= " \$_smarty_tpl->tpl_vars[$item]->iteration=0;\n";
- }
+ }
if ($usesPropIndex) {
$output .= " \$_smarty_tpl->tpl_vars[$item]->index=-1;\n";
- }
+ }
if ($usesPropShow) {
$output .= " \$_smarty_tpl->tpl_vars[$item]->show = (\$_smarty_tpl->tpl_vars[$item]->total > 0);\n";
- }
+ }
if ($has_name) {
if ($usesSmartyTotal) {
$output .= " \$_smarty_tpl->tpl_vars['smarty']->value['foreach'][$name]['total'] = \$_smarty_tpl->tpl_vars[$item]->total;\n";
- }
+ }
if ($usesSmartyIteration) {
$output .= " \$_smarty_tpl->tpl_vars['smarty']->value['foreach'][$name]['iteration']=0;\n";
- }
+ }
if ($usesSmartyIndex) {
$output .= " \$_smarty_tpl->tpl_vars['smarty']->value['foreach'][$name]['index']=-1;\n";
- }
+ }
if ($usesSmartyShow) {
$output .= " \$_smarty_tpl->tpl_vars['smarty']->value['foreach'][$name]['show']=(\$_smarty_tpl->tpl_vars[$item]->total > 0);\n";
- }
- }
- if ($usesPropTotal) {
- $output .= "if (\$_smarty_tpl->tpl_vars[$item]->total > 0){\n";
- } else {
- $output .= "if (\$_smarty_tpl->_count(\$_from) > 0){\n";
- }
- $output .= " foreach (\$_from as \$_smarty_tpl->tpl_vars[$item]->key => \$_smarty_tpl->tpl_vars[$item]->value){\n";
+ }
+ }
+ $output .= "foreach (\$_from as \$_smarty_tpl->tpl_vars[$item]->key => \$_smarty_tpl->tpl_vars[$item]->value){\n\$_smarty_tpl->tpl_vars[$item]->_loop = true;\n";
if ($key != null) {
$output .= " \$_smarty_tpl->tpl_vars[$key]->value = \$_smarty_tpl->tpl_vars[$item]->key;\n";
- }
+ }
if ($usesPropIteration) {
$output .= " \$_smarty_tpl->tpl_vars[$item]->iteration++;\n";
- }
+ }
if ($usesPropIndex) {
$output .= " \$_smarty_tpl->tpl_vars[$item]->index++;\n";
- }
+ }
if ($usesPropFirst) {
$output .= " \$_smarty_tpl->tpl_vars[$item]->first = \$_smarty_tpl->tpl_vars[$item]->index === 0;\n";
- }
+ }
if ($usesPropLast) {
$output .= " \$_smarty_tpl->tpl_vars[$item]->last = \$_smarty_tpl->tpl_vars[$item]->iteration === \$_smarty_tpl->tpl_vars[$item]->total;\n";
- }
+ }
if ($has_name) {
if ($usesSmartyFirst) {
$output .= " \$_smarty_tpl->tpl_vars['smarty']->value['foreach'][$name]['first'] = \$_smarty_tpl->tpl_vars[$item]->first;\n";
- }
+ }
if ($usesSmartyIteration) {
$output .= " \$_smarty_tpl->tpl_vars['smarty']->value['foreach'][$name]['iteration']++;\n";
- }
+ }
if ($usesSmartyIndex) {
$output .= " \$_smarty_tpl->tpl_vars['smarty']->value['foreach'][$name]['index']++;\n";
- }
+ }
if ($usesSmartyLast) {
$output .= " \$_smarty_tpl->tpl_vars['smarty']->value['foreach'][$name]['last'] = \$_smarty_tpl->tpl_vars[$item]->last;\n";
- }
- }
+ }
+ }
$output .= "?>";
return $output;
- }
-}
+ }
+}
/**
* Smarty Internal Plugin Compile Foreachelse Class
+ *
+ * @package Smarty
+ * @subpackage Compiler
*/
class Smarty_Internal_Compile_Foreachelse extends Smarty_Internal_CompileBase {
+
/**
* Compiles code for the {foreachelse} tag
- *
- * @param array $args array with attributes from parser
+ *
+ * @param array $args array with attributes from parser
* @param object $compiler compiler object
- * @param array $parameter array with compilation parameter
+ * @param array $parameter array with compilation parameter
* @return string compiled code
*/
public function compile($args, $compiler, $parameter)
{
- $this->compiler = $compiler;
// check and get attributes
- $_attr = $this->_get_attributes($args);
+ $_attr = $this->getAttributes($compiler, $args);
- list($_open_tag, $nocache, $item, $key) = $this->_close_tag(array('foreach'));
- $this->_open_tag('foreachelse', array('foreachelse', $nocache, $item, $key));
+ list($openTag, $nocache, $item, $key) = $this->closeTag($compiler, array('foreach'));
+ $this->openTag($compiler, 'foreachelse', array('foreachelse', $nocache, $item, $key));
- return "<?php }} else { ?>";
- }
-}
+ return "<?php }\nif (!\$_smarty_tpl->tpl_vars[$item]->_loop) {\n?>";
+ }
+
+}
/**
* Smarty Internal Plugin Compile Foreachclose Class
+ *
+ * @package Smarty
+ * @subpackage Compiler
*/
class Smarty_Internal_Compile_Foreachclose extends Smarty_Internal_CompileBase {
+
/**
* Compiles code for the {/foreach} tag
- *
- * @param array $args array with attributes from parser
- * @param object $compiler compiler object
- * @param array $parameter array with compilation parameter
+ *
+ * @param array $args array with attributes from parser
+ * @param object $compiler compiler object
+ * @param array $parameter array with compilation parameter
* @return string compiled code
*/
public function compile($args, $compiler, $parameter)
{
- $this->compiler = $compiler;
// check and get attributes
- $_attr = $this->_get_attributes($args);
+ $_attr = $this->getAttributes($compiler, $args);
// must endblock be nocache?
- if ($this->compiler->nocache) {
- $this->compiler->tag_nocache = true;
- }
+ if ($compiler->nocache) {
+ $compiler->tag_nocache = true;
+ }
- list($_open_tag, $this->compiler->nocache, $item, $key) = $this->_close_tag(array('foreach', 'foreachelse'));
- unset($compiler->local_var[$item]);
- if ($key != null) {
- unset($compiler->local_var[$key]);
- }
-
- if ($_open_tag == 'foreachelse')
- return "<?php } ?>";
- else
- return "<?php }} ?>";
- }
-}
+ list($openTag, $compiler->nocache, $item, $key) = $this->closeTag($compiler, array('foreach', 'foreachelse'));
+
+ return "<?php } ?>";
+ }
+
+}
?>
\ No newline at end of file
diff --git a/gosa-core/include/smarty/sysplugins/smarty_internal_compile_function.php b/gosa-core/include/smarty/sysplugins/smarty_internal_compile_function.php
index db2409a30552150e7ea511f4a2ba52e174497b4c..876b13dee1b5457e126919df0a20165f0d5ee747 100644 (file)
<?php
/**
* Smarty Internal Plugin Compile Function
- *
+ *
* Compiles the {function} {/function} tags
- *
+ *
* @package Smarty
* @subpackage Compiler
- * @author Uwe Tews
+ * @author Uwe Tews
*/
/**
* Smarty Internal Plugin Compile Function Class
+ *
+ * @package Smarty
+ * @subpackage Compiler
*/
class Smarty_Internal_Compile_Function extends Smarty_Internal_CompileBase {
- // attribute definitions
+
+ /**
+ * Attribute definition: Overwrites base class.
+ *
+ * @var array
+ * @see Smarty_Internal_CompileBase
+ */
public $required_attributes = array('name');
+ /**
+ * Attribute definition: Overwrites base class.
+ *
+ * @var array
+ * @see Smarty_Internal_CompileBase
+ */
public $shorttag_order = array('name');
- public $optional_attributes = array('_any');
+ /**
+ * Attribute definition: Overwrites base class.
+ *
+ * @var array
+ * @see Smarty_Internal_CompileBase
+ */
+ public $optional_attributes = array('_any');
/**
* Compiles code for the {function} tag
- *
+ *
* @param array $args array with attributes from parser
* @param object $compiler compiler object
- * @param array $parameter array with compilation parameter
- * @return boolean true
+ * @param array $parameter array with compilation parameter
+ * @return boolean true
*/
public function compile($args, $compiler, $parameter)
{
- $this->compiler = $compiler;
// check and get attributes
- $_attr = $this->_get_attributes($args);
+ $_attr = $this->getAttributes($compiler, $args);
if ($_attr['nocache'] === true) {
- $this->compiler->trigger_template_error('nocache option not allowed', $this->compiler->lex->taglineno);
+ $compiler->trigger_template_error('nocache option not allowed', $compiler->lex->taglineno);
}
- unset($_attr['nocache']);
+ unset($_attr['nocache']);
$save = array($_attr, $compiler->parser->current_buffer,
$compiler->template->has_nocache_code, $compiler->template->required_plugins);
- $this->_open_tag('function', $save);
+ $this->openTag($compiler, 'function', $save);
$_name = trim($_attr['name'], "'\"");
unset($_attr['name']);
+ // set flag that we are compiling a template function
+ $compiler->compiles_template_function = true;
$compiler->template->properties['function'][$_name]['parameter'] = array();
- $_smarty_tpl = $compiler->template;
+ $_smarty_tpl = $compiler->template;
foreach ($_attr as $_key => $_data) {
- eval ('$tmp='.$_data.';');
+ eval ('$tmp='.$_data.';');
$compiler->template->properties['function'][$_name]['parameter'][$_key] = $tmp;
- }
+ }
$compiler->smarty->template_functions[$_name]['parameter'] = $compiler->template->properties['function'][$_name]['parameter'];
if ($compiler->template->caching) {
$output = '';
$output = "<?php if (!function_exists('smarty_template_function_{$_name}')) {
function smarty_template_function_{$_name}(\$_smarty_tpl,\$params) {
\$saved_tpl_vars = \$_smarty_tpl->tpl_vars;
- foreach (\$_smarty_tpl->template_functions['{$_name}']['parameter'] as \$key => \$value) {\$_smarty_tpl->tpl_vars[\$key] = new Smarty_variable(\$value);};
+ foreach (\$_smarty_tpl->smarty->template_functions['{$_name}']['parameter'] as \$key => \$value) {\$_smarty_tpl->tpl_vars[\$key] = new Smarty_variable(\$value);};
foreach (\$params as \$key => \$value) {\$_smarty_tpl->tpl_vars[\$key] = new Smarty_variable(\$value);}?>";
- }
+ }
// Init temporay context
$compiler->template->required_plugins = array('compiled' => array(), 'nocache' => array());
$compiler->parser->current_buffer = new _smarty_template_buffer($compiler->parser);
$compiler->has_code = false;
$compiler->template->properties['function'][$_name]['compiled'] = '';
return true;
- }
-}
+ }
+
+}
/**
* Smarty Internal Plugin Compile Functionclose Class
+ *
+ * @package Smarty
+ * @subpackage Compiler
*/
class Smarty_Internal_Compile_Functionclose extends Smarty_Internal_CompileBase {
+
/**
* Compiles code for the {/function} tag
- *
+ *
* @param array $args array with attributes from parser
* @param object $compiler compiler object
* @param array $parameter array with compilation parameter
*/
public function compile($args, $compiler, $parameter)
{
- $this->compiler = $compiler;
- $_attr = $this->_get_attributes($args);
- $saved_data = $this->_close_tag(array('function'));
- $_name = trim($saved_data[0]['name'], "'\"");
+ $_attr = $this->getAttributes($compiler, $args);
+ $saved_data = $this->closeTag($compiler, array('function'));
+ $_name = trim($saved_data[0]['name'], "'\"");
// build plugin include code
$plugins_string = '';
if (!empty($compiler->template->required_plugins['compiled'])) {
@@ -93,42 +119,47 @@ class Smarty_Internal_Compile_Functionclose extends Smarty_Internal_CompileBase
foreach($compiler->template->required_plugins['compiled'] as $tmp) {
foreach($tmp as $data) {
$plugins_string .= "if (!is_callable('{$data['function']}')) include '{$data['file']}';\n";
- }
- }
+ }
+ }
$plugins_string .= '?>';
- }
+ }
if (!empty($compiler->template->required_plugins['nocache'])) {
$plugins_string .= "<?php echo '/*%%SmartyNocache:{$compiler->template->properties['nocache_hash']}%%*/<?php ";
foreach($compiler->template->required_plugins['nocache'] as $tmp) {
foreach($tmp as $data) {
$plugins_string .= "if (!is_callable(\'{$data['function']}\')) include \'{$data['file']}\';\n";
- }
- }
+ }
+ }
$plugins_string .= "?>/*/%%SmartyNocache:{$compiler->template->properties['nocache_hash']}%%*/';?>\n";
- }
- // remove last line break from function definition
- $last = count($compiler->parser->current_buffer->subtrees) - 1;
- if ($compiler->parser->current_buffer->subtrees[$last] instanceof _smarty_linebreak) {
- unset($compiler->parser->current_buffer->subtrees[$last]);
- }
+ }
+ // remove last line break from function definition
+ $last = count($compiler->parser->current_buffer->subtrees) - 1;
+ if ($compiler->parser->current_buffer->subtrees[$last] instanceof _smarty_linebreak) {
+ unset($compiler->parser->current_buffer->subtrees[$last]);
+ }
// if caching save template function for possible nocache call
if ($compiler->template->caching) {
$compiler->template->properties['function'][$_name]['compiled'] .= $plugins_string
. $compiler->parser->current_buffer->to_smarty_php();
$compiler->template->properties['function'][$_name]['nocache_hash'] = $compiler->template->properties['nocache_hash'];
$compiler->template->properties['function'][$_name]['has_nocache_code'] = $compiler->template->has_nocache_code;
+ $compiler->template->properties['function'][$_name]['called_functions'] = $compiler->called_functions;
+ $compiler->called_functions = array();
$compiler->smarty->template_functions[$_name] = $compiler->template->properties['function'][$_name];
$compiler->has_code = false;
$output = true;
} else {
$output = $plugins_string . $compiler->parser->current_buffer->to_smarty_php() . "<?php \$_smarty_tpl->tpl_vars = \$saved_tpl_vars;}}?>\n";
- }
+ }
+ // reset flag that we are compiling a template function
+ $compiler->compiles_template_function = false;
// restore old compiler status
$compiler->parser->current_buffer = $saved_data[1];
$compiler->template->has_nocache_code = $compiler->template->has_nocache_code | $saved_data[2];
$compiler->template->required_plugins = $saved_data[3];
return $output;
- }
-}
+ }
+
+}
?>
\ No newline at end of file
diff --git a/gosa-core/include/smarty/sysplugins/smarty_internal_compile_if.php b/gosa-core/include/smarty/sysplugins/smarty_internal_compile_if.php
index 41e6597e46f409ace28b748e7c3f41c2e700e174..98e8ac91d2e887e26a2d1d49d0163144fac1649e 100644 (file)
<?php
/**
* Smarty Internal Plugin Compile If
- *
+ *
* Compiles the {if} {else} {elseif} {/if} tags
- *
+ *
* @package Smarty
* @subpackage Compiler
- * @author Uwe Tews
+ * @author Uwe Tews
*/
/**
* Smarty Internal Plugin Compile If Class
+ *
+ * @package Smarty
+ * @subpackage Compiler
*/
class Smarty_Internal_Compile_If extends Smarty_Internal_CompileBase {
+
/**
* Compiles code for the {if} tag
- *
- * @param array $args array with attributes from parser
- * @param object $compiler compiler object
- * @param array $parameter array with compilation parameter
+ *
+ * @param array $args array with attributes from parser
+ * @param object $compiler compiler object
+ * @param array $parameter array with compilation parameter
* @return string compiled code
*/
public function compile($args, $compiler, $parameter)
{
- $this->compiler = $compiler;
// check and get attributes
- $_attr = $this->_get_attributes($args);
- $this->_open_tag('if',array(1,$this->compiler->nocache));
+ $_attr = $this->getAttributes($compiler, $args);
+ $this->openTag($compiler, 'if', array(1, $compiler->nocache));
// must whole block be nocache ?
- $this->compiler->nocache = $this->compiler->nocache | $this->compiler->tag_nocache;
+ $compiler->nocache = $compiler->nocache | $compiler->tag_nocache;
if (is_array($parameter['if condition'])) {
- if ($this->compiler->nocache) {
- $_nocache = ',true';
- // create nocache var to make it know for further compiling
- if (is_array($parameter['if condition']['var'])) {
- $this->compiler->template->tpl_vars[trim($parameter['if condition']['var']['var'], "'")] = new Smarty_variable(null, true);
- } else {
- $this->compiler->template->tpl_vars[trim($parameter['if condition']['var'], "'")] = new Smarty_variable(null, true);
- }
- } else {
- $_nocache = '';
- }
+ if ($compiler->nocache) {
+ $_nocache = ',true';
+ // create nocache var to make it know for further compiling
+ if (is_array($parameter['if condition']['var'])) {
+ $compiler->template->tpl_vars[trim($parameter['if condition']['var']['var'], "'")] = new Smarty_variable(null, true);
+ } else {
+ $compiler->template->tpl_vars[trim($parameter['if condition']['var'], "'")] = new Smarty_variable(null, true);
+ }
+ } else {
+ $_nocache = '';
+ }
if (is_array($parameter['if condition']['var'])) {
- $_output = "<?php if (!isset(\$_smarty_tpl->tpl_vars[".$parameter['if condition']['var']['var']."]) || !is_array(\$_smarty_tpl->tpl_vars[".$parameter['if condition']['var']['var']."]->value)) \$_smarty_tpl->createLocalArrayVariable(".$parameter['if condition']['var']['var']."$_nocache);\n";
- $_output .= "if (\$_smarty_tpl->tpl_vars[".$parameter['if condition']['var']['var']."]->value".$parameter['if condition']['var']['smarty_internal_index']." = ".$parameter['if condition']['value']."){?>";
+ $_output = "<?php if (!isset(\$_smarty_tpl->tpl_vars[".$parameter['if condition']['var']['var']."]) || !is_array(\$_smarty_tpl->tpl_vars[".$parameter['if condition']['var']['var']."]->value)) \$_smarty_tpl->createLocalArrayVariable(".$parameter['if condition']['var']['var']."$_nocache);\n";
+ $_output .= "if (\$_smarty_tpl->tpl_vars[".$parameter['if condition']['var']['var']."]->value".$parameter['if condition']['var']['smarty_internal_index']." = ".$parameter['if condition']['value']."){?>";
} else {
- $_output = "<?php \$_smarty_tpl->tpl_vars[".$parameter['if condition']['var']."] = new Smarty_Variable(\$_smarty_tpl->getVariable(".$parameter['if condition']['var'].",null,true,false)->value{$_nocache});";
- $_output .= "if (\$_smarty_tpl->tpl_vars[".$parameter['if condition']['var']."]->value = ".$parameter['if condition']['value']."){?>";
- }
+ $_output = "<?php if (!isset(\$_smarty_tpl->tpl_vars[".$parameter['if condition']['var']."])) \$_smarty_tpl->tpl_vars[".$parameter['if condition']['var']."] = new Smarty_Variable(null{$_nocache});";
+ $_output .= "if (\$_smarty_tpl->tpl_vars[".$parameter['if condition']['var']."]->value = ".$parameter['if condition']['value']."){?>";
+ }
return $_output;
} else {
return "<?php if ({$parameter['if condition']}){?>";
- }
- }
-}
+ }
+ }
+
+}
/**
* Smarty Internal Plugin Compile Else Class
+ *
+ * @package Smarty
+ * @subpackage Compiler
*/
class Smarty_Internal_Compile_Else extends Smarty_Internal_CompileBase {
+
/**
* Compiles code for the {else} tag
- *
- * @param array $args array with attributes from parser
- * @param object $compiler compiler object
- * @param array $parameter array with compilation parameter
+ *
+ * @param array $args array with attributes from parser
+ * @param object $compiler compiler object
+ * @param array $parameter array with compilation parameter
* @return string compiled code
*/
public function compile($args, $compiler, $parameter)
{
- $this->compiler = $compiler;
- list($nesting, $compiler->tag_nocache) = $this->_close_tag(array('if', 'elseif'));
- $this->_open_tag('else',array($nesting,$compiler->tag_nocache));
+ list($nesting, $compiler->tag_nocache) = $this->closeTag($compiler, array('if', 'elseif'));
+ $this->openTag($compiler, 'else', array($nesting, $compiler->tag_nocache));
return "<?php }else{ ?>";
- }
-}
+ }
+
+}
/**
* Smarty Internal Plugin Compile ElseIf Class
+ *
+ * @package Smarty
+ * @subpackage Compiler
*/
class Smarty_Internal_Compile_Elseif extends Smarty_Internal_CompileBase {
+
/**
* Compiles code for the {elseif} tag
- *
- * @param array $args array with attributes from parser
- * @param object $compiler compiler object
- * @param array $parameter array with compilation parameter
+ *
+ * @param array $args array with attributes from parser
+ * @param object $compiler compiler object
+ * @param array $parameter array with compilation parameter
* @return string compiled code
*/
public function compile($args, $compiler, $parameter)
{
- $this->compiler = $compiler;
// check and get attributes
- $_attr = $this->_get_attributes($args);
-
- list($nesting, $compiler->tag_nocache) = $this->_close_tag(array('if', 'elseif'));
-
- if (is_array($parameter['if condition'])) {
- $condition_by_assign = true;
- if ($this->compiler->nocache) {
- $_nocache = ',true';
- // create nocache var to make it know for further compiling
- if (is_array($parameter['if condition']['var'])) {
- $this->compiler->template->tpl_vars[trim($parameter['if condition']['var']['var'], "'")] = new Smarty_variable(null, true);
- } else {
- $this->compiler->template->tpl_vars[trim($parameter['if condition']['var'], "'")] = new Smarty_variable(null, true);
- }
- } else {
- $_nocache = '';
- }
- } else {
- $condition_by_assign = false;
- }
-
- if (empty($this->compiler->prefix_code)) {
- if ($condition_by_assign) {
- $this->_open_tag('elseif', array($nesting + 1, $compiler->tag_nocache));
- if (is_array($parameter['if condition']['var'])) {
- $_output = "<?php }else{ if (!isset(\$_smarty_tpl->tpl_vars[".$parameter['if condition']['var']['var']."]) || !is_array(\$_smarty_tpl->tpl_vars[".$parameter['if condition']['var']['var']."]->value)) \$_smarty_tpl->createLocalArrayVariable(".$parameter['if condition']['var']['var']."$_nocache);\n";
- $_output .= "if (\$_smarty_tpl->tpl_vars[".$parameter['if condition']['var']['var']."]->value".$parameter['if condition']['var']['smarty_internal_index']." = ".$parameter['if condition']['value']."){?>";
- } else {
- $_output = "<?php }else{ \$_smarty_tpl->tpl_vars[".$parameter['if condition']['var']."] = new Smarty_Variable(\$_smarty_tpl->getVariable(".$parameter['if condition']['var'].",null,true,false)->value{$_nocache});";
- $_output .= "if (\$_smarty_tpl->tpl_vars[".$parameter['if condition']['var']."]->value = ".$parameter['if condition']['value']."){?>";
- }
- return $_output;
- } else {
- $this->_open_tag('elseif', array($nesting, $compiler->tag_nocache));
- return "<?php }elseif({$parameter['if condition']}){?>";
- }
+ $_attr = $this->getAttributes($compiler, $args);
+
+ list($nesting, $compiler->tag_nocache) = $this->closeTag($compiler, array('if', 'elseif'));
+
+ if (is_array($parameter['if condition'])) {
+ $condition_by_assign = true;
+ if ($compiler->nocache) {
+ $_nocache = ',true';
+ // create nocache var to make it know for further compiling
+ if (is_array($parameter['if condition']['var'])) {
+ $compiler->template->tpl_vars[trim($parameter['if condition']['var']['var'], "'")] = new Smarty_variable(null, true);
+ } else {
+ $compiler->template->tpl_vars[trim($parameter['if condition']['var'], "'")] = new Smarty_variable(null, true);
+ }
+ } else {
+ $_nocache = '';
+ }
+ } else {
+ $condition_by_assign = false;
+ }
+
+ if (empty($compiler->prefix_code)) {
+ if ($condition_by_assign) {
+ $this->openTag($compiler, 'elseif', array($nesting + 1, $compiler->tag_nocache));
+ if (is_array($parameter['if condition']['var'])) {
+ $_output = "<?php }else{ if (!isset(\$_smarty_tpl->tpl_vars[" . $parameter['if condition']['var']['var'] . "]) || !is_array(\$_smarty_tpl->tpl_vars[" . $parameter['if condition']['var']['var'] . "]->value)) \$_smarty_tpl->createLocalArrayVariable(" . $parameter['if condition']['var']['var'] . "$_nocache);\n";
+ $_output .= "if (\$_smarty_tpl->tpl_vars[" . $parameter['if condition']['var']['var'] . "]->value" . $parameter['if condition']['var']['smarty_internal_index'] . " = " . $parameter['if condition']['value'] . "){?>";
+ } else {
+ $_output = "<?php }else{ if (!isset(\$_smarty_tpl->tpl_vars[" . $parameter['if condition']['var'] . "])) \$_smarty_tpl->tpl_vars[" . $parameter['if condition']['var'] . "] = new Smarty_Variable(null{$_nocache});";
+ $_output .= "if (\$_smarty_tpl->tpl_vars[" . $parameter['if condition']['var'] . "]->value = " . $parameter['if condition']['value'] . "){?>";
+ }
+ return $_output;
+ } else {
+ $this->openTag($compiler, 'elseif', array($nesting, $compiler->tag_nocache));
+ return "<?php }elseif({$parameter['if condition']}){?>";
+ }
} else {
$tmp = '';
- foreach ($this->compiler->prefix_code as $code) $tmp .= $code;
- $this->compiler->prefix_code = array();
- $this->_open_tag('elseif', array($nesting + 1, $compiler->tag_nocache));
- if ($condition_by_assign) {
- if (is_array($parameter['if condition']['var'])) {
- $_output = "<?php }else{?>{$tmp}<?php if (!isset(\$_smarty_tpl->tpl_vars[".$parameter['if condition']['var']['var']."]) || !is_array(\$_smarty_tpl->tpl_vars[".$parameter['if condition']['var']['var']."]->value)) \$_smarty_tpl->createLocalArrayVariable(".$parameter['if condition']['var']['var']."$_nocache);\n";
- $_output .= "if (\$_smarty_tpl->tpl_vars[".$parameter['if condition']['var']['var']."]->value".$parameter['if condition']['var']['smarty_internal_index']." = ".$parameter['if condition']['value']."){?>";
- } else {
- $_output = "<?php }else{?>{$tmp}<?php \$_smarty_tpl->tpl_vars[".$parameter['if condition']['var']."] = new Smarty_Variable(\$_smarty_tpl->getVariable(".$parameter['if condition']['var'].",null,true,false)->value{$_nocache});";
- $_output .= "if (\$_smarty_tpl->tpl_vars[".$parameter['if condition']['var']."]->value = ".$parameter['if condition']['value']."){?>";
- }
- return $_output;
- } else {
- return "<?php }else{?>{$tmp}<?php if ({$parameter['if condition']}){?>";
- }
- }
- }
-}
+ foreach ($compiler->prefix_code as $code)
+ $tmp .= $code;
+ $compiler->prefix_code = array();
+ $this->openTag($compiler, 'elseif', array($nesting + 1, $compiler->tag_nocache));
+ if ($condition_by_assign) {
+ if (is_array($parameter['if condition']['var'])) {
+ $_output = "<?php }else{?>{$tmp}<?php if (!isset(\$_smarty_tpl->tpl_vars[" . $parameter['if condition']['var']['var'] . "]) || !is_array(\$_smarty_tpl->tpl_vars[" . $parameter['if condition']['var']['var'] . "]->value)) \$_smarty_tpl->createLocalArrayVariable(" . $parameter['if condition']['var']['var'] . "$_nocache);\n";
+ $_output .= "if (\$_smarty_tpl->tpl_vars[" . $parameter['if condition']['var']['var'] . "]->value" . $parameter['if condition']['var']['smarty_internal_index'] . " = " . $parameter['if condition']['value'] . "){?>";
+ } else {
+ $_output = "<?php }else{?>{$tmp}<?php if (!isset(\$_smarty_tpl->tpl_vars[" . $parameter['if condition']['var'] . "])) \$_smarty_tpl->tpl_vars[" . $parameter['if condition']['var'] . "] = new Smarty_Variable(null{$_nocache});";
+ $_output .= "if (\$_smarty_tpl->tpl_vars[" . $parameter['if condition']['var'] . "]->value = " . $parameter['if condition']['value'] . "){?>";
+ }
+ return $_output;
+ } else {
+ return "<?php }else{?>{$tmp}<?php if ({$parameter['if condition']}){?>";
+ }
+ }
+ }
+
+}
/**
-* Smarty Internal Plugin Compile Ifclose Class
-*/
+ * Smarty Internal Plugin Compile Ifclose Class
+ *
+ * @package Smarty
+ * @subpackage Compiler
+ */
class Smarty_Internal_Compile_Ifclose extends Smarty_Internal_CompileBase {
+
/**
- * Compiles code for the {/if} tag
- *
- * @param array $args array with attributes from parser
- * @param object $compiler compiler object
- * @param array $parameter array with compilation parameter
- * @return string compiled code
- */
+ * Compiles code for the {/if} tag
+ *
+ * @param array $args array with attributes from parser
+ * @param object $compiler compiler object
+ * @param array $parameter array with compilation parameter
+ * @return string compiled code
+ */
public function compile($args, $compiler, $parameter)
{
- $this->compiler = $compiler;
- // must endblock be nocache?
- if ($this->compiler->nocache) {
- $this->compiler->tag_nocache = true;
- }
- list($nesting, $this->compiler->nocache) = $this->_close_tag(array('if', 'else', 'elseif'));
+ // must endblock be nocache?
+ if ($compiler->nocache) {
+ $compiler->tag_nocache = true;
+ }
+ list($nesting, $compiler->nocache) = $this->closeTag($compiler, array('if', 'else', 'elseif'));
$tmp = '';
- for ($i = 0; $i < $nesting ; $i++) $tmp .= '}';
+ for ($i = 0; $i < $nesting; $i++) {
+ $tmp .= '}';
+ }
return "<?php {$tmp}?>";
- }
-}
+ }
+
+}
?>
\ No newline at end of file
diff --git a/gosa-core/include/smarty/sysplugins/smarty_internal_compile_include.php b/gosa-core/include/smarty/sysplugins/smarty_internal_compile_include.php
index a3b3c9444a3da22ca45003e37183ccaa8d531a1a..d45db361489cd96017ff921427bd6b0f3c92122f 100644 (file)
<?php
-
/**
- * Smarty Internal Plugin Compile Include
- *
- * Compiles the {include} tag
- *
- * @package Smarty
- * @subpackage Compiler
- * @author Uwe Tews
- */
+* Smarty Internal Plugin Compile Include
+*
+* Compiles the {include} tag
+*
+* @package Smarty
+* @subpackage Compiler
+* @author Uwe Tews
+*/
/**
- * Smarty Internal Plugin Compile Include Class
- */
+* Smarty Internal Plugin Compile Include Class
+*
+* @package Smarty
+* @subpackage Compiler
+*/
class Smarty_Internal_Compile_Include extends Smarty_Internal_CompileBase {
- // caching mode to create nocache code but no cache file
- const CACHING_NOCACHE_CODE = 9999;
- // attribute definitions
+
+ /**
+ * caching mode to create nocache code but no cache file
+ */
+ const CACHING_NOCACHE_CODE = 9999;
+ /**
+ * Attribute definition: Overwrites base class.
+ *
+ * @var array
+ * @see Smarty_Internal_CompileBase
+ */
public $required_attributes = array('file');
- public $shorttag_order = array('file');
- public $option_flags = array('nocache','inline','caching');
- public $optional_attributes = array('_any');
+ /**
+ * Attribute definition: Overwrites base class.
+ *
+ * @var array
+ * @see Smarty_Internal_CompileBase
+ */
+ public $shorttag_order = array('file');
+ /**
+ * Attribute definition: Overwrites base class.
+ *
+ * @var array
+ * @see Smarty_Internal_CompileBase
+ */
+ public $option_flags = array('nocache', 'inline', 'caching');
+ /**
+ * Attribute definition: Overwrites base class.
+ *
+ * @var array
+ * @see Smarty_Internal_CompileBase
+ */
+ public $optional_attributes = array('_any');
/**
- * Compiles code for the {include} tag
- *
+ * Compiles code for the {include} tag
+ *
* @param array $args array with attributes from parser
* @param object $compiler compiler object
+ * @param array $parameter array with compilation parameter
* @return string compiled code
*/
- public function compile($args, $compiler)
+ public function compile($args, $compiler, $parameter)
{
- $this->compiler = $compiler;
// check and get attributes
- $_attr = $this->_get_attributes($args);
+ $_attr = $this->getAttributes($compiler, $args);
// save posible attributes
$include_file = $_attr['file'];
- $has_compiled_template = false;
- if ($compiler->smarty->merge_compiled_includes || $_attr['inline'] === true) {
- // check if compiled code can be merged (contains no variable part)
- if (!$compiler->has_variable_string && (substr_count($include_file, '"') == 2 or substr_count($include_file, "'") == 2) and substr_count($include_file, '(') == 0) {
- $tmp = null;
- eval("\$tmp = $include_file;");
- if ($this->compiler->template->template_resource != $tmp) {
- $tpl = new $compiler->smarty->template_class ($tmp, $compiler->smarty, $compiler->template, $compiler->template->cache_id, $compiler->template->compile_id);
- // suppress writing of compiled file
- $tpl->write_compiled_code = false;
- if ($this->compiler->template->caching) {
- // needs code for cached page but no cache file
- $tpl->caching = self::CACHING_NOCACHE_CODE;
- }
-// if ($this->compiler->template->mustCompile) {
- // make sure whole chain gest compiled
- $tpl->mustCompile = true;
-// }
- if ($tpl->resource_object->usesCompiler && $tpl->isExisting()) {
- // get compiled code
- $compiled_tpl = $tpl->getCompiledTemplate();
- // merge compiled code for {function} tags
- $compiler->template->properties['function'] = array_merge($compiler->template->properties['function'], $tpl->properties['function']);
- // merge filedependency by evaluating header code
- preg_match_all("/(<\?php \/\*%%SmartyHeaderCode:{$tpl->properties['nocache_hash']}%%\*\/(.+?)\/\*\/%%SmartyHeaderCode%%\*\/\?>\n)/s", $compiled_tpl, $result);
- $saved_has_nocache_code = $compiler->template->has_nocache_code;
- $saved_nocache_hash = $compiler->template->properties['nocache_hash'];
- $_smarty_tpl = $compiler->template;
- eval($result[2][0]);
- $compiler->template->properties['nocache_hash'] = $saved_nocache_hash;
- $compiler->template->has_nocache_code = $saved_has_nocache_code;
- // remove header code
- $compiled_tpl = preg_replace("/(<\?php \/\*%%SmartyHeaderCode:{$tpl->properties['nocache_hash']}%%\*\/(.+?)\/\*\/%%SmartyHeaderCode%%\*\/\?>\n)/s", '', $compiled_tpl);
- if ($tpl->has_nocache_code) {
- // replace nocache_hash
- $compiled_tpl = preg_replace("/{$tpl->properties['nocache_hash']}/", $compiler->template->properties['nocache_hash'], $compiled_tpl);
- $compiler->template->has_nocache_code = true;
- }
- $has_compiled_template = true;
- }
- }
- }
- }
if (isset($_attr['assign'])) {
// output will be stored in a smarty variable instead of beind displayed
$_assign = $_attr['assign'];
- }
+ }
$_parent_scope = Smarty::SCOPE_LOCAL;
if (isset($_attr['scope'])) {
$_parent_scope = Smarty::SCOPE_ROOT;
} elseif ($_attr['scope'] == 'global') {
$_parent_scope = Smarty::SCOPE_GLOBAL;
- }
- }
+ }
+ }
$_caching = 'null';
- if ($this->compiler->nocache || $this->compiler->tag_nocache) {
+ if ($compiler->nocache || $compiler->tag_nocache) {
$_caching = Smarty::CACHING_OFF;
- }
+ }
// default for included templates
- if ($compiler->template->caching && !$this->compiler->nocache && !$this->compiler->tag_nocache) {
+ if ($compiler->template->caching && !$compiler->nocache && !$compiler->tag_nocache) {
$_caching = self::CACHING_NOCACHE_CODE;
- }
+ }
/*
* if the {include} tag provides individual parameter for caching
* it will not be included into the common cache file and treated like
*/
if (isset($_attr['cache_lifetime'])) {
$_cache_lifetime = $_attr['cache_lifetime'];
- $this->compiler->tag_nocache = true;
+ $compiler->tag_nocache = true;
$_caching = Smarty::CACHING_LIFETIME_CURRENT;
} else {
$_cache_lifetime = 'null';
- }
+ }
if (isset($_attr['cache_id'])) {
$_cache_id = $_attr['cache_id'];
- $this->compiler->tag_nocache = true;
+ $compiler->tag_nocache = true;
$_caching = Smarty::CACHING_LIFETIME_CURRENT;
} else {
$_cache_id = '$_smarty_tpl->cache_id';
- }
+ }
if (isset($_attr['compile_id'])) {
$_compile_id = $_attr['compile_id'];
} else {
$_compile_id = '$_smarty_tpl->compile_id';
- }
+ }
if ($_attr['caching'] === true) {
$_caching = Smarty::CACHING_LIFETIME_CURRENT;
- }
+ }
if ($_attr['nocache'] === true) {
- $this->compiler->tag_nocache = true;
+ $compiler->tag_nocache = true;
$_caching = Smarty::CACHING_OFF;
- }
- // create template object
- $_output = "<?php ";
- if ($_caching != 'null' && $_caching != Smarty::CACHING_OFF) {
- $_output .= "\$sha = sha1($include_file . $_cache_id . $_compile_id);\n";
- $_output .= "if (isset(\$_smarty_tpl->smarty->template_objects[\$sha])) {\n";
- $_output .= "\$_template = \$_smarty_tpl->smarty->template_objects[\$sha]; \$_template->caching = $_caching; \$_template->cache_lifetime = $_cache_lifetime;\n";
- $_output .= "} else {\n";
}
- $_output .= "\$_template = new {$compiler->smarty->template_class}($include_file, \$_smarty_tpl->smarty, \$_smarty_tpl, $_cache_id, $_compile_id, $_caching, $_cache_lifetime);\n";
- if ($_caching != 'null' && $_caching != Smarty::CACHING_OFF) {
- $_output .= "}\n";
- }
+
+ $has_compiled_template = false;
+ if (($compiler->smarty->merge_compiled_includes || $_attr['inline'] === true) && !$compiler->template->source->recompiled
+ && !($compiler->template->caching && ($compiler->tag_nocache || $compiler->nocache)) && $_caching != Smarty::CACHING_LIFETIME_CURRENT) {
+ // check if compiled code can be merged (contains no variable part)
+ if (!$compiler->has_variable_string && (substr_count($include_file, '"') == 2 or substr_count($include_file, "'") == 2)
+ and substr_count($include_file, '(') == 0 and substr_count($include_file, '$_smarty_tpl->') == 0) {
+ $tpl_name = null;
+ eval("\$tpl_name = $include_file;");
+ if (!isset($compiler->smarty->merged_templates_func[$tpl_name]) || $compiler->inheritance) {
+ $tpl = new $compiler->smarty->template_class ($tpl_name, $compiler->smarty, $compiler->template, $compiler->template->cache_id, $compiler->template->compile_id);
+ // save unique function name
+ $compiler->smarty->merged_templates_func[$tpl_name]['func'] = $tpl->properties['unifunc'] = 'content_'.uniqid();
+ // use current nocache hash for inlined code
+ $compiler->smarty->merged_templates_func[$tpl_name]['nocache_hash'] = $tpl->properties['nocache_hash'] = $compiler->template->properties['nocache_hash'];
+ if ($compiler->template->caching) {
+ // needs code for cached page but no cache file
+ $tpl->caching = self::CACHING_NOCACHE_CODE;
+ }
+ // make sure whole chain gest compiled
+ $tpl->mustCompile = true;
+ if (!($tpl->source->uncompiled) && $tpl->source->exists) {
+ // get compiled code
+ $compiled_code = $tpl->compiler->compileTemplate($tpl);
+ // release compiler object to free memory
+ unset($tpl->compiler);
+ // merge compiled code for {function} tags
+ $compiler->template->properties['function'] = array_merge($compiler->template->properties['function'], $tpl->properties['function']);
+ // merge filedependency
+ $tpl->properties['file_dependency'][$tpl->source->uid] = array($tpl->source->filepath, $tpl->source->timestamp,$tpl->source->type);
+ $compiler->template->properties['file_dependency'] = array_merge($compiler->template->properties['file_dependency'], $tpl->properties['file_dependency']);
+ // remove header code
+ $compiled_code = preg_replace("/(<\?php \/\*%%SmartyHeaderCode:{$tpl->properties['nocache_hash']}%%\*\/(.+?)\/\*\/%%SmartyHeaderCode%%\*\/\?>\n)/s", '', $compiled_code);
+ if ($tpl->has_nocache_code) {
+ // replace nocache_hash
+ $compiled_code = preg_replace("/{$tpl->properties['nocache_hash']}/", $compiler->template->properties['nocache_hash'], $compiled_code);
+ $compiler->template->has_nocache_code = true;
+ }
+ $compiler->merged_templates[$tpl->properties['unifunc']] = $compiled_code;
+ $has_compiled_template = true;
+ }
+ } else {
+ $has_compiled_template = true;
+ }
+ }
+ }
// delete {include} standard attributes
- unset($_attr['file'], $_attr['assign'], $_attr['cache_id'], $_attr['compile_id'], $_attr['cache_lifetime'], $_attr['nocache'], $_attr['caching'], $_attr['scope'], $_attr['inline']);
+ unset($_attr['file'], $_attr['assign'], $_attr['cache_id'], $_attr['compile_id'], $_attr['cache_lifetime'], $_attr['nocache'], $_attr['caching'], $_attr['scope'], $_attr['inline']);
// remaining attributes must be assigned as smarty variable
if (!empty($_attr)) {
if ($_parent_scope == Smarty::SCOPE_LOCAL) {
// create variables
- foreach ($_attr as $_key => $_value) {
- $_output .= "\$_template->assign('$_key',$_value);";
- }
+ foreach ($_attr as $key => $value) {
+ $_pairs[] = "'$key'=>$value";
+ }
+ $_vars = 'array('.join(',',$_pairs).')';
+ $_has_vars = true;
} else {
- $this->compiler->trigger_template_error('variable passing not allowed in parent/global scope', $this->compiler->lex->taglineno);
- }
- }
+ $compiler->trigger_template_error('variable passing not allowed in parent/global scope', $compiler->lex->taglineno);
+ }
+ } else {
+ $_vars = 'array()';
+ $_has_vars = false;
+ }
+ if ($has_compiled_template) {
+ $_hash = $compiler->smarty->merged_templates_func[$tpl_name]['nocache_hash'];
+ $_output = "<?php /* Call merged included template \"" . $tpl_name . "\" */\n";
+ $_output .= "\$_tpl_stack[] = \$_smarty_tpl;\n";
+ $_output .= " \$_smarty_tpl = \$_smarty_tpl->setupInlineSubTemplate($include_file, $_cache_id, $_compile_id, $_caching, $_cache_lifetime, $_vars, $_parent_scope, '$_hash');\n";
+ if (isset($_assign)) {
+ $_output .= 'ob_start(); ';
+ }
+ $_output .= $compiler->smarty->merged_templates_func[$tpl_name]['func']. "(\$_smarty_tpl);\n";
+ $_output .= "\$_smarty_tpl = array_pop(\$_tpl_stack); ";
+ if (isset($_assign)) {
+ $_output .= " \$_smarty_tpl->tpl_vars[$_assign] = new Smarty_variable(ob_get_clean());";
+ }
+ $_output .= "/* End of included template \"" . $tpl_name . "\" */?>";
+ return $_output;
+ }
+
// was there an assign attribute
if (isset($_assign)) {
- $_output .= "\$_smarty_tpl->assign($_assign,\$_template->getRenderedTemplate());?>";
+ $_output = "<?php \$_smarty_tpl->tpl_vars[$_assign] = new Smarty_variable(\$_smarty_tpl->getSubTemplate ($include_file, $_cache_id, $_compile_id, $_caching, $_cache_lifetime, $_vars, $_parent_scope));?>\n";;
} else {
- if ($has_compiled_template && !($compiler->template->caching && ($this->compiler->tag_nocache || $this->compiler->nocache))) {
- $_output .= "\$_template->properties['nocache_hash'] = '{$compiler->template->properties['nocache_hash']}';\n";
- $_output .= "\$_tpl_stack[] = \$_smarty_tpl; \$_smarty_tpl = \$_template;?>\n";
- $_output .= $compiled_tpl;
- $_output .= "<?php \$_smarty_tpl->updateParentVariables($_parent_scope);?>\n";
- $_output .= "<?php /* End of included template \"" . $tpl->getTemplateFilepath() . "\" */ ?>\n";
- $_output .= "<?php \$_smarty_tpl = array_pop(\$_tpl_stack);?>";
- } else {
- $_output .= " echo \$_template->getRenderedTemplate(); \$_template->rendered_content = null;?>";
- if ($_parent_scope != Smarty::SCOPE_LOCAL) {
- $_output .= "<?php \$_template->updateParentVariables($_parent_scope);?>";
- }
- }
- }
- $_output .= "<?php unset(\$_template);?>";
+ $_output = "<?php echo \$_smarty_tpl->getSubTemplate ($include_file, $_cache_id, $_compile_id, $_caching, $_cache_lifetime, $_vars, $_parent_scope);?>\n";
+ }
return $_output;
- }
-}
+ }
+
+}
?>
\ No newline at end of file
diff --git a/gosa-core/include/smarty/sysplugins/smarty_internal_compile_include_php.php b/gosa-core/include/smarty/sysplugins/smarty_internal_compile_include_php.php
index 19ee186bc9e572836afaf6d366a249c38ec21714..d52712368db66bdfb26d58dcf542ed1594226aaa 100644 (file)
<?php
-
/**
* Smarty Internal Plugin Compile Include PHP
- *
+ *
* Compiles the {include_php} tag
- *
+ *
* @package Smarty
* @subpackage Compiler
- * @author Uwe Tews
+ * @author Uwe Tews
*/
/**
* Smarty Internal Plugin Compile Insert Class
+ *
+ * @package Smarty
+ * @subpackage Compiler
*/
class Smarty_Internal_Compile_Include_Php extends Smarty_Internal_CompileBase {
- // attribute definitions
+
+ /**
+ * Attribute definition: Overwrites base class.
+ *
+ * @var array
+ * @see Smarty_Internal_CompileBase
+ */
public $required_attributes = array('file');
- public $shorttag_order = array('file');
- public $optional_attributes = array('once', 'assign');
+ /**
+ * Attribute definition: Overwrites base class.
+ *
+ * @var array
+ * @see Smarty_Internal_CompileBase
+ */
+ public $shorttag_order = array('file');
+ /**
+ * Attribute definition: Overwrites base class.
+ *
+ * @var array
+ * @see Smarty_Internal_CompileBase
+ */
+ public $optional_attributes = array('once', 'assign');
/**
* Compiles code for the {include_php} tag
- *
- * @param array $args array with attributes from parser
+ *
+ * @param array $args array with attributes from parser
* @param object $compiler compiler object
* @return string compiled code
*/
public function compile($args, $compiler)
{
- if (!$compiler->smarty->allow_php_tag) {
- throw new SmartyException("{include_php} is deprecated, set allow_php_tag = true to enable");
- }
- $this->compiler = $compiler;
+ if (!($compiler->smarty instanceof SmartyBC)) {
+ throw new SmartyException("{include_php} is deprecated, use SmartyBC class to enable");
+ }
// check and get attributes
- $_attr = $this->_get_attributes($args);
+ $_attr = $this->getAttributes($compiler, $args);
- $_output = '<?php ';
+ $_output = '<?php ';
- $_smarty_tpl = $compiler->template;
+ $_smarty_tpl = $compiler->template;
$_filepath = false;
- eval('$_file = ' . $_attr['file'] . ';');
- if (!isset($this->compiler->smarty->security_policy) && file_exists($_file)) {
- $_filepath = $_file;
+ eval('$_file = ' . $_attr['file'] . ';');
+ if (!isset($compiler->smarty->security_policy) && file_exists($_file)) {
+ $_filepath = $_file;
} else {
- if (isset($this->compiler->smarty->security_policy)) {
- $_dir = $this->compiler->smarty->security_policy->trusted_dir;
+ if (isset($compiler->smarty->security_policy)) {
+ $_dir = $compiler->smarty->security_policy->trusted_dir;
} else {
- $_dir = $this->compiler->smarty->trusted_dir;
- }
+ $_dir = $compiler->smarty->trusted_dir;
+ }
if (!empty($_dir)) {
foreach((array)$_dir as $_script_dir) {
- if (strpos('/\\', substr($_script_dir, -1)) === false) {
- $_script_dir .= DS;
- }
+ $_script_dir = rtrim($_script_dir, '/\\') . DS;
if (file_exists($_script_dir . $_file)) {
$_filepath = $_script_dir . $_file;
break;
- }
- }
- }
- }
+ }
+ }
+ }
+ }
if ($_filepath == false) {
- $this->compiler->trigger_template_error("{include_php} file '{$_file}' is not readable", $this->compiler->lex->taglineno);
- }
+ $compiler->trigger_template_error("{include_php} file '{$_file}' is not readable", $compiler->lex->taglineno);
+ }
- if (isset($this->compiler->smarty->security_policy)) {
- $this->compiler->smarty->security_policy->isTrustedPHPDir($_filepath);
- }
+ if (isset($compiler->smarty->security_policy)) {
+ $compiler->smarty->security_policy->isTrustedPHPDir($_filepath);
+ }
if (isset($_attr['assign'])) {
// output will be stored in a smarty variable instead of being displayed
$_assign = $_attr['assign'];
- }
+ }
$_once = '_once';
if (isset($_attr['once'])) {
if ($_attr['once'] == 'false') {
$_once = '';
- }
- }
+ }
+ }
if (isset($_assign)) {
return "<?php ob_start(); include{$_once} ('{$_filepath}'); \$_smarty_tpl->assign({$_assign},ob_get_contents()); ob_end_clean();?>";
} else {
return "<?php include{$_once} ('{$_filepath}');?>\n";
- }
- }
-}
+ }
+ }
+
+}
?>
\ No newline at end of file
diff --git a/gosa-core/include/smarty/sysplugins/smarty_internal_compile_insert.php b/gosa-core/include/smarty/sysplugins/smarty_internal_compile_insert.php
index 898e5315ae8678b5eed6fbd06d03a31adf299433..e4d3f93552c9f7559c7b8c995d53e9d1ac10c3ad 100644 (file)
/**
* Smarty Internal Plugin Compile Insert
- *
+ *
* Compiles the {insert} tag
- *
+ *
* @package Smarty
* @subpackage Compiler
- * @author Uwe Tews
+ * @author Uwe Tews
*/
/**
* Smarty Internal Plugin Compile Insert Class
+ *
+ * @package Smarty
+ * @subpackage Compiler
*/
class Smarty_Internal_Compile_Insert extends Smarty_Internal_CompileBase {
- // attribute definitions
+
+ /**
+ * Attribute definition: Overwrites base class.
+ *
+ * @var array
+ * @see Smarty_Internal_CompileBase
+ */
public $required_attributes = array('name');
- public $shorttag_order = array('name');
- public $optional_attributes = array('_any');
+ /**
+ * Attribute definition: Overwrites base class.
+ *
+ * @var array
+ * @see Smarty_Internal_CompileBase
+ */
+ public $shorttag_order = array('name');
+ /**
+ * Attribute definition: Overwrites base class.
+ *
+ * @var array
+ * @see Smarty_Internal_CompileBase
+ */
+ public $optional_attributes = array('_any');
/**
* Compiles code for the {insert} tag
- *
- * @param array $args array with attributes from parser
+ *
+ * @param array $args array with attributes from parser
* @param object $compiler compiler object
* @return string compiled code
*/
public function compile($args, $compiler)
{
- $this->compiler = $compiler;
// check and get attributes
- $_attr = $this->_get_attributes($args);
+ $_attr = $this->getAttributes($compiler, $args);
// never compile as nocache code
- $this->compiler->suppressNocacheProcessing = true;
- $this->compiler->tag_nocache = true;
+ $compiler->suppressNocacheProcessing = true;
+ $compiler->tag_nocache = true;
$_smarty_tpl = $compiler->template;
$_name = null;
$_script = null;
- $_output = '<?php ';
+ $_output = '<?php ';
// save posible attributes
eval('$_name = ' . $_attr['name'] . ';');
if (isset($_attr['assign'])) {
// output will be stored in a smarty variable instead of being displayed
- $_assign = $_attr['assign'];
+ $_assign = $_attr['assign'];
// create variable to make shure that the compiler knows about its nocache status
- $this->compiler->template->tpl_vars[trim($_attr['assign'], "'")] = new Smarty_Variable(null, true);
- }
+ $compiler->template->tpl_vars[trim($_attr['assign'], "'")] = new Smarty_Variable(null, true);
+ }
if (isset($_attr['script'])) {
// script which must be included
$_function = "smarty_insert_{$_name}";
$_smarty_tpl = $compiler->template;
$_filepath = false;
eval('$_script = ' . $_attr['script'] . ';');
- if (!isset($this->compiler->smarty->security_policy) && file_exists($_script)) {
+ if (!isset($compiler->smarty->security_policy) && file_exists($_script)) {
$_filepath = $_script;
} else {
- if (isset($this->compiler->smarty->security_policy)) {
- $_dir = $this->compiler->smarty->security_policy->trusted_dir;
+ if (isset($compiler->smarty->security_policy)) {
+ $_dir = $compiler->smarty->security_policy->trusted_dir;
} else {
- $_dir = $this->compiler->smarty->trusted_dir;
- }
+ $_dir = $compiler->smarty->trusted_dir;
+ }
if (!empty($_dir)) {
foreach((array)$_dir as $_script_dir) {
- if (strpos('/\\', substr($_script_dir, -1)) === false) {
- $_script_dir .= DS;
- }
+ $_script_dir = rtrim($_script_dir, '/\\') . DS;
if (file_exists($_script_dir . $_script)) {
$_filepath = $_script_dir . $_script;
break;
- }
- }
- }
- }
+ }
+ }
+ }
+ }
if ($_filepath == false) {
- $this->compiler->trigger_template_error("{insert} missing script file '{$_script}'", $this->compiler->lex->taglineno);
- }
+ $compiler->trigger_template_error("{insert} missing script file '{$_script}'", $compiler->lex->taglineno);
+ }
// code for script file loading
$_output .= "require_once '{$_filepath}' ;";
require_once $_filepath;
if (!is_callable($_function)) {
- $this->compiler->trigger_template_error(" {insert} function '{$_function}' is not callable in script file '{$_script}'", $this->compiler->lex->taglineno);
- }
+ $compiler->trigger_template_error(" {insert} function '{$_function}' is not callable in script file '{$_script}'", $compiler->lex->taglineno);
+ }
} else {
$_filepath = 'null';
- $_function = "insert_{$_name}";
+ $_function = "insert_{$_name}";
// function in PHP script ?
if (!is_callable($_function)) {
// try plugin
- if (!$_function = $this->compiler->getPlugin($_name, 'insert')) {
- $this->compiler->trigger_template_error("{insert} no function or plugin found for '{$_name}'", $this->compiler->lex->taglineno);
- }
- }
- }
+ if (!$_function = $compiler->getPlugin($_name, 'insert')) {
+ $compiler->trigger_template_error("{insert} no function or plugin found for '{$_name}'", $compiler->lex->taglineno);
+ }
+ }
+ }
// delete {insert} standard attributes
- unset($_attr['name'], $_attr['assign'], $_attr['script'], $_attr['nocache']);
+ unset($_attr['name'], $_attr['assign'], $_attr['script'], $_attr['nocache']);
// convert attributes into parameter array string
$_paramsArray = array();
foreach ($_attr as $_key => $_value) {
$_paramsArray[] = "'$_key' => $_value";
- }
- $_params = 'array(' . implode(", ", $_paramsArray) . ')';
+ }
+ $_params = 'array(' . implode(", ", $_paramsArray) . ')';
// call insert
if (isset($_assign)) {
if ($_smarty_tpl->caching) {
$_output .= "echo Smarty_Internal_Nocache_Insert::compile ('{$_function}',{$_params}, \$_smarty_tpl, '{$_filepath}',{$_assign});?>";
} else {
$_output .= "\$_smarty_tpl->assign({$_assign} , {$_function} ({$_params},\$_smarty_tpl), true);?>";
- }
+ }
} else {
- $this->compiler->has_output = true;
+ $compiler->has_output = true;
if ($_smarty_tpl->caching) {
$_output .= "echo Smarty_Internal_Nocache_Insert::compile ('{$_function}',{$_params}, \$_smarty_tpl, '{$_filepath}');?>";
} else {
$_output .= "echo {$_function}({$_params},\$_smarty_tpl);?>";
- }
- }
+ }
+ }
return $_output;
- }
-}
+ }
+
+}
?>
\ No newline at end of file
diff --git a/gosa-core/include/smarty/sysplugins/smarty_internal_compile_ldelim.php b/gosa-core/include/smarty/sysplugins/smarty_internal_compile_ldelim.php
index bdf86de4c5a6875e8c6e14ae5fd7e30041288169..99063259015ef2a2c6eaefcc66e742db7e5e9d9c 100644 (file)
<?php
-
/**
* Smarty Internal Plugin Compile Ldelim
*
- * Compiles the {ldelim} tag
+ * Compiles the {ldelim} tag
+ *
* @package Smarty
* @subpackage Compiler
* @author Uwe Tews
/**
* Smarty Internal Plugin Compile Ldelim Class
- */
+ *
+ * @package Smarty
+ * @subpackage Compiler
+ */
class Smarty_Internal_Compile_Ldelim extends Smarty_Internal_CompileBase {
+
/**
* Compiles code for the {ldelim} tag
*
- * This tag does output the left delimiter
- * @param array $args array with attributes from parser
+ * This tag does output the left delimiter
+ * @param array $args array with attributes from parser
* @param object $compiler compiler object
* @return string compiled code
*/
public function compile($args, $compiler)
{
- $this->compiler = $compiler;
- $_attr = $this->_get_attributes($args);
+ $_attr = $this->getAttributes($compiler, $args);
if ($_attr['nocache'] === true) {
- $this->compiler->trigger_template_error('nocache option not allowed', $this->compiler->lex->taglineno);
+ $compiler->trigger_template_error('nocache option not allowed', $compiler->lex->taglineno);
}
// this tag does not return compiled code
- $this->compiler->has_code = true;
- return $this->compiler->smarty->left_delimiter;
- }
+ $compiler->has_code = true;
+ return $compiler->smarty->left_delimiter;
+ }
+
}
?>
diff --git a/gosa-core/include/smarty/sysplugins/smarty_internal_compile_nocache.php b/gosa-core/include/smarty/sysplugins/smarty_internal_compile_nocache.php
index 0c88b14bd57d7c9111cc7018773558ebe94351ce..5fb71b71db7e3adf0b8d6c9a0a5518c2088b7215 100644 (file)
<?php
-
/**
* Smarty Internal Plugin Compile Nocache
*
- * Compiles the {nocache} {/nocache} tags
+ * Compiles the {nocache} {/nocache} tags.
+ *
* @package Smarty
* @subpackage Compiler
* @author Uwe Tews
*/
/**
- * Smarty Internal Plugin Compile Nocache Class
- */
+ * Smarty Internal Plugin Compile Nocache Classv
+ *
+ * @package Smarty
+ * @subpackage Compiler
+ */
class Smarty_Internal_Compile_Nocache extends Smarty_Internal_CompileBase {
+
/**
* Compiles code for the {nocache} tag
*
- * This tag does not generate compiled output. It only sets a compiler flag
- * @param array $args array with attributes from parser
+ * This tag does not generate compiled output. It only sets a compiler flag.
+ *
+ * @param array $args array with attributes from parser
* @param object $compiler compiler object
- * @return string compiled code
+ * @return bool
*/
public function compile($args, $compiler)
{
- $this->compiler = $compiler;
- $_attr = $this->_get_attributes($args);
+ $_attr = $this->getAttributes($compiler, $args);
if ($_attr['nocache'] === true) {
- $this->compiler->trigger_template_error('nocache option not allowed', $this->compiler->lex->taglineno);
+ $compiler->trigger_template_error('nocache option not allowed', $compiler->lex->taglineno);
}
// enter nocache mode
- $this->compiler->nocache = true;
+ $compiler->nocache = true;
// this tag does not return compiled code
- $this->compiler->has_code = false;
+ $compiler->has_code = false;
return true;
- }
-}
+ }
+
+}
/**
* Smarty Internal Plugin Compile Nocacheclose Class
- */
+ *
+ * @package Smarty
+ * @subpackage Compiler
+ */
class Smarty_Internal_Compile_Nocacheclose extends Smarty_Internal_CompileBase {
+
/**
* Compiles code for the {/nocache} tag
*
- * This tag does not generate compiled output. It only sets a compiler flag
- * @param array $args array with attributes from parser
+ * This tag does not generate compiled output. It only sets a compiler flag.
+ *
+ * @param array $args array with attributes from parser
* @param object $compiler compiler object
- * @return string compiled code
+ * @return bool
*/
public function compile($args, $compiler)
{
- $this->compiler = $compiler;
- $_attr = $this->_get_attributes($args);
+ $_attr = $this->getAttributes($compiler, $args);
// leave nocache mode
- $this->compiler->nocache = false;
+ $compiler->nocache = false;
// this tag does not return compiled code
- $this->compiler->has_code = false;
+ $compiler->has_code = false;
return true;
- }
-}
+ }
+
+}
?>
\ No newline at end of file
diff --git a/gosa-core/include/smarty/sysplugins/smarty_internal_compile_private_block_plugin.php b/gosa-core/include/smarty/sysplugins/smarty_internal_compile_private_block_plugin.php
index f61ff49094467e897f2bfeb0e685edaa7f3ef5de..5288f456078c09d957d0bac8a23ceb17bb1f4c16 100644 (file)
<?php
/**
* Smarty Internal Plugin Compile Block Plugin
- *
+ *
* Compiles code for the execution of block plugin
- *
+ *
* @package Smarty
* @subpackage Compiler
- * @author Uwe Tews
+ * @author Uwe Tews
*/
/**
* Smarty Internal Plugin Compile Block Plugin Class
+ *
+ * @package Smarty
+ * @subpackage Compiler
*/
class Smarty_Internal_Compile_Private_Block_Plugin extends Smarty_Internal_CompileBase {
- // attribute definitions
- public $optional_attributes = array('_any');
+
+ /**
+ * Attribute definition: Overwrites base class.
+ *
+ * @var array
+ * @see Smarty_Internal_CompileBase
+ */
+ public $optional_attributes = array('_any');
/**
* Compiles code for the execution of block plugin
- *
- * @param array $args array with attributes from parser
- * @param object $compiler compiler object
- * @param array $parameter array with compilation parameter
- * @param string $tag name of block plugin
- * @param string $function PHP function name
+ *
+ * @param array $args array with attributes from parser
+ * @param object $compiler compiler object
+ * @param array $parameter array with compilation parameter
+ * @param string $tag name of block plugin
+ * @param string $function PHP function name
* @return string compiled code
*/
public function compile($args, $compiler, $parameter, $tag, $function)
{
- $this->compiler = $compiler;
- if (strlen($tag) < 6 || substr($tag, -5) != 'close') {
+ if (!isset($tag[5]) || substr($tag, -5) != 'close') {
// opening tag of block plugin
- // check and get attributes
- $_attr = $this->_get_attributes($args);
- if ($_attr['nocache'] === true) {
- $this->compiler->tag_nocache = true;
- }
- unset($_attr['nocache']);
+ // check and get attributes
+ $_attr = $this->getAttributes($compiler, $args);
+ if ($_attr['nocache'] === true) {
+ $compiler->tag_nocache = true;
+ }
+ unset($_attr['nocache']);
// convert attributes into parameter array string
$_paramsArray = array();
foreach ($_attr as $_key => $_value) {
@@ -44,35 +52,36 @@ class Smarty_Internal_Compile_Private_Block_Plugin extends Smarty_Internal_Compi
$_paramsArray[] = "$_key=>$_value";
} else {
$_paramsArray[] = "'$_key'=>$_value";
- }
- }
+ }
+ }
$_params = 'array(' . implode(",", $_paramsArray) . ')';
- $this->_open_tag($tag, array($_params, $this->compiler->nocache));
+ $this->openTag($compiler, $tag, array($_params, $compiler->nocache));
// maybe nocache because of nocache variables or nocache plugin
- $this->compiler->nocache = $this->compiler->nocache | $this->compiler->tag_nocache;
+ $compiler->nocache = $compiler->nocache | $compiler->tag_nocache;
// compile code
- $output = "<?php \$_smarty_tpl->smarty->_tag_stack[] = array('{$tag}', {$_params}); \$_block_repeat=true; {$function}({$_params}, null, \$_smarty_tpl, \$_block_repeat);while (\$_block_repeat) { ob_start();?>";
+ $output = "<?php \$_smarty_tpl->smarty->_tag_stack[] = array('{$tag}', {$_params}); \$_block_repeat=true; echo {$function}({$_params}, null, \$_smarty_tpl, \$_block_repeat);while (\$_block_repeat) { ob_start();?>";
} else {
// must endblock be nocache?
- if ($this->compiler->nocache) {
- $this->compiler->tag_nocache = true;
- }
+ if ($compiler->nocache) {
+ $compiler->tag_nocache = true;
+ }
// closing tag of block plugin, restore nocache
- list($_params, $this->compiler->nocache) = $this->_close_tag(substr($tag, 0, -5));
+ list($_params, $compiler->nocache) = $this->closeTag($compiler, substr($tag, 0, -5));
// This tag does create output
- $this->compiler->has_output = true;
+ $compiler->has_output = true;
// compile code
if (!isset($parameter['modifier_list'])) {
- $mod_pre = $mod_post ='';
+ $mod_pre = $mod_post ='';
} else {
- $mod_pre = ' ob_start(); ';
- $mod_post = 'echo '.$this->compiler->compileTag('private_modifier',array(),array('modifierlist'=>$parameter['modifier_list'],'value'=>'ob_get_clean()')).';';
+ $mod_pre = ' ob_start(); ';
+ $mod_post = 'echo '.$compiler->compileTag('private_modifier',array(),array('modifierlist'=>$parameter['modifier_list'],'value'=>'ob_get_clean()')).';';
}
$output = "<?php \$_block_content = ob_get_clean(); \$_block_repeat=false;".$mod_pre." echo {$function}({$_params}, \$_block_content, \$_smarty_tpl, \$_block_repeat); ".$mod_post." } array_pop(\$_smarty_tpl->smarty->_tag_stack);?>";
- }
+ }
return $output . "\n";
- }
-}
+ }
+
+}
?>
\ No newline at end of file
diff --git a/gosa-core/include/smarty/sysplugins/smarty_internal_compile_private_function_plugin.php b/gosa-core/include/smarty/sysplugins/smarty_internal_compile_private_function_plugin.php
index 965d696ef887abe43c068618a3d99607a02cee43..70e7643180c8d3b695ba3a7651d6c5247d00e5d4 100644 (file)
<?php
/**
* Smarty Internal Plugin Compile Function Plugin
- *
+ *
* Compiles code for the execution of function plugin
- *
+ *
* @package Smarty
* @subpackage Compiler
- * @author Uwe Tews
+ * @author Uwe Tews
*/
/**
* Smarty Internal Plugin Compile Function Plugin Class
+ *
+ * @package Smarty
+ * @subpackage Compiler
*/
class Smarty_Internal_Compile_Private_Function_Plugin extends Smarty_Internal_CompileBase {
- // attribute definitions
+
+ /**
+ * Attribute definition: Overwrites base class.
+ *
+ * @var array
+ * @see Smarty_Internal_CompileBase
+ */
public $required_attributes = array();
- public $optional_attributes = array('_any');
+ /**
+ * Attribute definition: Overwrites base class.
+ *
+ * @var array
+ * @see Smarty_Internal_CompileBase
+ */
+ public $optional_attributes = array('_any');
/**
* Compiles code for the execution of function plugin
- *
+ *
* @param array $args array with attributes from parser
* @param object $compiler compiler object
* @param array $parameter array with compilation parameter
@@ -29,14 +44,13 @@ class Smarty_Internal_Compile_Private_Function_Plugin extends Smarty_Internal_Co
*/
public function compile($args, $compiler, $parameter, $tag, $function)
{
- $this->compiler = $compiler;
// This tag does create output
- $this->compiler->has_output = true;
+ $compiler->has_output = true;
// check and get attributes
- $_attr = $this->_get_attributes($args);
+ $_attr = $this->getAttributes($compiler, $args);
if ($_attr['nocache'] === true) {
- $this->compiler->tag_nocache = true;
+ $compiler->tag_nocache = true;
}
unset($_attr['nocache']);
// convert attributes into parameter array string
@@ -46,13 +60,14 @@ class Smarty_Internal_Compile_Private_Function_Plugin extends Smarty_Internal_Co
$_paramsArray[] = "$_key=>$_value";
} else {
$_paramsArray[] = "'$_key'=>$_value";
- }
- }
- $_params = 'array(' . implode(",", $_paramsArray) . ')';
+ }
+ }
+ $_params = 'array(' . implode(",", $_paramsArray) . ')';
// compile code
$output = "<?php echo {$function}({$_params},\$_smarty_tpl);?>\n";
return $output;
- }
-}
+ }
+
+}
?>
\ No newline at end of file
diff --git a/gosa-core/include/smarty/sysplugins/smarty_internal_compile_private_modifier.php b/gosa-core/include/smarty/sysplugins/smarty_internal_compile_private_modifier.php
index 1648db2ed7649c086016555bcb2a47e390407887..ca4d90774f526ca75f9932331db21849de2da514 100644 (file)
<?php\r
+\r
/**\r
* Smarty Internal Plugin Compile Modifier\r
- * \r
+ *\r
* Compiles code for modifier execution\r
- * \r
+ *\r
* @package Smarty\r
* @subpackage Compiler\r
- * @author Uwe Tews \r
+ * @author Uwe Tews\r
*/\r
\r
/**\r
* Smarty Internal Plugin Compile Modifier Class\r
+ *\r
+ * @package Smarty\r
+ * @subpackage Compiler\r
*/\r
class Smarty_Internal_Compile_Private_Modifier extends Smarty_Internal_CompileBase {\r
+\r
/**\r
* Compiles code for modifier execution\r
- * \r
- * @param array $args array with attributes from parser\r
- * @param object $compiler compiler object\r
- * @param array $parameter array with compilation parameter\r
+ *\r
+ * @param array $args array with attributes from parser\r
+ * @param object $compiler compiler object\r
+ * @param array $parameter array with compilation parameter\r
* @return string compiled code\r
*/\r
public function compile($args, $compiler, $parameter)\r
{\r
- $this->compiler = $compiler;\r
- $this->smarty = $this->compiler->smarty;\r
// check and get attributes\r
- $_attr = $this->_get_attributes($args);\r
- $output = $parameter['value']; \r
+ $_attr = $this->getAttributes($compiler, $args);\r
+ $output = $parameter['value'];\r
// loop over list of modifiers\r
foreach ($parameter['modifierlist'] as $single_modifier) {\r
$modifier = $single_modifier[0];\r
- $single_modifier[0] = $output;\r
- $params = implode(',', $single_modifier); \r
+ $single_modifier[0] = $output;\r
+ $params = implode(',', $single_modifier);\r
// check for registered modifier\r
if (isset($compiler->smarty->registered_plugins[Smarty::PLUGIN_MODIFIER][$modifier])) {\r
$function = $compiler->smarty->registered_plugins[Smarty::PLUGIN_MODIFIER][$modifier][0];\r
@@ -43,27 +46,36 @@ class Smarty_Internal_Compile_Private_Modifier extends Smarty_Internal_CompileBa
$output = '$_smarty_tpl->smarty->registered_plugins[Smarty::PLUGIN_MODIFIER][\'' . $modifier . '\'][0][0]->' . $function[1] . '(' . $params . ')';\r
} else {\r
$output = $function[0] . '::' . $function[1] . '(' . $params . ')';\r
- } \r
- } \r
+ }\r
+ }\r
+ } else if (isset($compiler->smarty->registered_plugins[Smarty::PLUGIN_MODIFIERCOMPILER][$modifier][0])) {\r
+ $output = call_user_func($compiler->smarty->registered_plugins[Smarty::PLUGIN_MODIFIERCOMPILER][$modifier][0], $single_modifier, $compiler->smarty);\r
// check for plugin modifiercompiler\r
} else if ($compiler->smarty->loadPlugin('smarty_modifiercompiler_' . $modifier)) {\r
- $plugin = 'smarty_modifiercompiler_' . $modifier;\r
- $output = $plugin($single_modifier, $compiler); \r
+ // check if modifier allowed\r
+ if (!is_object($compiler->smarty->security_policy) || $compiler->smarty->security_policy->isTrustedModifier($modifier, $compiler)) {\r
+ $plugin = 'smarty_modifiercompiler_' . $modifier;\r
+ $output = $plugin($single_modifier, $compiler);\r
+ }\r
// check for plugin modifier\r
- } else if ($function = $this->compiler->getPlugin($modifier, Smarty::PLUGIN_MODIFIER)) {\r
- $output = "{$function}({$params})"; \r
+ } else if ($function = $compiler->getPlugin($modifier, Smarty::PLUGIN_MODIFIER)) {\r
+ // check if modifier allowed\r
+ if (!is_object($compiler->smarty->security_policy) || $compiler->smarty->security_policy->isTrustedModifier($modifier, $compiler)) {\r
+ $output = "{$function}({$params})";\r
+ }\r
// check if trusted PHP function\r
} else if (is_callable($modifier)) {\r
// check if modifier allowed\r
- if (!is_object($this->smarty->security_policy) || $this->smarty->security_policy->isTrustedModifier($modifier, $this->compiler)) {\r
+ if (!is_object($compiler->smarty->security_policy) || $compiler->smarty->security_policy->isTrustedPhpModifier($modifier, $compiler)) {\r
$output = "{$modifier}({$params})";\r
- } \r
+ }\r
} else {\r
- $this->compiler->trigger_template_error ("unknown modifier \"" . $modifier . "\"", $this->compiler->lex->taglineno);\r
- } \r
- } \r
+ $compiler->trigger_template_error("unknown modifier \"" . $modifier . "\"", $compiler->lex->taglineno);\r
+ }\r
+ }\r
return $output;\r
- } \r
-} \r
+ }\r
+\r
+}\r
\r
?>
\ No newline at end of file
diff --git a/gosa-core/include/smarty/sysplugins/smarty_internal_compile_private_object_block_function.php b/gosa-core/include/smarty/sysplugins/smarty_internal_compile_private_object_block_function.php
index 97737e8d24a39c3aee8935a88b63e8d3bff84d97..cca924d103fd44cee1db5133f73ac40ec3445005 100644 (file)
<?php
/**
* Smarty Internal Plugin Compile Object Block Function
- *
+ *
* Compiles code for registered objects as block function
- *
+ *
* @package Smarty
* @subpackage Compiler
- * @author Uwe Tews
+ * @author Uwe Tews
*/
/**
* Smarty Internal Plugin Compile Object Block Function Class
+ *
+ * @package Smarty
+ * @subpackage Compiler
*/
class Smarty_Internal_Compile_Private_Object_Block_Function extends Smarty_Internal_CompileBase {
- // attribute definitions
- public $required_attributes = array();
- public $optional_attributes = array('_any');
+
+ /**
+ * Attribute definition: Overwrites base class.
+ *
+ * @var array
+ * @see Smarty_Internal_CompileBase
+ */
+ public $optional_attributes = array('_any');
/**
* Compiles code for the execution of block plugin
- *
- * @param array $args array with attributes from parser
- * @param object $compiler compiler object
- * @param array $parameter array with compilation parameter
- * @param string $tag name of block object
- * @param string $methode name of methode to call
+ *
+ * @param array $args array with attributes from parser
+ * @param object $compiler compiler object
+ * @param array $parameter array with compilation parameter
+ * @param string $tag name of block object
+ * @param string $method name of method to call
* @return string compiled code
*/
- public function compile($args, $compiler, $parameter, $tag, $methode)
+ public function compile($args, $compiler, $parameter, $tag, $method)
{
- $this->compiler = $compiler;
- if (strlen($tag) < 5 || substr($tag, -5) != 'close') {
+ if (!isset($tag[5]) || substr($tag, -5) != 'close') {
// opening tag of block plugin
- // check and get attributes
- $_attr = $this->_get_attributes($args);
- if ($_attr['nocache'] === true) {
- $this->compiler->tag_nocache = true;
- }
- unset($_attr['nocache']);
+ // check and get attributes
+ $_attr = $this->getAttributes($compiler, $args);
+ if ($_attr['nocache'] === true) {
+ $compiler->tag_nocache = true;
+ }
+ unset($_attr['nocache']);
// convert attributes into parameter array string
$_paramsArray = array();
foreach ($_attr as $_key => $_value) {
@@ -45,36 +52,37 @@ class Smarty_Internal_Compile_Private_Object_Block_Function extends Smarty_Inter
$_paramsArray[] = "$_key=>$_value";
} else {
$_paramsArray[] = "'$_key'=>$_value";
- }
- }
+ }
+ }
$_params = 'array(' . implode(",", $_paramsArray) . ')';
- $this->_open_tag($tag . '->' . $methode, array($_params, $this->compiler->nocache));
+ $this->openTag($compiler, $tag . '->' . $method, array($_params, $compiler->nocache));
// maybe nocache because of nocache variables or nocache plugin
- $this->compiler->nocache = $this->compiler->nocache | $this->compiler->tag_nocache;
+ $compiler->nocache = $compiler->nocache | $compiler->tag_nocache;
// compile code
- $output = "<?php \$_smarty_tpl->smarty->_tag_stack[] = array('{$tag}->{$methode}', {$_params}); \$_block_repeat=true; \$_smarty_tpl->smarty->registered_objects['{$tag}'][0]->{$methode}({$_params}, null, \$_smarty_tpl, \$_block_repeat);while (\$_block_repeat) { ob_start();?>";
+ $output = "<?php \$_smarty_tpl->smarty->_tag_stack[] = array('{$tag}->{$method}', {$_params}); \$_block_repeat=true; echo \$_smarty_tpl->smarty->registered_objects['{$tag}'][0]->{$method}({$_params}, null, \$_smarty_tpl, \$_block_repeat);while (\$_block_repeat) { ob_start();?>";
} else {
- $base_tag = substr($tag, 0, -5);
+ $base_tag = substr($tag, 0, -5);
// must endblock be nocache?
- if ($this->compiler->nocache) {
- $this->compiler->tag_nocache = true;
- }
+ if ($compiler->nocache) {
+ $compiler->tag_nocache = true;
+ }
// closing tag of block plugin, restore nocache
- list($_params, $this->compiler->nocache) = $this->_close_tag($base_tag . '->' . $methode);
+ list($_params, $compiler->nocache) = $this->closeTag($compiler, $base_tag . '->' . $method);
// This tag does create output
- $this->compiler->has_output = true;
+ $compiler->has_output = true;
// compile code
if (!isset($parameter['modifier_list'])) {
- $mod_pre = $mod_post ='';
+ $mod_pre = $mod_post = '';
} else {
- $mod_pre = ' ob_start(); ';
- $mod_post = 'echo '.$this->compiler->compileTag('private_modifier',array(),array('modifierlist'=>$parameter['modifier_list'],'value'=>'ob_get_clean()')).';';
+ $mod_pre = ' ob_start(); ';
+ $mod_post = 'echo ' . $compiler->compileTag('private_modifier', array(), array('modifierlist' => $parameter['modifier_list'], 'value' => 'ob_get_clean()')) . ';';
}
- $output = "<?php \$_block_content = ob_get_contents(); ob_end_clean(); \$_block_repeat=false;".$mod_pre." echo \$_smarty_tpl->smarty->registered_objects['{$base_tag}'][0]->{$methode}({$_params}, \$_block_content, \$_smarty_tpl, \$_block_repeat); ".$mod_post." } array_pop(\$_smarty_tpl->smarty->_tag_stack);?>";
- }
- return $output."\n";
- }
-}
+ $output = "<?php \$_block_content = ob_get_contents(); ob_end_clean(); \$_block_repeat=false;" . $mod_pre . " echo \$_smarty_tpl->smarty->registered_objects['{$base_tag}'][0]->{$method}({$_params}, \$_block_content, \$_smarty_tpl, \$_block_repeat); " . $mod_post . " } array_pop(\$_smarty_tpl->smarty->_tag_stack);?>";
+ }
+ return $output . "\n";
+ }
+
+}
?>
\ No newline at end of file
diff --git a/gosa-core/include/smarty/sysplugins/smarty_internal_compile_private_object_function.php b/gosa-core/include/smarty/sysplugins/smarty_internal_compile_private_object_function.php
index f0755f062ec38eb9a4e35180bfd6389c235aa799..f649084c3972823a7ad9f9e4b3b60f2dca58cf9b 100644 (file)
<?php
/**
* Smarty Internal Plugin Compile Object Funtion
- *
+ *
* Compiles code for registered objects as function
- *
+ *
* @package Smarty
* @subpackage Compiler
- * @author Uwe Tews
+ * @author Uwe Tews
*/
/**
* Smarty Internal Plugin Compile Object Function Class
+ *
+ * @package Smarty
+ * @subpackage Compiler
*/
class Smarty_Internal_Compile_Private_Object_Function extends Smarty_Internal_CompileBase {
- // attribute definitions
- public $required_attributes = array();
- public $optional_attributes = array('_any');
+
+ /**
+ * Attribute definition: Overwrites base class.
+ *
+ * @var array
+ * @see Smarty_Internal_CompileBase
+ */
+ public $optional_attributes = array('_any');
/**
* Compiles code for the execution of function plugin
- *
- * @param array $args array with attributes from parser
- * @param object $compiler compiler object
- * @param array $parameter array with compilation parameter
- * @param string $tag name of function
- * @param string $methode name of methode to call
+ *
+ * @param array $args array with attributes from parser
+ * @param object $compiler compiler object
+ * @param array $parameter array with compilation parameter
+ * @param string $tag name of function
+ * @param string $method name of method to call
* @return string compiled code
*/
- public function compile($args, $compiler, $parameter, $tag, $methode)
+ public function compile($args, $compiler, $parameter, $tag, $method)
{
- $this->compiler = $compiler;
// check and get attributes
- $_attr = $this->_get_attributes($args);
+ $_attr = $this->getAttributes($compiler, $args);
if ($_attr['nocache'] === true) {
- $this->compiler->tag_nocache = true;
+ $compiler->tag_nocache = true;
}
unset($_attr['nocache']);
$_assign = null;
if (isset($_attr['assign'])) {
$_assign = $_attr['assign'];
unset($_attr['assign']);
- }
+ }
// convert attributes into parameter array string
- if ($this->compiler->smarty->registered_objects[$tag][2]) {
+ if ($compiler->smarty->registered_objects[$tag][2]) {
$_paramsArray = array();
foreach ($_attr as $_key => $_value) {
if (is_int($_key)) {
$_paramsArray[] = "$_key=>$_value";
} else {
$_paramsArray[] = "'$_key'=>$_value";
- }
- }
+ }
+ }
$_params = 'array(' . implode(",", $_paramsArray) . ')';
- $return = "\$_smarty_tpl->smarty->registered_objects['{$tag}'][0]->{$methode}({$_params},\$_smarty_tpl)";
+ $return = "\$_smarty_tpl->smarty->registered_objects['{$tag}'][0]->{$method}({$_params},\$_smarty_tpl)";
} else {
$_params = implode(",", $_attr);
- $return = "\$_smarty_tpl->smarty->registered_objects['{$tag}'][0]->{$methode}({$_params})";
- }
+ $return = "\$_smarty_tpl->smarty->registered_objects['{$tag}'][0]->{$method}({$_params})";
+ }
if (empty($_assign)) {
// This tag does create output
- $this->compiler->has_output = true;
+ $compiler->has_output = true;
$output = "<?php echo {$return};?>\n";
} else {
$output = "<?php \$_smarty_tpl->assign({$_assign},{$return});?>\n";
- }
+ }
return $output;
- }
+ }
+
}
?>
\ No newline at end of file
diff --git a/gosa-core/include/smarty/sysplugins/smarty_internal_compile_private_print_expression.php b/gosa-core/include/smarty/sysplugins/smarty_internal_compile_private_print_expression.php
index 5a9c9319199c391e903d21ba515850f2c9f6c95f..1e9a502f06a66decdafa05dd6be049e1109cd068 100644 (file)
<?php
/**
- * Smarty Internal Plugin Compile Print Expression
- *
- * Compiles any tag which will output an expression or variable
- *
- * @package Smarty
- * @subpackage Compiler
- * @author Uwe Tews
- */
+* Smarty Internal Plugin Compile Print Expression
+*
+* Compiles any tag which will output an expression or variable
+*
+* @package Smarty
+* @subpackage Compiler
+* @author Uwe Tews
+*/
/**
- * Smarty Internal Plugin Compile Print Expression Class
- */
+* Smarty Internal Plugin Compile Print Expression Class
+*
+* @package Smarty
+* @subpackage Compiler
+*/
class Smarty_Internal_Compile_Private_Print_Expression extends Smarty_Internal_CompileBase {
- // attribute definitions
- public $optional_attributes = array('assign');
- public $option_flags = array('nocache', 'nofilter');
/**
- * Compiles code for gererting output from any expression
- *
- * @param array $args array with attributes from parser
- * @param object $compiler compiler object
- * @param array $parameter array with compilation parameter
- * @return string compiled code
- */
+ * Attribute definition: Overwrites base class.
+ *
+ * @var array
+ * @see Smarty_Internal_CompileBase
+ */
+ public $optional_attributes = array('assign');
+ /**
+ * Attribute definition: Overwrites base class.
+ *
+ * @var array
+ * @see Smarty_Internal_CompileBase
+ */
+ public $option_flags = array('nocache', 'nofilter');
+
+ /**
+ * Compiles code for gererting output from any expression
+ *
+ * @param array $args array with attributes from parser
+ * @param object $compiler compiler object
+ * @param array $parameter array with compilation parameter
+ * @return string compiled code
+ */
public function compile($args, $compiler, $parameter)
{
- $this->compiler = $compiler;
// check and get attributes
- $_attr = $this->_get_attributes($args);
+ $_attr = $this->getAttributes($compiler, $args);
// nocache option
if ($_attr['nocache'] === true) {
- $this->compiler->tag_nocache = true;
- }
+ $compiler->tag_nocache = true;
+ }
// filter handling
if ($_attr['nofilter'] === true) {
$_filter = 'false';
} else {
$_filter = 'true';
- }
- // compiled output
- // compiled output
+ }
if (isset($_attr['assign'])) {
// assign output to variable
$output = "<?php \$_smarty_tpl->assign({$_attr['assign']},{$parameter['value']});?>";
} else {
// display value
- if (!$_attr['nofilter'] && isset($this->compiler->smarty->registered_filters['variable'])) {
- $output = "Smarty_Internal_Filter_Handler::runFilter('variable', {$parameter['value']}, \$_smarty_tpl, {$_filter})";
- } else {
- $output = $parameter['value'];
- }
- if (!$_attr['nofilter'] && !empty($this->compiler->smarty->default_modifiers)) {
- $modifierlist = array();
- foreach ($this->compiler->smarty->default_modifiers as $key => $single_default_modifier) {
- preg_match_all('/(\'[^\'\\\\]*(?:\\\\.[^\'\\\\]*)*\'|"[^"\\\\]*(?:\\\\.[^"\\\\]*)*"|:|[^:]+)/', $single_default_modifier, $mod_array);
- for ($i = 0, $count = count($mod_array[0]);$i < $count;$i++) {
- if ($mod_array[0][$i] != ':') {
- $modifierlist[$key][] = $mod_array[0][$i];
- }
- }
- }
- $output = $this->compiler->compileTag('private_modifier', array(), array('modifierlist' => $modifierlist, 'value' => $output));
- }
+ $output = $parameter['value'];
+ // tag modifier
if (!empty($parameter['modifierlist'])) {
- $output = $this->compiler->compileTag('private_modifier', array(), array('modifierlist' => $parameter['modifierlist'], 'value' => $output));
- }
- $this->compiler->has_output = true;
+ $output = $compiler->compileTag('private_modifier', array(), array('modifierlist' => $parameter['modifierlist'], 'value' => $output));
+ }
+ if (!$_attr['nofilter']) {
+ // default modifier
+ if (!empty($compiler->smarty->default_modifiers)) {
+ if (empty($compiler->default_modifier_list)) {
+ $modifierlist = array();
+ foreach ($compiler->smarty->default_modifiers as $key => $single_default_modifier) {
+ preg_match_all('/(\'[^\'\\\\]*(?:\\\\.[^\'\\\\]*)*\'|"[^"\\\\]*(?:\\\\.[^"\\\\]*)*"|:|[^:]+)/', $single_default_modifier, $mod_array);
+ for ($i = 0, $count = count($mod_array[0]);$i < $count;$i++) {
+ if ($mod_array[0][$i] != ':') {
+ $modifierlist[$key][] = $mod_array[0][$i];
+ }
+ }
+ }
+ $compiler->default_modifier_list = $modifierlist;
+ }
+ $output = $compiler->compileTag('private_modifier', array(), array('modifierlist' => $compiler->default_modifier_list, 'value' => $output));
+ }
+ // autoescape html
+ if ($compiler->template->smarty->escape_html) {
+ $output = "htmlspecialchars({$output}, ENT_QUOTES, SMARTY_RESOURCE_CHAR_SET)";
+ }
+ // loop over registerd filters
+ if (!empty($compiler->template->smarty->registered_filters[Smarty::FILTER_VARIABLE])) {
+ foreach ($compiler->template->smarty->registered_filters[Smarty::FILTER_VARIABLE] as $key => $function) {
+ if (!is_array($function)) {
+ $output = "{$function}({$output},\$_smarty_tpl)";
+ } else if (is_object($function[0])) {
+ $output = "\$_smarty_tpl->smarty->registered_filters[Smarty::FILTER_VARIABLE][{$key}][0]->{$function[1]}({$output},\$_smarty_tpl)";
+ } else {
+ $output = "{$function[0]}::{$function[1]}({$output},\$_smarty_tpl)";
+ }
+ }
+ }
+ // auto loaded filters
+ if (isset($compiler->smarty->autoload_filters[Smarty::FILTER_VARIABLE])) {
+ foreach ((array)$compiler->template->smarty->autoload_filters[Smarty::FILTER_VARIABLE] as $name) {
+ $result = $this->compile_output_filter($compiler, $name, $output);
+ if ($result !== false) {
+ $output = $result;
+ } else {
+ // not found, throw exception
+ throw new SmartyException("Unable to load filter '{$name}'");
+ }
+ }
+ }
+ if (isset($compiler->template->variable_filters)) {
+ foreach ($compiler->template->variable_filters as $filter) {
+ if (count($filter) == 1 && ($result = $this->compile_output_filter($compiler, $filter[0], $output)) !== false) {
+ $output = $result;
+ } else {
+ $output = $compiler->compileTag('private_modifier', array(), array('modifierlist' => array($filter), 'value' => $output));
+ }
+ }
+ }
+ }
+
+ $compiler->has_output = true;
$output = "<?php echo {$output};?>";
- }
+ }
return $output;
- }
-}
+ }
+
+ /**
+ * @param object $compiler compiler object
+ * @param string $name name of variable filter
+ * @param type $output embedded output
+ * @return string
+ */
+ private function compile_output_filter($compiler, $name, $output)
+ {
+ $plugin_name = "smarty_variablefilter_{$name}";
+ $path = $compiler->smarty->loadPlugin($plugin_name, false);
+ if ($path) {
+ if ($compiler->template->caching) {
+ $compiler->template->required_plugins['nocache'][$name][Smarty::FILTER_VARIABLE]['file'] = $path;
+ $compiler->template->required_plugins['nocache'][$name][Smarty::FILTER_VARIABLE]['function'] = $plugin_name;
+ } else {
+ $compiler->template->required_plugins['compiled'][$name][Smarty::FILTER_VARIABLE]['file'] = $path;
+ $compiler->template->required_plugins['compiled'][$name][Smarty::FILTER_VARIABLE]['function'] = $plugin_name;
+ }
+ } else {
+ // not found
+ return false;
+ }
+ return "{$plugin_name}({$output},\$_smarty_tpl)";
+ }
+
+}
?>
\ No newline at end of file
diff --git a/gosa-core/include/smarty/sysplugins/smarty_internal_compile_private_registered_block.php b/gosa-core/include/smarty/sysplugins/smarty_internal_compile_private_registered_block.php
index 054036241175a0696a068d96e9a1733813cff9bc..9fed36c3bdfccc506a5fcdf2d64bd840802aef33 100644 (file)
<?php\r
/**\r
* Smarty Internal Plugin Compile Registered Block\r
- * \r
+ *\r
* Compiles code for the execution of a registered block function\r
- * \r
+ *\r
* @package Smarty\r
* @subpackage Compiler\r
- * @author Uwe Tews \r
+ * @author Uwe Tews\r
*/\r
\r
/**\r
* Smarty Internal Plugin Compile Registered Block Class\r
+ *\r
+ * @package Smarty\r
+ * @subpackage Compiler\r
*/\r
class Smarty_Internal_Compile_Private_Registered_Block extends Smarty_Internal_CompileBase {\r
- // attribute definitions\r
- public $optional_attributes = array('_any'); \r
+\r
+ /**\r
+ * Attribute definition: Overwrites base class.\r
+ *\r
+ * @var array\r
+ * @see Smarty_Internal_CompileBase\r
+ */\r
+ public $optional_attributes = array('_any');\r
\r
/**\r
* Compiles code for the execution of a block function\r
- * \r
- * @param array $args array with attributes from parser\r
- * @param object $compiler compiler object\r
- * @param array $parameter array with compilation parameter\r
- * @param string $tag name of block function\r
+ *\r
+ * @param array $args array with attributes from parser\r
+ * @param object $compiler compiler object\r
+ * @param array $parameter array with compilation parameter\r
+ * @param string $tag name of block function\r
* @return string compiled code\r
*/\r
public function compile($args, $compiler, $parameter, $tag)\r
{\r
- $this->compiler = $compiler;\r
- if (strlen($tag) < 6 || substr($tag,-5) != 'close') {\r
+ if (!isset($tag[5]) || substr($tag,-5) != 'close') {\r
// opening tag of block plugin\r
- // check and get attributes\r
- $_attr = $this->_get_attributes($args); \r
- if ($_attr['nocache']) {\r
- $this->compiler->tag_nocache = true;\r
- }\r
- unset($_attr['nocache']);\r
+ // check and get attributes\r
+ $_attr = $this->getAttributes($compiler, $args);\r
+ if ($_attr['nocache']) {\r
+ $compiler->tag_nocache = true;\r
+ }\r
+ unset($_attr['nocache']);\r
+ if (isset($compiler->smarty->registered_plugins[Smarty::PLUGIN_BLOCK][$tag])) {\r
+ $tag_info = $compiler->smarty->registered_plugins[Smarty::PLUGIN_BLOCK][$tag];\r
+ } else {\r
+ $tag_info = $compiler->default_handler_plugins[Smarty::PLUGIN_BLOCK][$tag];\r
+ }\r
// convert attributes into parameter array string\r
$_paramsArray = array();\r
foreach ($_attr as $_key => $_value) {\r
if (is_int($_key)) {\r
$_paramsArray[] = "$_key=>$_value";\r
- } elseif ($this->compiler->template->caching && in_array($_key,$compiler->smarty->registered_plugins[Smarty::PLUGIN_BLOCK][$tag][2])) {\r
- $_value = str_replace("'","^#^",$_value);\r
- $_paramsArray[] = "'$_key'=>^#^.var_export($_value,true).^#^";\r
+ } elseif ($compiler->template->caching && in_array($_key,$tag_info[2])) {\r
+ $_value = str_replace("'","^#^",$_value);\r
+ $_paramsArray[] = "'$_key'=>^#^.var_export($_value,true).^#^";\r
} else {\r
$_paramsArray[] = "'$_key'=>$_value";\r
- } \r
- } \r
+ }\r
+ }\r
$_params = 'array(' . implode(",", $_paramsArray) . ')';\r
\r
- $this->_open_tag($tag, array($_params, $this->compiler->nocache)); \r
+ $this->openTag($compiler, $tag, array($_params, $compiler->nocache));\r
// maybe nocache because of nocache variables or nocache plugin\r
- $this->compiler->nocache = !$compiler->smarty->registered_plugins[Smarty::PLUGIN_BLOCK][$tag][1] | $this->compiler->nocache | $this->compiler->tag_nocache;\r
- $function = $compiler->smarty->registered_plugins[Smarty::PLUGIN_BLOCK][$tag][0]; \r
+ $compiler->nocache = !$tag_info[1] | $compiler->nocache | $compiler->tag_nocache;\r
+ $function = $tag_info[0];\r
// compile code\r
if (!is_array($function)) {\r
- $output = "<?php \$_smarty_tpl->smarty->_tag_stack[] = array('{$tag}', {$_params}); \$_block_repeat=true; {$function}({$_params}, null, \$_smarty_tpl, \$_block_repeat);while (\$_block_repeat) { ob_start();?>";\r
+ $output = "<?php \$_smarty_tpl->smarty->_tag_stack[] = array('{$tag}', {$_params}); \$_block_repeat=true; echo {$function}({$_params}, null, \$_smarty_tpl, \$_block_repeat);while (\$_block_repeat) { ob_start();?>";\r
} else if (is_object($function[0])) {\r
- $output = "<?php \$_smarty_tpl->smarty->_tag_stack[] = array('{$tag}', {$_params}); \$_block_repeat=true; \$_smarty_tpl->smarty->registered_plugins['block']['{$tag}'][0][0]->{$function[1]}({$_params}, null, \$_smarty_tpl, \$_block_repeat);while (\$_block_repeat) { ob_start();?>";\r
+ $output = "<?php \$_smarty_tpl->smarty->_tag_stack[] = array('{$tag}', {$_params}); \$_block_repeat=true; echo \$_smarty_tpl->smarty->registered_plugins['block']['{$tag}'][0][0]->{$function[1]}({$_params}, null, \$_smarty_tpl, \$_block_repeat);while (\$_block_repeat) { ob_start();?>";\r
} else {\r
- $output = "<?php \$_smarty_tpl->smarty->_tag_stack[] = array('{$tag}', {$_params}); \$_block_repeat=true; {$function[0]}::{$function[1]}({$_params}, null, \$_smarty_tpl, \$_block_repeat);while (\$_block_repeat) { ob_start();?>";\r
- } \r
+ $output = "<?php \$_smarty_tpl->smarty->_tag_stack[] = array('{$tag}', {$_params}); \$_block_repeat=true; echo {$function[0]}::{$function[1]}({$_params}, null, \$_smarty_tpl, \$_block_repeat);while (\$_block_repeat) { ob_start();?>";\r
+ }\r
} else {\r
// must endblock be nocache?\r
- if ($this->compiler->nocache) {\r
- $this->compiler->tag_nocache = true;\r
- } \r
- $base_tag = substr($tag, 0, -5); \r
+ if ($compiler->nocache) {\r
+ $compiler->tag_nocache = true;\r
+ }\r
+ $base_tag = substr($tag, 0, -5);\r
// closing tag of block plugin, restore nocache\r
- list($_params, $this->compiler->nocache) = $this->_close_tag($base_tag); \r
+ list($_params, $compiler->nocache) = $this->closeTag($compiler, $base_tag);\r
// This tag does create output\r
- $this->compiler->has_output = true;\r
- $function = $compiler->smarty->registered_plugins[Smarty::PLUGIN_BLOCK][$base_tag][0]; \r
+ $compiler->has_output = true;\r
+ if (isset($compiler->smarty->registered_plugins[Smarty::PLUGIN_BLOCK][$base_tag])) {\r
+ $function = $compiler->smarty->registered_plugins[Smarty::PLUGIN_BLOCK][$base_tag][0];\r
+ } else {\r
+ $function = $compiler->default_handler_plugins[Smarty::PLUGIN_BLOCK][$base_tag][0];\r
+ }\r
// compile code\r
if (!isset($parameter['modifier_list'])) {\r
- $mod_pre = $mod_post ='';\r
+ $mod_pre = $mod_post ='';\r
} else {\r
- $mod_pre = ' ob_start(); ';\r
- $mod_post = 'echo '.$this->compiler->compileTag('private_modifier',array(),array('modifierlist'=>$parameter['modifier_list'],'value'=>'ob_get_clean()')).';';\r
+ $mod_pre = ' ob_start(); ';\r
+ $mod_post = 'echo '.$compiler->compileTag('private_modifier',array(),array('modifierlist'=>$parameter['modifier_list'],'value'=>'ob_get_clean()')).';';\r
}\r
if (!is_array($function)) {\r
$output = "<?php \$_block_content = ob_get_clean(); \$_block_repeat=false;".$mod_pre." echo {$function}({$_params}, \$_block_content, \$_smarty_tpl, \$_block_repeat);".$mod_post." } array_pop(\$_smarty_tpl->smarty->_tag_stack);?>";\r
@@ -86,10 +103,11 @@ class Smarty_Internal_Compile_Private_Registered_Block extends Smarty_Internal_C
$output = "<?php \$_block_content = ob_get_clean(); \$_block_repeat=false;".$mod_pre." echo \$_smarty_tpl->smarty->registered_plugins['block']['{$base_tag}'][0][0]->{$function[1]}({$_params}, \$_block_content, \$_smarty_tpl, \$_block_repeat); ".$mod_post."} array_pop(\$_smarty_tpl->smarty->_tag_stack);?>";\r
} else {\r
$output = "<?php \$_block_content = ob_get_clean(); \$_block_repeat=false;".$mod_pre." echo {$function[0]}::{$function[1]}({$_params}, \$_block_content, \$_smarty_tpl, \$_block_repeat); ".$mod_post."} array_pop(\$_smarty_tpl->smarty->_tag_stack);?>";\r
- } \r
- } \r
- return $output."\n";\r
- } \r
-} \r
+ }\r
+ }\r
+ return $output . "\n";\r
+ }\r
+\r
+}\r
\r
?>
\ No newline at end of file
diff --git a/gosa-core/include/smarty/sysplugins/smarty_internal_compile_private_registered_function.php b/gosa-core/include/smarty/sysplugins/smarty_internal_compile_private_registered_function.php
index f79edf6849c836c96cc9e4023afdf501d26a435c..5058bfbbdb88ac38c2a3375d635b50025b63311c 100644 (file)
<?php\r
/**\r
* Smarty Internal Plugin Compile Registered Function\r
- * \r
+ *\r
* Compiles code for the execution of a registered function\r
- * \r
+ *\r
* @package Smarty\r
* @subpackage Compiler\r
- * @author Uwe Tews \r
+ * @author Uwe Tews\r
*/\r
- \r
+\r
/**\r
* Smarty Internal Plugin Compile Registered Function Class\r
+ *\r
+ * @package Smarty\r
+ * @subpackage Compiler\r
*/\r
class Smarty_Internal_Compile_Private_Registered_Function extends Smarty_Internal_CompileBase {\r
- // attribute definitions\r
- public $optional_attributes = array('_any'); \r
+\r
+ /**\r
+ * Attribute definition: Overwrites base class.\r
+ *\r
+ * @var array\r
+ * @see Smarty_Internal_CompileBase\r
+ */\r
+ public $optional_attributes = array('_any');\r
\r
/**\r
* Compiles code for the execution of a registered function\r
- * \r
- * @param array $args array with attributes from parser\r
- * @param object $compiler compiler object\r
- * @param array $parameter array with compilation parameter\r
- * @param string $tag name of function\r
+ *\r
+ * @param array $args array with attributes from parser\r
+ * @param object $compiler compiler object\r
+ * @param array $parameter array with compilation parameter\r
+ * @param string $tag name of function\r
* @return string compiled code\r
*/\r
public function compile($args, $compiler, $parameter, $tag)\r
{\r
- $this->compiler = $compiler; \r
// This tag does create output\r
- $this->compiler->has_output = true;\r
+ $compiler->has_output = true;\r
// check and get attributes\r
- $_attr = $this->_get_attributes($args); \r
+ $_attr = $this->getAttributes($compiler, $args);\r
if ($_attr['nocache']) {\r
- $this->compiler->tag_nocache = true;\r
+ $compiler->tag_nocache = true;\r
}\r
unset($_attr['nocache']);\r
+ if (isset($compiler->smarty->registered_plugins[Smarty::PLUGIN_FUNCTION][$tag])) {\r
+ $tag_info = $compiler->smarty->registered_plugins[Smarty::PLUGIN_FUNCTION][$tag];\r
+ } else {\r
+ $tag_info = $compiler->default_handler_plugins[Smarty::PLUGIN_FUNCTION][$tag];\r
+ }\r
// not cachable?\r
- $this->compiler->tag_nocache = $this->compiler->tag_nocache || !$compiler->smarty->registered_plugins[Smarty::PLUGIN_FUNCTION][$tag][1]; \r
+ $compiler->tag_nocache = $compiler->tag_nocache || !$tag_info[1];\r
// convert attributes into parameter array string\r
$_paramsArray = array();\r
foreach ($_attr as $_key => $_value) {\r
if (is_int($_key)) {\r
$_paramsArray[] = "$_key=>$_value";\r
- } elseif ($this->compiler->template->caching && in_array($_key,$compiler->smarty->registered_plugins[Smarty::PLUGIN_FUNCTION][$tag][2])) {\r
- $_value = str_replace("'","^#^",$_value);\r
+ } elseif ($compiler->template->caching && in_array($_key,$tag_info[2])) {\r
+ $_value = str_replace("'","^#^",$_value);\r
$_paramsArray[] = "'$_key'=>^#^.var_export($_value,true).^#^";\r
} else {\r
$_paramsArray[] = "'$_key'=>$_value";\r
- } \r
- } \r
- $_params = 'array(' . implode(",", $_paramsArray) . ')'; \r
- $function = $compiler->smarty->registered_plugins[Smarty::PLUGIN_FUNCTION][$tag][0]; \r
+ }\r
+ }\r
+ $_params = 'array(' . implode(",", $_paramsArray) . ')';\r
+ $function = $tag_info[0];\r
// compile code\r
if (!is_array($function)) {\r
$output = "<?php echo {$function}({$_params},\$_smarty_tpl);?>\n";\r
$output = "<?php echo \$_smarty_tpl->smarty->registered_plugins[Smarty::PLUGIN_FUNCTION]['{$tag}'][0][0]->{$function[1]}({$_params},\$_smarty_tpl);?>\n";\r
} else {\r
$output = "<?php echo {$function[0]}::{$function[1]}({$_params},\$_smarty_tpl);?>\n";\r
- } \r
+ }\r
return $output;\r
- } \r
-} \r
+ }\r
+\r
+}\r
\r
?>
\ No newline at end of file
diff --git a/gosa-core/include/smarty/sysplugins/smarty_internal_compile_private_special_variable.php b/gosa-core/include/smarty/sysplugins/smarty_internal_compile_private_special_variable.php
index 5d6ae8015ec371580a087699b182a6c027037925..f9adcec866b3ac9e78986535740b1a860983d03c 100644 (file)
<?php
/**
* Smarty Internal Plugin Compile Special Smarty Variable
- *
+ *
* Compiles the special $smarty variables
- *
+ *
* @package Smarty
* @subpackage Compiler
- * @author Uwe Tews
+ * @author Uwe Tews
*/
/**
* Smarty Internal Plugin Compile special Smarty Variable Class
+ *
+ * @package Smarty
+ * @subpackage Compiler
*/
class Smarty_Internal_Compile_Private_Special_Variable extends Smarty_Internal_CompileBase {
+
/**
* Compiles code for the speical $smarty variables
- *
- * @param array $args array with attributes from parser
+ *
+ * @param array $args array with attributes from parser
* @param object $compiler compiler object
* @return string compiled code
*/
if (isset($compiler->smarty->security_policy) && !$compiler->smarty->security_policy->allow_super_globals) {
$compiler->trigger_template_error("(secure mode) super globals not permitted");
break;
- }
+ }
$compiled_ref = '$_COOKIE';
break;
@@ -51,15 +55,15 @@ class Smarty_Internal_Compile_Private_Special_Variable extends Smarty_Internal_C
if (isset($compiler->smarty->security_policy) && !$compiler->smarty->security_policy->allow_super_globals) {
$compiler->trigger_template_error("(secure mode) super globals not permitted");
break;
- }
+ }
$compiled_ref = '$_'.strtoupper($variable);
break;
case 'template':
- return 'basename($_smarty_tpl->getTemplateFilepath())';
+ return 'basename($_smarty_tpl->source->filepath)';
case 'current_dir':
- return 'dirname($_smarty_tpl->getTemplateFilepath())';
+ return 'dirname($_smarty_tpl->source->filepath)';
case 'version':
$_version = Smarty::SMARTY_VERSION;
if (isset($compiler->smarty->security_policy) && !$compiler->smarty->security_policy->allow_constants) {
$compiler->trigger_template_error("(secure mode) constants not permitted");
break;
- }
+ }
return '@' . trim($_index[1], "'");
case 'config':
@@ -85,15 +89,16 @@ class Smarty_Internal_Compile_Private_Special_Variable extends Smarty_Internal_C
default:
$compiler->trigger_template_error('$smarty.' . trim($_index[0], "'") . ' is invalid');
break;
- }
+ }
if (isset($_index[1])) {
array_shift($_index);
foreach ($_index as $_ind) {
$compiled_ref = $compiled_ref . "[$_ind]";
- }
- }
+ }
+ }
return $compiled_ref;
- }
-}
+ }
+
+}
?>
\ No newline at end of file
diff --git a/gosa-core/include/smarty/sysplugins/smarty_internal_compile_rdelim.php b/gosa-core/include/smarty/sysplugins/smarty_internal_compile_rdelim.php
index 6436bfd1659009ada85ba7e189aeb9fc067a2350..807c7e2b9a20a23d8303c75b1d2907a5f327ab71 100644 (file)
<?php
-
/**
* Smarty Internal Plugin Compile Rdelim
*
- * Compiles the {rdelim} tag
+ * Compiles the {rdelim} tag
* @package Smarty
* @subpackage Compiler
* @author Uwe Tews
/**
* Smarty Internal Plugin Compile Rdelim Class
- */
+ *
+ * @package Smarty
+ * @subpackage Compiler
+ */
class Smarty_Internal_Compile_Rdelim extends Smarty_Internal_CompileBase {
+
/**
* Compiles code for the {rdelim} tag
*
- * This tag does output the right delimiter
- * @param array $args array with attributes from parser
+ * This tag does output the right delimiter.
+ *
+ * @param array $args array with attributes from parser
* @param object $compiler compiler object
* @return string compiled code
*/
public function compile($args, $compiler)
{
- $this->compiler = $compiler;
- $_attr = $this->_get_attributes($args);
+ $_attr = $this->getAttributes($compiler, $args);
if ($_attr['nocache'] === true) {
- $this->compiler->trigger_template_error('nocache option not allowed', $this->compiler->lex->taglineno);
+ $compiler->trigger_template_error('nocache option not allowed', $compiler->lex->taglineno);
}
// this tag does not return compiled code
- $this->compiler->has_code = true;
- return $this->compiler->smarty->right_delimiter;
- }
+ $compiler->has_code = true;
+ return $compiler->smarty->right_delimiter;
+ }
+
}
?>
\ No newline at end of file
diff --git a/gosa-core/include/smarty/sysplugins/smarty_internal_compile_section.php b/gosa-core/include/smarty/sysplugins/smarty_internal_compile_section.php
index 0768b026e107a1227aa1d68cd34e1c10b1e089ca..ccb7673d8047cfe4658ed982f8daafb5690f50bd 100644 (file)
<?php
/**
* Smarty Internal Plugin Compile Section
- *
+ *
* Compiles the {section} {sectionelse} {/section} tags
- *
+ *
* @package Smarty
* @subpackage Compiler
- * @author Uwe Tews
+ * @author Uwe Tews
*/
/**
* Smarty Internal Plugin Compile Section Class
+ *
+ * @package Smarty
+ * @subpackage Compiler
*/
class Smarty_Internal_Compile_Section extends Smarty_Internal_CompileBase {
- // attribute definitions
+
+ /**
+ * Attribute definition: Overwrites base class.
+ *
+ * @var array
+ * @see Smarty_Internal_CompileBase
+ */
public $required_attributes = array('name', 'loop');
- public $shorttag_order = array('name', 'loop');
- public $optional_attributes = array('start', 'step', 'max', 'show');
+ /**
+ * Attribute definition: Overwrites base class.
+ *
+ * @var array
+ * @see Smarty_Internal_CompileBase
+ */
+ public $shorttag_order = array('name', 'loop');
+ /**
+ * Attribute definition: Overwrites base class.
+ *
+ * @var array
+ * @see Smarty_Internal_CompileBase
+ */
+ public $optional_attributes = array('start', 'step', 'max', 'show');
/**
* Compiles code for the {section} tag
- *
- * @param array $args array with attributes from parser
+ *
+ * @param array $args array with attributes from parser
* @param object $compiler compiler object
* @return string compiled code
*/
public function compile($args, $compiler)
{
- $this->compiler = $compiler;
// check and get attributes
- $_attr = $this->_get_attributes($args);
+ $_attr = $this->getAttributes($compiler, $args);
- $this->_open_tag('section', array('section',$this->compiler->nocache));
+ $this->openTag($compiler, 'section', array('section', $compiler->nocache));
// maybe nocache because of nocache variables
- $this->compiler->nocache = $this->compiler->nocache | $this->compiler->tag_nocache;
+ $compiler->nocache = $compiler->nocache | $compiler->tag_nocache;
$output = "<?php ";
$section_name = $_attr['name'];
-
- $output .= "unset(\$_smarty_tpl->tpl_vars['smarty']->value['section'][$section_name]);\n";
+
+ $output .= "if (isset(\$_smarty_tpl->tpl_vars['smarty']->value['section'][$section_name])) unset(\$_smarty_tpl->tpl_vars['smarty']->value['section'][$section_name]);\n";
$section_props = "\$_smarty_tpl->tpl_vars['smarty']->value['section'][$section_name]";
foreach ($_attr as $attr_name => $attr_value) {
case 'step':
$output .= "{$section_props}['$attr_name'] = ((int)$attr_value) == 0 ? 1 : (int)$attr_value;\n";
break;
- }
- }
+ }
+ }
if (!isset($_attr['show']))
$output .= "{$section_props}['show'] = true;\n";
$output .= "{$section_props}['start'] = {$section_props}['step'] > 0 ? 0 : {$section_props}['loop']-1;\n";
else {
$output .= "if ({$section_props}['start'] < 0)\n" . " {$section_props}['start'] = max({$section_props}['step'] > 0 ? 0 : -1, {$section_props}['loop'] + {$section_props}['start']);\n" . "else\n" . " {$section_props}['start'] = min({$section_props}['start'], {$section_props}['step'] > 0 ? {$section_props}['loop'] : {$section_props}['loop']-1);\n";
- }
+ }
$output .= "if ({$section_props}['show']) {\n";
if (!isset($_attr['start']) && !isset($_attr['step']) && !isset($_attr['max'])) {
$output .= " {$section_props}['total'] = {$section_props}['loop'];\n";
} else {
$output .= " {$section_props}['total'] = min(ceil(({$section_props}['step'] > 0 ? {$section_props}['loop'] - {$section_props}['start'] : {$section_props}['start']+1)/abs({$section_props}['step'])), {$section_props}['max']);\n";
- }
+ }
$output .= " if ({$section_props}['total'] == 0)\n" . " {$section_props}['show'] = false;\n" . "} else\n" . " {$section_props}['total'] = 0;\n";
$output .= "if ({$section_props}['show']):\n";
$output .= "?>";
return $output;
- }
-}
+ }
+
+}
/**
-* Smarty Internal Plugin Compile Sectionelse Class
-*/
+ * Smarty Internal Plugin Compile Sectionelse Class
+ *
+ * @package Smarty
+ * @subpackage Compiler
+ */
class Smarty_Internal_Compile_Sectionelse extends Smarty_Internal_CompileBase {
+
/**
* Compiles code for the {sectionelse} tag
- *
- * @param array $args array with attributes from parser
+ *
+ * @param array $args array with attributes from parser
* @param object $compiler compiler object
* @return string compiled code
*/
public function compile($args, $compiler)
{
- $this->compiler = $compiler;
// check and get attributes
- $_attr = $this->_get_attributes($args);
+ $_attr = $this->getAttributes($compiler, $args);
- list($_open_tag, $nocache) = $this->_close_tag(array('section'));
- $this->_open_tag('sectionelse',array('sectionelse', $nocache));
+ list($openTag, $nocache) = $this->closeTag($compiler, array('section'));
+ $this->openTag($compiler, 'sectionelse', array('sectionelse', $nocache));
return "<?php endfor; else: ?>";
- }
-}
+ }
+
+}
/**
* Smarty Internal Plugin Compile Sectionclose Class
+ *
+ * @package Smarty
+ * @subpackage Compiler
*/
class Smarty_Internal_Compile_Sectionclose extends Smarty_Internal_CompileBase {
+
/**
* Compiles code for the {/section} tag
- *
- * @param array $args array with attributes from parser
+ *
+ * @param array $args array with attributes from parser
* @param object $compiler compiler object
* @return string compiled code
*/
public function compile($args, $compiler)
{
- $this->compiler = $compiler;
// check and get attributes
- $_attr = $this->_get_attributes($args);
+ $_attr = $this->getAttributes($compiler, $args);
// must endblock be nocache?
- if ($this->compiler->nocache) {
- $this->compiler->tag_nocache = true;
+ if ($compiler->nocache) {
+ $compiler->tag_nocache = true;
}
- list($_open_tag, $this->compiler->nocache) = $this->_close_tag(array('section', 'sectionelse'));
+ list($openTag, $compiler->nocache) = $this->closeTag($compiler, array('section', 'sectionelse'));
- if ($_open_tag == 'sectionelse')
+ if ($openTag == 'sectionelse') {
return "<?php endif; ?>";
- else
+ } else {
return "<?php endfor; endif; ?>";
- }
-}
+ }
+ }
+
+}
?>
\ No newline at end of file
diff --git a/gosa-core/include/smarty/sysplugins/smarty_internal_compile_setfilter.php b/gosa-core/include/smarty/sysplugins/smarty_internal_compile_setfilter.php
--- /dev/null
@@ -0,0 +1,72 @@
+<?php\r
+/**\r
+ * Smarty Internal Plugin Compile Setfilter\r
+ *\r
+ * Compiles code for setfilter tag\r
+ *\r
+ * @package Smarty\r
+ * @subpackage Compiler\r
+ * @author Uwe Tews\r
+ */\r
+\r
+/**\r
+ * Smarty Internal Plugin Compile Setfilter Class\r
+ *\r
+ * @package Smarty\r
+ * @subpackage Compiler\r
+ */\r
+class Smarty_Internal_Compile_Setfilter extends Smarty_Internal_CompileBase {\r
+\r
+ /**\r
+ * Compiles code for setfilter tag\r
+ *\r
+ * @param array $args array with attributes from parser\r
+ * @param object $compiler compiler object\r
+ * @param array $parameter array with compilation parameter\r
+ * @return string compiled code\r
+ */\r
+ public function compile($args, $compiler, $parameter)\r
+ {\r
+ $compiler->variable_filter_stack[] = $compiler->template->variable_filters;\r
+ $compiler->template->variable_filters = $parameter['modifier_list'];\r
+ // this tag does not return compiled code\r
+ $compiler->has_code = false;\r
+ return true;\r
+ }\r
+\r
+}\r
+\r
+/**\r
+ * Smarty Internal Plugin Compile Setfilterclose Class\r
+ *\r
+ * @package Smarty\r
+ * @subpackage Compiler\r
+ */\r
+class Smarty_Internal_Compile_Setfilterclose extends Smarty_Internal_CompileBase {\r
+\r
+ /**\r
+ * Compiles code for the {/setfilter} tag\r
+ *\r
+ * This tag does not generate compiled output. It resets variable filter.\r
+ *\r
+ * @param array $args array with attributes from parser\r
+ * @param object $compiler compiler object\r
+ * @return string compiled code\r
+ */\r
+ public function compile($args, $compiler)\r
+ {\r
+ $_attr = $this->getAttributes($compiler, $args);\r
+ // reset variable filter to previous state\r
+ if (count($compiler->variable_filter_stack)) {\r
+ $compiler->template->variable_filters = array_pop($compiler->variable_filter_stack);\r
+ } else {\r
+ $compiler->template->variable_filters = array();\r
+ }\r
+ // this tag does not return compiled code\r
+ $compiler->has_code = false;\r
+ return true;\r
+ }\r
+\r
+}\r
+\r
+?>
\ No newline at end of file
diff --git a/gosa-core/include/smarty/sysplugins/smarty_internal_compile_while.php b/gosa-core/include/smarty/sysplugins/smarty_internal_compile_while.php
index 7e87a2291e91e4be766ea8a8170d7d04d939f223..46b6e2696d3acca483483af56fcd2670db43ec0c 100644 (file)
<?php
/**
-* Smarty Internal Plugin Compile While
-*
-* Compiles the {while} tag
-*
-* @package Smarty
-* @subpackage Compiler
-* @author Uwe Tews
-*/
+ * Smarty Internal Plugin Compile While
+ *
+ * Compiles the {while} tag
+ *
+ * @package Smarty
+ * @subpackage Compiler
+ * @author Uwe Tews
+ */
/**
-* Smarty Internal Plugin Compile While Class
-*/
+ * Smarty Internal Plugin Compile While Class
+ *
+ * @package Smarty
+ * @subpackage Compiler
+ */
class Smarty_Internal_Compile_While extends Smarty_Internal_CompileBase {
+
/**
- * Compiles code for the {while} tag
- *
- * @param array $args array with attributes from parser
- * @param object $compiler compiler object
- * @param array $parameter array with compilation parameter
- * @return string compiled code
- */
+ * Compiles code for the {while} tag
+ *
+ * @param array $args array with attributes from parser
+ * @param object $compiler compiler object
+ * @param array $parameter array with compilation parameter
+ * @return string compiled code
+ */
public function compile($args, $compiler, $parameter)
{
- $this->compiler = $compiler;
// check and get attributes
- $_attr = $this->_get_attributes($args);
- $this->_open_tag('while', $this->compiler->nocache);
+ $_attr = $this->getAttributes($compiler, $args);
+ $this->openTag($compiler, 'while', $compiler->nocache);
// maybe nocache because of nocache variables
- $this->compiler->nocache = $this->compiler->nocache | $this->compiler->tag_nocache;
+ $compiler->nocache = $compiler->nocache | $compiler->tag_nocache;
if (is_array($parameter['if condition'])) {
- if ($this->compiler->nocache) {
- $_nocache = ',true';
- // create nocache var to make it know for further compiling
- if (is_array($parameter['if condition']['var'])) {
- $this->compiler->template->tpl_vars[trim($parameter['if condition']['var']['var'], "'")] = new Smarty_variable(null, true);
- } else {
- $this->compiler->template->tpl_vars[trim($parameter['if condition']['var'], "'")] = new Smarty_variable(null, true);
- }
- } else {
- $_nocache = '';
- }
+ if ($compiler->nocache) {
+ $_nocache = ',true';
+ // create nocache var to make it know for further compiling
+ if (is_array($parameter['if condition']['var'])) {
+ $compiler->template->tpl_vars[trim($parameter['if condition']['var']['var'], "'")] = new Smarty_variable(null, true);
+ } else {
+ $compiler->template->tpl_vars[trim($parameter['if condition']['var'], "'")] = new Smarty_variable(null, true);
+ }
+ } else {
+ $_nocache = '';
+ }
if (is_array($parameter['if condition']['var'])) {
- $_output = "<?php if (!isset(\$_smarty_tpl->tpl_vars[".$parameter['if condition']['var']['var']."]) || !is_array(\$_smarty_tpl->tpl_vars[".$parameter['if condition']['var']['var']."]->value)) \$_smarty_tpl->createLocalArrayVariable(".$parameter['if condition']['var']['var']."$_nocache);\n";
- $_output .= "while (\$_smarty_tpl->tpl_vars[".$parameter['if condition']['var']['var']."]->value".$parameter['if condition']['var']['smarty_internal_index']." = ".$parameter['if condition']['value']."){?>";
+ $_output = "<?php if (!isset(\$_smarty_tpl->tpl_vars[" . $parameter['if condition']['var']['var'] . "]) || !is_array(\$_smarty_tpl->tpl_vars[" . $parameter['if condition']['var']['var'] . "]->value)) \$_smarty_tpl->createLocalArrayVariable(" . $parameter['if condition']['var']['var'] . "$_nocache);\n";
+ $_output .= "while (\$_smarty_tpl->tpl_vars[" . $parameter['if condition']['var']['var'] . "]->value" . $parameter['if condition']['var']['smarty_internal_index'] . " = " . $parameter['if condition']['value'] . "){?>";
} else {
- $_output = "<?php \$_smarty_tpl->tpl_vars[".$parameter['if condition']['var']."] = new Smarty_Variable(\$_smarty_tpl->getVariable(".$parameter['if condition']['var'].",null,true,false)->value{$_nocache});";
- $_output .= "while (\$_smarty_tpl->tpl_vars[".$parameter['if condition']['var']."]->value = ".$parameter['if condition']['value']."){?>";
- }
+ $_output = "<?php if (!isset(\$_smarty_tpl->tpl_vars[" . $parameter['if condition']['var'] . "])) \$_smarty_tpl->tpl_vars[" . $parameter['if condition']['var'] . "] = new Smarty_Variable(null{$_nocache});";
+ $_output .= "while (\$_smarty_tpl->tpl_vars[" . $parameter['if condition']['var'] . "]->value = " . $parameter['if condition']['value'] . "){?>";
+ }
return $_output;
} else {
return "<?php while ({$parameter['if condition']}){?>";
- }
- }
-}
+ }
+ }
+
+}
/**
-* Smarty Internal Plugin Compile Whileclose Class
-*/
+ * Smarty Internal Plugin Compile Whileclose Class
+ *
+ * @package Smarty
+ * @subpackage Compiler
+ */
class Smarty_Internal_Compile_Whileclose extends Smarty_Internal_CompileBase {
+
/**
- * Compiles code for the {/while} tag
- *
- * @param array $args array with attributes from parser
- * @param object $compiler compiler object
- * @return string compiled code
- */
+ * Compiles code for the {/while} tag
+ *
+ * @param array $args array with attributes from parser
+ * @param object $compiler compiler object
+ * @return string compiled code
+ */
public function compile($args, $compiler)
{
- $this->compiler = $compiler;
// must endblock be nocache?
- if ($this->compiler->nocache) {
- $this->compiler->tag_nocache = true;
+ if ($compiler->nocache) {
+ $compiler->tag_nocache = true;
}
- $this->compiler->nocache = $this->_close_tag(array('while'));
+ $compiler->nocache = $this->closeTag($compiler, array('while'));
return "<?php }?>";
- }
-}
+ }
+
+}
?>
\ No newline at end of file
diff --git a/gosa-core/include/smarty/sysplugins/smarty_internal_compilebase.php b/gosa-core/include/smarty/sysplugins/smarty_internal_compilebase.php
index 6418acceb13412f0f2b897f94e3155fe51cb7cb9..5fb56f3713c2177c9d6190122be340794bb3abc6 100644 (file)
<?php
-
/**
* Smarty Internal Plugin CompileBase
- *
+ *
* @package Smarty
* @subpackage Compiler
- * @author Uwe Tews
+ * @author Uwe Tews
*/
/**
* This class does extend all internal compile plugins
+ *
+ * @package Smarty
+ * @subpackage Compiler
*/
-// abstract class Smarty_Internal_CompileBase implements TagCompilerInterface
-class Smarty_Internal_CompileBase {
- public $required_attributes = array();
+abstract class Smarty_Internal_CompileBase {
+
+ /**
+ * Array of names of required attribute required by tag
+ *
+ * @var array
+ */
+ public $required_attributes = array();
+ /**
+ * Array of names of optional attribute required by tag
+ * use array('_any') if there is no restriction of attributes names
+ *
+ * @var array
+ */
public $optional_attributes = array();
+ /**
+ * Shorttag attribute order defined by its names
+ *
+ * @var array
+ */
public $shorttag_order = array();
+ /**
+ * Array of names of valid option flags
+ *
+ * @var array
+ */
public $option_flags = array('nocache');
-
/**
* This function checks if the attributes passed are valid
- *
- * The attributes passed for the tag to compile are checked against the list of required and
+ *
+ * The attributes passed for the tag to compile are checked against the list of required and
* optional attributes. Required attributes must be present. Optional attributes are check against
- * against the corresponding list. The keyword '_any' specifies that any attribute will be accepted
+ * the corresponding list. The keyword '_any' specifies that any attribute will be accepted
* as valid
- *
- * @param array $attributes attributes applied to the tag
+ *
+ * @param object $compiler compiler object
+ * @param array $attributes attributes applied to the tag
* @return array of mapped attributes for further processing
*/
- function _get_attributes ($attributes)
+ public function getAttributes($compiler, $attributes)
{
- $_indexed_attr = array();
+ $_indexed_attr = array();
// loop over attributes
foreach ($attributes as $key => $mixed) {
// shorthand ?
if (!is_array($mixed)) {
// option flag ?
if (in_array(trim($mixed, '\'"'), $this->option_flags)) {
- $_indexed_attr[trim($mixed, '\'"')] = true;
+ $_indexed_attr[trim($mixed, '\'"')] = true;
// shorthand attribute ?
} else if (isset($this->shorttag_order[$key])) {
$_indexed_attr[$this->shorttag_order[$key]] = $mixed;
} else {
// too many shorthands
- $this->compiler->trigger_template_error('too many shorthand attributes', $this->compiler->lex->taglineno);
- }
+ $compiler->trigger_template_error('too many shorthand attributes', $compiler->lex->taglineno);
+ }
// named attribute
} else {
- $kv = each($mixed);
+ $kv = each($mixed);
// option flag?
if (in_array($kv['key'], $this->option_flags)) {
if (is_bool($kv['value'])) {
$_indexed_attr[$kv['key']] = true;
} else {
$_indexed_attr[$kv['key']] = false;
- }
+ }
} else if (is_numeric($kv['value']) && in_array($kv['value'], array(0, 1))) {
if ($kv['value'] == 1) {
$_indexed_attr[$kv['key']] = true;
} else {
$_indexed_attr[$kv['key']] = false;
- }
+ }
} else {
- $this->compiler->trigger_template_error("illegal value of option flag \"{$kv['key']}\"", $this->compiler->lex->taglineno);
- }
+ $compiler->trigger_template_error("illegal value of option flag \"{$kv['key']}\"", $compiler->lex->taglineno);
+ }
// must be named attribute
} else {
- reset($mixed);
+ reset($mixed);
$_indexed_attr[key($mixed)] = $mixed[key($mixed)];
- }
- }
- }
+ }
+ }
+ }
// check if all required attributes present
foreach ($this->required_attributes as $attr) {
if (!array_key_exists($attr, $_indexed_attr)) {
- $this->compiler->trigger_template_error("missing \"" . $attr . "\" attribute", $this->compiler->lex->taglineno);
- }
- }
+ $compiler->trigger_template_error("missing \"" . $attr . "\" attribute", $compiler->lex->taglineno);
+ }
+ }
// check for unallowed attributes
if ($this->optional_attributes != array('_any')) {
$tmp_array = array_merge($this->required_attributes, $this->optional_attributes, $this->option_flags);
foreach ($_indexed_attr as $key => $dummy) {
if (!in_array($key, $tmp_array) && $key !== 0) {
- $this->compiler->trigger_template_error("unexpected \"" . $key . "\" attribute", $this->compiler->lex->taglineno);
- }
- }
- }
+ $compiler->trigger_template_error("unexpected \"" . $key . "\" attribute", $compiler->lex->taglineno);
+ }
+ }
+ }
// default 'false' for all option flags not set
foreach ($this->option_flags as $flag) {
if (!isset($_indexed_attr[$flag])) {
$_indexed_attr[$flag] = false;
- }
- }
+ }
+ }
return $_indexed_attr;
- }
+ }
/**
* Push opening tag name on stack
- *
+ *
* Optionally additional data can be saved on stack
- *
- * @param string $open_tag the opening tag's name
- * @param anytype $data optional data which shall be saved on stack
+ *
+ * @param object $compiler compiler object
+ * @param string $openTag the opening tag's name
+ * @param mixed $data optional data saved
*/
- function _open_tag($open_tag, $data = null)
+ public function openTag($compiler, $openTag, $data = null)
{
- array_push($this->compiler->_tag_stack, array($open_tag, $data));
- }
+ array_push($compiler->_tag_stack, array($openTag, $data));
+ }
/**
* Pop closing tag
- *
+ *
* Raise an error if this stack-top doesn't match with expected opening tags
- *
- * @param array $ |string $expected_tag the expected opening tag names
- * @return anytype the opening tag's name or saved data
+ *
+ * @param object $compiler compiler object
+ * @param array|string $expectedTag the expected opening tag names
+ * @return mixed any type the opening tag's name or saved data
*/
- function _close_tag($expected_tag)
+ public function closeTag($compiler, $expectedTag)
{
- if (count($this->compiler->_tag_stack) > 0) {
+ if (count($compiler->_tag_stack) > 0) {
// get stacked info
- list($_open_tag, $_data) = array_pop($this->compiler->_tag_stack);
+ list($_openTag, $_data) = array_pop($compiler->_tag_stack);
// open tag must match with the expected ones
- if (in_array($_open_tag, (array)$expected_tag)) {
+ if (in_array($_openTag, (array) $expectedTag)) {
if (is_null($_data)) {
// return opening tag
- return $_open_tag;
+ return $_openTag;
} else {
// return restored data
return $_data;
- }
- }
+ }
+ }
// wrong nesting of tags
- $this->compiler->trigger_template_error("unclosed {" . $_open_tag . "} tag");
+ $compiler->trigger_template_error("unclosed {" . $_openTag . "} tag");
return;
- }
+ }
// wrong nesting of tags
- $this->compiler->trigger_template_error("unexpected closing tag", $this->compiler->lex->taglineno);
+ $compiler->trigger_template_error("unexpected closing tag", $compiler->lex->taglineno);
return;
- }
-}
+ }
+
+}
?>
\ No newline at end of file
diff --git a/gosa-core/include/smarty/sysplugins/smarty_internal_config.php b/gosa-core/include/smarty/sysplugins/smarty_internal_config.php
index 5355512338c3f4a259927125f22bbf0a4585291b..a309ec9ff77d76750b9b2a14edb4ee83b8147490 100644 (file)
<?php
/**
* Smarty Internal Plugin Config
- *
+ *
+ * @package Smarty
+ * @subpackage Config
+ * @author Uwe Tews
+ */
+
+/**
+ * Smarty Internal Plugin Config
+ *
* Main class for config variables
- *
- * @ignore
+ *
* @package Smarty
* @subpackage Config
- * @author Uwe Tews
+ *
+ * @property Smarty_Config_Source $source
+ * @property Smarty_Config_Compiled $compiled
+ * @ignore
*/
class Smarty_Internal_Config {
- static $config_objects = array();
-
- public function __construct($config_resource, $smarty, $data = null)
- {
- $this->data = $data;
- $this->smarty = $smarty;
- $this->config_resource = $config_resource;
- $this->config_resource_type = null;
- $this->config_resource_name = null;
- $this->config_filepath = null;
- $this->config_timestamp = null;
- $this->config_source = null;
- $this->compiled_config = null;
- $this->compiled_filepath = null;
- $this->compiled_timestamp = null;
- $this->mustCompile = null;
- $this->compiler_object = null;
- // parse config resource name
- if (!$this->parseConfigResourceName ($config_resource)) {
- throw new SmartyException ("Unable to parse config resource '{$config_resource}'");
- }
- }
-
- public function getConfigFilepath ()
- {
- return $this->config_filepath === null ?
- $this->config_filepath = $this->buildConfigFilepath() :
- $this->config_filepath;
- }
-
- public function getTimestamp ()
- {
- return $this->config_timestamp === null ?
- $this->config_timestamp = filemtime($this->getConfigFilepath()) :
- $this->config_timestamp;
- }
-
- private function parseConfigResourceName($config_resource)
- {
- if (empty($config_resource))
- return false;
- if (strpos($config_resource, ':') === false) {
- // no resource given, use default
- $this->config_resource_type = $this->smarty->default_config_type;
- $this->config_resource_name = $config_resource;
- } else {
- // get type and name from path
- list($this->config_resource_type, $this->config_resource_name) = explode(':', $config_resource, 2);
- if (strlen($this->config_resource_type) == 1) {
- // 1 char is not resource type, but part of filepath
- $this->config_resource_type = $this->smarty->default_config_type;
- $this->config_resource_name = $config_resource;
- } else {
- $this->config_resource_type = strtolower($this->config_resource_type);
- }
- }
- return true;
- }
- /*
- * get system filepath to config
+ /**
+ * Samrty instance
+ *
+ * @var Smarty object
*/
- public function buildConfigFilepath ()
- {
- foreach((array)$this->smarty->config_dir as $_config_dir) {
- if (strpos('/\\', substr($_config_dir, -1)) === false) {
- $_config_dir .= DS;
- }
-
- $_filepath = $_config_dir . $this->config_resource_name;
- if (file_exists($_filepath))
- return $_filepath;
- }
- // check for absolute path
- if (file_exists($this->config_resource_name))
- return $this->config_resource_name;
- // no tpl file found
- throw new SmartyException("Unable to load config file \"{$this->config_resource_name}\"");
- return false;
- }
+ public $smarty = null;
+ /**
+ * Object of config var storage
+ *
+ * @var object
+ */
+ public $data = null;
+ /**
+ * Config resource
+ * @var string
+ */
+ public $config_resource = null;
+ /**
+ * Compiled config file
+ *
+ * @var string
+ */
+ public $compiled_config = null;
+ /**
+ * filepath of compiled config file
+ *
+ * @var string
+ */
+ public $compiled_filepath = null;
+ /**
+ * Filemtime of compiled config Filemtime
+ *
+ * @var int
+ */
+ public $compiled_timestamp = null;
/**
- * Read config file source
- *
- * @return string content of source file
+ * flag if compiled config file is invalid and must be (re)compiled
+ * @var bool
*/
+ public $mustCompile = null;
/**
- * Returns the template source code
- *
- * The template source is being read by the actual resource handler
- *
- * @return string the template source
+ * Config file compiler object
+ *
+ * @var Smarty_Internal_Config_File_Compiler object
*/
- public function getConfigSource ()
+ public $compiler_object = null;
+
+ /**
+ * Constructor of config file object
+ *
+ * @param string $config_resource config file resource name
+ * @param Smarty $smarty Smarty instance
+ * @param object $data object for config vars storage
+ */
+ public function __construct($config_resource, $smarty, $data = null)
{
- if ($this->config_source === null) {
- if ($this->readConfigSource($this) === false) {
- throw new SmartyException("Unable to load config file \"{$this->config_resource_name}\"");
- }
- }
- return $this->config_source;
- }
- public function readConfigSource()
- {
- // read source file
- if (file_exists($this->getConfigFilepath())) {
- $this->config_source = file_get_contents($this->getConfigFilepath());
- return true;
- } else {
- return false;
- }
- }
+ $this->data = $data;
+ $this->smarty = $smarty;
+ $this->config_resource = $config_resource;
+ }
/**
* Returns the compiled filepath
- *
+ *
* @return string the compiled filepath
*/
- public function getCompiledFilepath ()
+ public function getCompiledFilepath()
{
return $this->compiled_filepath === null ?
- ($this->compiled_filepath = $this->buildCompiledFilepath()) :
- $this->compiled_filepath;
- }
+ ($this->compiled_filepath = $this->buildCompiledFilepath()) :
+ $this->compiled_filepath;
+ }
+
+ /**
+ * Get file path.
+ *
+ * @return string
+ */
public function buildCompiledFilepath()
{
$_compile_id = isset($this->smarty->compile_id) ? preg_replace('![^\w\|]+!', '_', $this->smarty->compile_id) : null;
- $_flag = (int)$this->smarty->config_read_hidden + (int)$this->smarty->config_booleanize * 2 +
- (int)$this->smarty->config_overwrite * 4;
- $_filepath = sha1($this->config_resource_name . $_flag);
+ $_flag = (int) $this->smarty->config_read_hidden + (int) $this->smarty->config_booleanize * 2
+ + (int) $this->smarty->config_overwrite * 4;
+ $_filepath = sha1($this->source->name . $_flag);
// if use_sub_dirs, break file into directories
if ($this->smarty->use_sub_dirs) {
$_filepath = substr($_filepath, 0, 2) . DS
- . substr($_filepath, 2, 2) . DS
- . substr($_filepath, 4, 2) . DS
- . $_filepath;
- }
+ . substr($_filepath, 2, 2) . DS
+ . substr($_filepath, 4, 2) . DS
+ . $_filepath;
+ }
$_compile_dir_sep = $this->smarty->use_sub_dirs ? DS : '^';
if (isset($_compile_id)) {
$_filepath = $_compile_id . $_compile_dir_sep . $_filepath;
- }
- $_compile_dir = $this->smarty->compile_dir;
- if (substr($_compile_dir, -1) != DS) {
- $_compile_dir .= DS;
- }
- return $_compile_dir . $_filepath . '.' . basename($this->config_resource_name) . '.config' . '.php';
- }
+ }
+ $_compile_dir = $this->smarty->getCompileDir();
+ return $_compile_dir . $_filepath . '.' . basename($this->source->name) . '.config' . '.php';
+ }
+
/**
* Returns the timpestamp of the compiled file
- *
+ *
* @return integer the file timestamp
*/
- public function getCompiledTimestamp ()
+ public function getCompiledTimestamp()
{
- return $this->compiled_timestamp === null ?
- ($this->compiled_timestamp = (file_exists($this->getCompiledFilepath())) ? filemtime($this->getCompiledFilepath()) : false) :
- $this->compiled_timestamp;
- }
+ return $this->compiled_timestamp === null
+ ? ($this->compiled_timestamp = (file_exists($this->getCompiledFilepath())) ? filemtime($this->getCompiledFilepath()) : false)
+ : $this->compiled_timestamp;
+ }
+
/**
- * Returns if the current config file must be compiled
- *
+ * Returns if the current config file must be compiled
+ *
* It does compare the timestamps of config source and the compiled config and checks the force compile configuration
- *
+ *
* @return boolean true if the file must be compiled
*/
- public function mustCompile ()
+ public function mustCompile()
{
return $this->mustCompile === null ?
- $this->mustCompile = ($this->smarty->force_compile || $this->getCompiledTimestamp () === false || $this->smarty->compile_check && $this->getCompiledTimestamp () < $this->getTimestamp ()):
- $this->mustCompile;
- }
+ $this->mustCompile = ($this->smarty->force_compile || $this->getCompiledTimestamp () === false || $this->smarty->compile_check && $this->getCompiledTimestamp () < $this->source->timestamp):
+ $this->mustCompile;
+ }
+
/**
- * Returns the compiled config file
- *
+ * Returns the compiled config file
+ *
* It checks if the config file must be compiled or just read the compiled version
- *
+ *
* @return string the compiled config file
*/
- public function getCompiledConfig ()
+ public function getCompiledConfig()
{
if ($this->compiled_config === null) {
// see if template needs compiling.
$this->compileConfigSource();
} else {
$this->compiled_config = file_get_contents($this->getCompiledFilepath());
- }
- }
+ }
+ }
return $this->compiled_config;
- }
+ }
/**
* Compiles the config files
+ *
+ * @throws Exception
*/
- public function compileConfigSource ()
- {
+ public function compileConfigSource()
+ {
// compile template
if (!is_object($this->compiler_object)) {
// load compiler
$this->compiler_object = new Smarty_Internal_Config_File_Compiler($this->smarty);
- }
+ }
// compile locking
if ($this->smarty->compile_locking) {
if ($saved_timestamp = $this->getCompiledTimestamp()) {
touch($this->getCompiledFilepath());
- }
- }
+ }
+ }
// call compiler
try {
$this->compiler_object->compileSource($this);
- }
- catch (Exception $e) {
+ } catch (Exception $e) {
// restore old timestamp in case of error
if ($this->smarty->compile_locking && $saved_timestamp) {
touch($this->getCompiledFilepath(), $saved_timestamp);
- }
+ }
throw $e;
- }
+ }
// compiling succeded
// write compiled template
Smarty_Internal_Write_File::writeFile($this->getCompiledFilepath(), $this->getCompiledConfig(), $this->smarty);
- }
+ }
- /*
+ /**
* load config variables
- *
- * @param mixed $sections array of section names, single section or null
- * @param object $scope global,parent or local
- */
- public function loadConfigVars ($sections = null, $scope = 'local')
+ *
+ * @param mixed $sections array of section names, single section or null
+ * @param object $scope global,parent or local
+ */
+ public function loadConfigVars($sections = null, $scope = 'local')
{
if ($this->data instanceof Smarty_Internal_Template) {
- $this->data->properties['file_dependency'][sha1($this->getConfigFilepath())] = array($this->getConfigFilepath(), $this->getTimestamp(),'file');
- }
+ $this->data->properties['file_dependency'][sha1($this->source->filepath)] = array($this->source->filepath, $this->source->timestamp, 'file');
+ }
if ($this->mustCompile()) {
$this->compileConfigSource();
}
// pointer to scope
if ($scope == 'local') {
- $scope_ptr = $this->data;
+ $scope_ptr = $this->data;
} elseif ($scope == 'parent') {
- if (isset($this->data->parent)) {
- $scope_ptr = $this->data->parent;
- } else {
- $scope_ptr = $this->data;
- }
+ if (isset($this->data->parent)) {
+ $scope_ptr = $this->data->parent;
+ } else {
+ $scope_ptr = $this->data;
+ }
} elseif ($scope == 'root' || $scope == 'global') {
- $scope_ptr = $this->data;
- while (isset($scope_ptr->parent)) {
- $scope_ptr = $scope_ptr->parent;
- }
+ $scope_ptr = $this->data;
+ while (isset($scope_ptr->parent)) {
+ $scope_ptr = $scope_ptr->parent;
+ }
}
$_config_vars = array();
- include($this->getCompiledFilepath ());
+ include($this->getCompiledFilepath());
// copy global config vars
foreach ($_config_vars['vars'] as $variable => $value) {
if ($this->smarty->config_overwrite || !isset($scope_ptr->config_vars[$variable])) {
$scope_ptr->config_vars[$variable] = $value;
} else {
- $scope_ptr->config_vars[$variable] = array_merge((array)$scope_ptr->config_vars[$variable], (array)$value);
- }
- }
+ $scope_ptr->config_vars[$variable] = array_merge((array) $scope_ptr->config_vars[$variable], (array) $value);
+ }
+ }
// scan sections
- if(!empty($sections)) {
- foreach ($_config_vars['sections'] as $this_section => $dummy) {
- if (in_array($this_section, (array)$sections)) {
- foreach ($_config_vars['sections'][$this_section]['vars'] as $variable => $value) {
- if ($this->smarty->config_overwrite || !isset($scope_ptr->config_vars[$variable])) {
- $scope_ptr->config_vars[$variable] = $value;
- } else {
- $scope_ptr->config_vars[$variable] = array_merge((array)$scope_ptr->config_vars[$variable], (array)$value);
- }
- }
- }
- }
+ if (!empty($sections)) {
+ $sections = array_flip((array) $sections);
+ foreach ($_config_vars['sections'] as $this_section => $dummy) {
+ if (isset($sections[$this_section])) {
+ foreach ($_config_vars['sections'][$this_section]['vars'] as $variable => $value) {
+ if ($this->smarty->config_overwrite || !isset($scope_ptr->config_vars[$variable])) {
+ $scope_ptr->config_vars[$variable] = $value;
+ } else {
+ $scope_ptr->config_vars[$variable] = array_merge((array) $scope_ptr->config_vars[$variable], (array) $value);
+ }
+ }
+ }
+ }
+ }
+ }
+
+ /**
+ * set Smarty property in template context
+ *
+ * @param string $property_name property name
+ * @param mixed $value value
+ * @throws SmartyException if $property_name is not valid
+ */
+ public function __set($property_name, $value)
+ {
+ switch ($property_name) {
+ case 'source':
+ case 'compiled':
+ $this->$property_name = $value;
+ return;
+ }
+
+ throw new SmartyException("invalid config property '$property_name'.");
+ }
+
+ /**
+ * get Smarty property in template context
+ *
+ * @param string $property_name property name
+ * @throws SmartyException if $property_name is not valid
+ */
+ public function __get($property_name)
+ {
+ switch ($property_name) {
+ case 'source':
+ if (empty($this->config_resource)) {
+ throw new SmartyException("Unable to parse resource name \"{$this->config_resource}\"");
+ }
+ $this->source = Smarty_Resource::config($this);
+ return $this->source;
+
+ case 'compiled':
+ $this->compiled = $this->source->getCompiled($this);
+ return $this->compiled;
}
- }
-}
+
+ throw new SmartyException("config attribute '$property_name' does not exist.");
+ }
+
+}
+
?>
\ No newline at end of file
diff --git a/gosa-core/include/smarty/sysplugins/smarty_internal_config_file_compiler.php b/gosa-core/include/smarty/sysplugins/smarty_internal_config_file_compiler.php
index e9dfbdb02155b307acd5c9ff80d8fe9590396477..b16a6940d338e103e3db82efcd2aca3b82bc0e2d 100644 (file)
<?php
-
/**
* Smarty Internal Plugin Config File Compiler
- *
+ *
* This is the config file compiler class. It calls the lexer and parser to
* perform the compiling.
- *
+ *
* @package Smarty
* @subpackage Config
- * @author Uwe Tews
+ * @author Uwe Tews
*/
-
+
/**
* Main config file compiler class
+ *
+ * @package Smarty
+ * @subpackage Config
*/
class Smarty_Internal_Config_File_Compiler {
+
+ /**
+ * Lexer object
+ *
+ * @var object
+ */
+ public $lex;
+
+ /**
+ * Parser object
+ *
+ * @var object
+ */
+ public $parser;
+
+ /**
+ * Smarty object
+ *
+ * @var Smarty object
+ */
+ public $smarty;
+
+ /**
+ * Smarty object
+ *
+ * @var Smarty_Internal_Config object
+ */
+ public $config;
+
+ /**
+ * Compiled config data sections and variables
+ *
+ * @var array
+ */
+ public $config_data = array();
+
/**
* Initialize compiler
+ *
+ * @param Smarty $smarty base instance
*/
public function __construct($smarty)
{
- $this->smarty = $smarty;
- // get required plugins
- $this->smarty->loadPlugin('Smarty_Internal_Configfilelexer');
- $this->smarty->loadPlugin('Smarty_Internal_Configfileparser');
+ $this->smarty = $smarty;
$this->config_data['sections'] = array();
$this->config_data['vars'] = array();
- }
+ }
/**
- * Methode to compile a Smarty template
- *
- * @param $template template object to compile
+ * Method to compile a Smarty template.
+ *
+ * @param Smarty_Internal_Config $config config object
* @return bool true if compiling succeeded, false if it failed
*/
- public function compileSource($config)
+ public function compileSource(Smarty_Internal_Config $config)
{
/* here is where the compiling takes place. Smarty
- tags in the templates are replaces with PHP code,
- then written to compiled files. */
- $this->config = $config;
+ tags in the templates are replaces with PHP code,
+ then written to compiled files. */
+ $this->config = $config;
// get config file source
- $_content = $config->getConfigSource() . "\n";
+ $_content = $config->source->content . "\n";
// on empty template just return
if ($_content == '') {
return true;
- }
+ }
// init the lexer/parser to compile the config file
$lex = new Smarty_Internal_Configfilelexer($_content, $this->smarty);
$parser = new Smarty_Internal_Configfileparser($lex, $this);
- if (isset($this->smarty->_parserdebug)) $parser->PrintTrace();
+ if ($this->smarty->_parserdebug) $parser->PrintTrace();
// get tokens from lexer and parse them
while ($lex->yylex()) {
- if (isset($this->smarty->_parserdebug)) echo "<br>Parsing {$parser->yyTokenName[$lex->token]} Token {$lex->value} Line {$lex->line} \n";
+ if ($this->smarty->_parserdebug) echo "<br>Parsing {$parser->yyTokenName[$lex->token]} Token {$lex->value} Line {$lex->line} \n";
$parser->doParse($lex->token, $lex->value);
- }
+ }
// finish parsing process
$parser->doParse(0, 0);
$config->compiled_config = '<?php $_config_vars = ' . var_export($this->config_data, true) . '; ?>';
- }
+ }
+
/**
* display compiler error messages without dying
- *
+ *
* If parameter $args is empty it is a parser detected syntax error.
* In this case the parser is called to obtain information about exspected tokens.
- *
+ *
* If parameter $args contains a string this is used as error message
- *
- * @todo output exact position of parse error in source line
- * @param $args string individual error message or null
+ *
+ * @param string $args individual error message or null
*/
public function trigger_config_file_error($args = null)
{
$this->lex = Smarty_Internal_Configfilelexer::instance();
- $this->parser = Smarty_Internal_Configfileparser::instance();
+ $this->parser = Smarty_Internal_Configfileparser::instance();
// get template source line which has error
$line = $this->lex->line;
if (isset($args)) {
// $line--;
- }
+ }
$match = preg_split("/\n/", $this->lex->data);
- $error_text = "Syntax error in config file '{$this->config->getConfigFilepath()}' on line {$line} '{$match[$line-1]}' ";
+ $error_text = "Syntax error in config file '{$this->config->source->filepath}' on line {$line} '{$match[$line-1]}' ";
if (isset($args)) {
// individual error message
$error_text .= $args;
} else {
// otherwise internal token name
$expect[] = $this->parser->yyTokenName[$token];
- }
- }
+ }
+ }
// output parser error message
$error_text .= ' - Unexpected "' . $this->lex->value . '", expected one of: ' . implode(' , ', $expect);
- }
+ }
throw new SmartyCompilerException($error_text);
- }
-}
+ }
+
+}
?>
\ No newline at end of file
diff --git a/gosa-core/include/smarty/sysplugins/smarty_internal_configfilelexer.php b/gosa-core/include/smarty/sysplugins/smarty_internal_configfilelexer.php
index 86143bcfea5371c5b62ede9408acdc67491ce734..aad90af8bf8271fc95bc600b1818d56a7d2c792f 100644 (file)
$this->counter = 0;
$this->line = 1;
$this->smarty = $smarty;
- }
+ $this->mbstring_overload = ini_get('mbstring.func_overload') & 2;
+ }
public static function &instance($new_instance = null)
{
static $instance = null;
if ($this->counter >= strlen($this->data)) {
return false; // end of input
}
- $yy_global_pattern = "/^(#)|^(\\[)|^(\\])|^(=)|^([ \t\r]+)|^(\n)|^([0-9]*[a-zA-Z_]\\w*)/iS";
+ $yy_global_pattern = "/\G(#|;)|\G(\\[)|\G(\\])|\G(=)|\G([ \t\r]+)|\G(\n)|\G([0-9]*[a-zA-Z_]\\w*)/iS";
do {
- if (preg_match($yy_global_pattern, substr($this->data, $this->counter), $yymatches)) {
+ if ($this->mbstring_overload ? preg_match($yy_global_pattern, substr($this->data, $this->counter), $yymatches) : preg_match($yy_global_pattern,$this->data, $yymatches, null, $this->counter)) {
$yysubmatches = $yymatches;
$yymatches = array_filter($yymatches, 'strlen'); // remove empty sub-patterns
if (!count($yymatches)) {
throw new Exception('Error: lexing failed because a rule matched' .
- 'an empty string. Input "' . substr($this->data,
+ ' an empty string. Input "' . substr($this->data,
$this->counter, 5) . '... state START');
}
next($yymatches); // skip global match
if ($this->counter >= strlen($this->data)) {
return false; // end of input
}
- $yy_global_pattern = "/^([ \t\r]+)|^(\\d+\\.\\d+(?=[ \t\r]*[\n#]))|^(\\d+(?=[ \t\r]*[\n#]))|^('[^'\\\\]*(?:\\\\.[^'\\\\]*)*'(?=[ \t\r]*[\n#]))|^(\"[^\"\\\\]*(?:\\\\.[^\"\\\\]*)*\"(?=[ \t\r]*[\n#]))|^(\"\"\"([^\"]|\\\\\"|\"{1,2}[^\"])*\"\"\"(?=[ \t\r]*[\n#]))|^([a-zA-Z]+(?=[ \t\r]*[\n#]))|^([^\n]+?(?=[ \t\r]*\n))|^(\n)/iS";
+ $yy_global_pattern = "/\G([ \t\r]+)|\G(\\d+\\.\\d+(?=[ \t\r]*[\n#;]))|\G(\\d+(?=[ \t\r]*[\n#;]))|\G('[^'\\\\]*(?:\\\\.[^'\\\\]*)*'(?=[ \t\r]*[\n#;]))|\G(\"[^\"\\\\]*(?:\\\\.[^\"\\\\]*)*\"(?=[ \t\r]*[\n#;]))|\G(\"\"\"(\\w+|[^\"]|\\\\\"|\"{1,2}[^\"])*\"\"\"(?=[ \t\r]*[\n#;]))|\G([a-zA-Z]+(?=[ \t\r]*[\n#;]))|\G([^\n]+?(?=[ \t\r]*\n))|\G(\n)/iS";
do {
- if (preg_match($yy_global_pattern, substr($this->data, $this->counter), $yymatches)) {
+ if ($this->mbstring_overload ? preg_match($yy_global_pattern, substr($this->data, $this->counter), $yymatches) : preg_match($yy_global_pattern,$this->data, $yymatches, null, $this->counter)) {
$yysubmatches = $yymatches;
$yymatches = array_filter($yymatches, 'strlen'); // remove empty sub-patterns
if (!count($yymatches)) {
throw new Exception('Error: lexing failed because a rule matched' .
- 'an empty string. Input "' . substr($this->data,
+ ' an empty string. Input "' . substr($this->data,
$this->counter, 5) . '... state VALUE');
}
next($yymatches); // skip global match
if ($this->counter >= strlen($this->data)) {
return false; // end of input
}
- $yy_global_pattern = "/^([^\n]+?(?=[ \t\r]*\n))/iS";
+ $yy_global_pattern = "/\G([^\n]+?(?=[ \t\r]*\n))/iS";
do {
- if (preg_match($yy_global_pattern, substr($this->data, $this->counter), $yymatches)) {
+ if ($this->mbstring_overload ? preg_match($yy_global_pattern, substr($this->data, $this->counter), $yymatches) : preg_match($yy_global_pattern,$this->data, $yymatches, null, $this->counter)) {
$yysubmatches = $yymatches;
$yymatches = array_filter($yymatches, 'strlen'); // remove empty sub-patterns
if (!count($yymatches)) {
throw new Exception('Error: lexing failed because a rule matched' .
- 'an empty string. Input "' . substr($this->data,
+ ' an empty string. Input "' . substr($this->data,
$this->counter, 5) . '... state NAKED_STRING_VALUE');
}
next($yymatches); // skip global match
if ($this->counter >= strlen($this->data)) {
return false; // end of input
}
- $yy_global_pattern = "/^([ \t\r]+)|^([^\n]+?(?=[ \t\r]*\n))|^(\n)/iS";
+ $yy_global_pattern = "/\G([ \t\r]+)|\G([^\n]+?(?=[ \t\r]*\n))|\G(\n)/iS";
do {
- if (preg_match($yy_global_pattern, substr($this->data, $this->counter), $yymatches)) {
+ if ($this->mbstring_overload ? preg_match($yy_global_pattern, substr($this->data, $this->counter), $yymatches) : preg_match($yy_global_pattern,$this->data, $yymatches, null, $this->counter)) {
$yysubmatches = $yymatches;
$yymatches = array_filter($yymatches, 'strlen'); // remove empty sub-patterns
if (!count($yymatches)) {
throw new Exception('Error: lexing failed because a rule matched' .
- 'an empty string. Input "' . substr($this->data,
+ ' an empty string. Input "' . substr($this->data,
$this->counter, 5) . '... state COMMENT');
}
next($yymatches); // skip global match
if ($this->counter >= strlen($this->data)) {
return false; // end of input
}
- $yy_global_pattern = "/^(\\.)|^(.*?(?=[\.=[\]\r\n]))/iS";
+ $yy_global_pattern = "/\G(\\.)|\G(.*?(?=[\.=[\]\r\n]))/iS";
do {
- if (preg_match($yy_global_pattern, substr($this->data, $this->counter), $yymatches)) {
+ if ($this->mbstring_overload ? preg_match($yy_global_pattern, substr($this->data, $this->counter), $yymatches) : preg_match($yy_global_pattern,$this->data, $yymatches, null, $this->counter)) {
$yysubmatches = $yymatches;
$yymatches = array_filter($yymatches, 'strlen'); // remove empty sub-patterns
if (!count($yymatches)) {
throw new Exception('Error: lexing failed because a rule matched' .
- 'an empty string. Input "' . substr($this->data,
+ ' an empty string. Input "' . substr($this->data,
$this->counter, 5) . '... state SECTION');
}
next($yymatches); // skip global match
diff --git a/gosa-core/include/smarty/sysplugins/smarty_internal_configfileparser.php b/gosa-core/include/smarty/sysplugins/smarty_internal_configfileparser.php
index 0b5a573436f366c6ffea5529f309a453f10b4043..8824603c8611fb62d5ed54cf71612cef20e7ae60 100644 (file)
function __construct($lex, $compiler) {
// set instance object
- self::instance($this);
+ self::instance($this);
$this->lex = $lex;
- $this->smarty = $compiler->smarty;
+ $this->smarty = $compiler->smarty;
$this->compiler = $compiler;
}
public static function &instance($new_instance = null)
@@ -163,7 +163,7 @@ class Smarty_Internal_Configfileparser#line 79 "smarty_internal_configfileparser
private function add_global_vars(Array $vars) {
if (!isset($this->compiler->config_data['vars'])) {
- $this->compiler->config_data['vars'] = Array();
+ $this->compiler->config_data['vars'] = Array();
}
foreach ($vars as $var) {
$this->set_var($var, $this->compiler->config_data);
public $yyerrcnt; /* Shifts left before out of the error */
public $yystack = array(); /* The parser's stack */
- public $yyTokenName = array(
- '$', 'OPENB', 'SECTION', 'CLOSEB',
- 'DOT', 'ID', 'EQUAL', 'FLOAT',
+ public $yyTokenName = array(
+ '$', 'OPENB', 'SECTION', 'CLOSEB',
+ 'DOT', 'ID', 'EQUAL', 'FLOAT',
'INT', 'BOOL', 'SINGLE_QUOTED_STRING', 'DOUBLE_QUOTED_STRING',
'TRIPPLE_DOUBLE_QUOTED_STRING', 'NAKED_STRING', 'NEWLINE', 'COMMENTSTART',
- 'error', 'start', 'global_vars', 'sections',
- 'var_list', 'section', 'newline', 'var',
- 'value',
+ 'error', 'start', 'global_vars', 'sections',
+ 'var_list', 'section', 'newline', 'var',
+ 'value',
);
static public $yyRuleName = array(
function yy_find_shift_action($iLookAhead)
{
$stateno = $this->yystack[$this->yyidx]->stateno;
-
+
/* if ($this->yyidx < 0) return self::YY_NO_ACTION; */
if (!isset(self::$yy_shift_ofst[$stateno])) {
// no shift actions
16 => 16,
);
#line 132 "smarty_internal_configfileparser.y"
- function yy_r0(){ $this->_retvalue = null; }
-#line 652 "smarty_internal_configfileparser.php"
-#line 135 "smarty_internal_configfileparser.y"
- function yy_r1(){ $this->add_global_vars($this->yystack[$this->yyidx + 0]->minor); $this->_retvalue = null; }
-#line 655 "smarty_internal_configfileparser.php"
-#line 141 "smarty_internal_configfileparser.y"
- function yy_r4(){ $this->add_section_vars($this->yystack[$this->yyidx + -3]->minor, $this->yystack[$this->yyidx + 0]->minor); $this->_retvalue = null; }
-#line 658 "smarty_internal_configfileparser.php"
-#line 142 "smarty_internal_configfileparser.y"
- function yy_r5(){ if ($this->smarty->config_read_hidden) { $this->add_section_vars($this->yystack[$this->yyidx + -3]->minor, $this->yystack[$this->yyidx + 0]->minor); } $this->_retvalue = null; }
-#line 661 "smarty_internal_configfileparser.php"
-#line 145 "smarty_internal_configfileparser.y"
- function yy_r6(){ $this->_retvalue = $this->yystack[$this->yyidx + -1]->minor; }
-#line 664 "smarty_internal_configfileparser.php"
-#line 146 "smarty_internal_configfileparser.y"
- function yy_r7(){ $this->_retvalue = array_merge($this->yystack[$this->yyidx + -1]->minor, Array($this->yystack[$this->yyidx + 0]->minor)); }
-#line 667 "smarty_internal_configfileparser.php"
-#line 147 "smarty_internal_configfileparser.y"
- function yy_r8(){ $this->_retvalue = Array(); }
-#line 670 "smarty_internal_configfileparser.php"
-#line 151 "smarty_internal_configfileparser.y"
- function yy_r9(){ $this->_retvalue = Array("key" => $this->yystack[$this->yyidx + -2]->minor, "value" => $this->yystack[$this->yyidx + 0]->minor); }
-#line 673 "smarty_internal_configfileparser.php"
-#line 153 "smarty_internal_configfileparser.y"
- function yy_r10(){ $this->_retvalue = (float) $this->yystack[$this->yyidx + 0]->minor; }
-#line 676 "smarty_internal_configfileparser.php"
-#line 154 "smarty_internal_configfileparser.y"
- function yy_r11(){ $this->_retvalue = (int) $this->yystack[$this->yyidx + 0]->minor; }
-#line 679 "smarty_internal_configfileparser.php"
+ function yy_r0(){
+ $this->_retvalue = null;
+ }
+#line 654 "smarty_internal_configfileparser.php"
+#line 137 "smarty_internal_configfileparser.y"
+ function yy_r1(){
+ $this->add_global_vars($this->yystack[$this->yyidx + 0]->minor); $this->_retvalue = null;
+ }
+#line 659 "smarty_internal_configfileparser.php"
+#line 150 "smarty_internal_configfileparser.y"
+ function yy_r4(){
+ $this->add_section_vars($this->yystack[$this->yyidx + -3]->minor, $this->yystack[$this->yyidx + 0]->minor);
+ $this->_retvalue = null;
+ }
+#line 665 "smarty_internal_configfileparser.php"
#line 155 "smarty_internal_configfileparser.y"
- function yy_r12(){ $this->_retvalue = $this->parse_bool($this->yystack[$this->yyidx + 0]->minor); }
-#line 682 "smarty_internal_configfileparser.php"
-#line 156 "smarty_internal_configfileparser.y"
- function yy_r13(){ $this->_retvalue = self::parse_single_quoted_string($this->yystack[$this->yyidx + 0]->minor); }
-#line 685 "smarty_internal_configfileparser.php"
-#line 157 "smarty_internal_configfileparser.y"
- function yy_r14(){ $this->_retvalue = self::parse_double_quoted_string($this->yystack[$this->yyidx + 0]->minor); }
+ function yy_r5(){
+ if ($this->smarty->config_read_hidden) {
+ $this->add_section_vars($this->yystack[$this->yyidx + -3]->minor, $this->yystack[$this->yyidx + 0]->minor);
+ }
+ $this->_retvalue = null;
+ }
+#line 673 "smarty_internal_configfileparser.php"
+#line 163 "smarty_internal_configfileparser.y"
+ function yy_r6(){
+ $this->_retvalue = $this->yystack[$this->yyidx + -1]->minor;
+ }
+#line 678 "smarty_internal_configfileparser.php"
+#line 167 "smarty_internal_configfileparser.y"
+ function yy_r7(){
+ $this->_retvalue = array_merge($this->yystack[$this->yyidx + -1]->minor, Array($this->yystack[$this->yyidx + 0]->minor));
+ }
+#line 683 "smarty_internal_configfileparser.php"
+#line 171 "smarty_internal_configfileparser.y"
+ function yy_r8(){
+ $this->_retvalue = Array();
+ }
#line 688 "smarty_internal_configfileparser.php"
-#line 158 "smarty_internal_configfileparser.y"
- function yy_r15(){ $this->_retvalue = self::parse_tripple_double_quoted_string($this->yystack[$this->yyidx + 0]->minor); }
-#line 691 "smarty_internal_configfileparser.php"
-#line 159 "smarty_internal_configfileparser.y"
- function yy_r16(){ $this->_retvalue = $this->yystack[$this->yyidx + 0]->minor; }
-#line 694 "smarty_internal_configfileparser.php"
+#line 177 "smarty_internal_configfileparser.y"
+ function yy_r9(){
+ $this->_retvalue = Array("key" => $this->yystack[$this->yyidx + -2]->minor, "value" => $this->yystack[$this->yyidx + 0]->minor);
+ }
+#line 693 "smarty_internal_configfileparser.php"
+#line 182 "smarty_internal_configfileparser.y"
+ function yy_r10(){
+ $this->_retvalue = (float) $this->yystack[$this->yyidx + 0]->minor;
+ }
+#line 698 "smarty_internal_configfileparser.php"
+#line 186 "smarty_internal_configfileparser.y"
+ function yy_r11(){
+ $this->_retvalue = (int) $this->yystack[$this->yyidx + 0]->minor;
+ }
+#line 703 "smarty_internal_configfileparser.php"
+#line 190 "smarty_internal_configfileparser.y"
+ function yy_r12(){
+ $this->_retvalue = $this->parse_bool($this->yystack[$this->yyidx + 0]->minor);
+ }
+#line 708 "smarty_internal_configfileparser.php"
+#line 194 "smarty_internal_configfileparser.y"
+ function yy_r13(){
+ $this->_retvalue = self::parse_single_quoted_string($this->yystack[$this->yyidx + 0]->minor);
+ }
+#line 713 "smarty_internal_configfileparser.php"
+#line 198 "smarty_internal_configfileparser.y"
+ function yy_r14(){
+ $this->_retvalue = self::parse_double_quoted_string($this->yystack[$this->yyidx + 0]->minor);
+ }
+#line 718 "smarty_internal_configfileparser.php"
+#line 202 "smarty_internal_configfileparser.y"
+ function yy_r15(){
+ $this->_retvalue = self::parse_tripple_double_quoted_string($this->yystack[$this->yyidx + 0]->minor);
+ }
+#line 723 "smarty_internal_configfileparser.php"
+#line 206 "smarty_internal_configfileparser.y"
+ function yy_r16(){
+ $this->_retvalue = $this->yystack[$this->yyidx + 0]->minor;
+ }
+#line 728 "smarty_internal_configfileparser.php"
private $_retvalue;
function yy_reduce($yyruleno)
{
$yymsp = $this->yystack[$this->yyidx];
- if (self::$yyTraceFILE && $yyruleno >= 0
+ if (self::$yyTraceFILE && $yyruleno >= 0
&& $yyruleno < count(self::$yyRuleName)) {
fprintf(self::$yyTraceFILE, "%sReduce (%d) [%s].\n",
self::$yyTracePrompt, $yyruleno,
$this->internalError = true;
$this->yymajor = $yymajor;
$this->compiler->trigger_config_file_error();
-#line 757 "smarty_internal_configfileparser.php"
+#line 791 "smarty_internal_configfileparser.php"
}
function yy_accept()
$this->internalError = false;
$this->retvalue = $this->_retvalue;
//echo $this->retvalue."\n\n";
-#line 775 "smarty_internal_configfileparser.php"
+#line 809 "smarty_internal_configfileparser.php"
}
function doParse($yymajor, $yytokenvalue)
{
$yyerrorhit = 0; /* True if yymajor has invoked an error */
-
+
if ($this->yyidx === null || $this->yyidx < 0) {
$this->yyidx = 0;
$this->yyerrcnt = -1;
array_push($this->yystack, $x);
}
$yyendofinput = ($yymajor==0);
-
+
if (self::$yyTraceFILE) {
fprintf(self::$yyTraceFILE, "%sInput %s\n",
self::$yyTracePrompt, $this->yyTokenName[$yymajor]);
}
-
+
do {
$yyact = $this->yy_find_shift_action($yymajor);
if ($yymajor < self::YYERRORSYMBOL &&
} else {
$this->yy_accept();
$yymajor = self::YYNOCODE;
- }
+ }
} while ($yymajor != self::YYNOCODE && $this->yyidx >= 0);
}
}
diff --git a/gosa-core/include/smarty/sysplugins/smarty_internal_data.php b/gosa-core/include/smarty/sysplugins/smarty_internal_data.php
index 167262694bf70bc216244217cbafb6f45c0e2ba3..5baf3b76dc719817a32f4c1ac1fecb2972a50b48 100644 (file)
<?php
-
/**
* Smarty Internal Plugin Data
*
* This file contains the basic classes and methodes for template and variable creation
*
* @package Smarty
- * @subpackage Templates
+ * @subpackage Template
* @author Uwe Tews
*/
/**
* Base class with template and variable methodes
+ *
+ * @package Smarty
+ * @subpackage Template
*/
class Smarty_Internal_Data {
- // class used for templates
+
+ /**
+ * name of class used for templates
+ *
+ * @var string
+ */
public $template_class = 'Smarty_Internal_Template';
+ /**
+ * template variables
+ *
+ * @var array
+ */
+ public $tpl_vars = array();
+ /**
+ * parent template (if any)
+ *
+ * @var Smarty_Internal_Template
+ */
+ public $parent = null;
+ /**
+ * configuration settings
+ *
+ * @var array
+ */
+ public $config_vars = array();
/**
* assigns a Smarty variable
*
- * @param array $ |string $tpl_var the template variable name(s)
- * @param mixed $value the value to assign
- * @param boolean $nocache if true any output of this variable will be not cached
+ * @param array|string $tpl_var the template variable name(s)
+ * @param mixed $value the value to assign
+ * @param boolean $nocache if true any output of this variable will be not cached
* @param boolean $scope the scope the variable will have (local,parent or root)
+ * @return Smarty_Internal_Data current Smarty_Internal_Data (or Smarty or Smarty_Internal_Template) instance for chaining
*/
public function assign($tpl_var, $value = null, $nocache = false)
{
$this->tpl_vars[$tpl_var] = new Smarty_variable($value, $nocache);
}
}
+
+ return $this;
}
+
/**
* assigns a global Smarty variable
*
* @param string $varname the global variable name
- * @param mixed $value the value to assign
+ * @param mixed $value the value to assign
* @param boolean $nocache if true any output of this variable will be not cached
+ * @return Smarty_Internal_Data current Smarty_Internal_Data (or Smarty or Smarty_Internal_Template) instance for chaining
*/
public function assignGlobal($varname, $value = null, $nocache = false)
{
if ($varname != '') {
Smarty::$global_tpl_vars[$varname] = new Smarty_variable($value, $nocache);
}
+
+ return $this;
}
/**
* assigns values to template variables by reference
* @param string $tpl_var the template variable name
* @param mixed $ &$value the referenced value to assign
* @param boolean $nocache if true any output of this variable will be not cached
+ * @return Smarty_Internal_Data current Smarty_Internal_Data (or Smarty or Smarty_Internal_Template) instance for chaining
*/
public function assignByRef($tpl_var, &$value, $nocache = false)
{
$this->tpl_vars[$tpl_var] = new Smarty_variable(null, $nocache);
$this->tpl_vars[$tpl_var]->value = &$value;
}
- }
- /**
- * wrapper function for Smarty 2 BC
- *
- * @param string $tpl_var the template variable name
- * @param mixed $ &$value the referenced value to assign
- */
- public function assign_by_ref($tpl_var, &$value)
- {
- if($this->smarty->deprecation_notices)
- trigger_error("function call 'assign_by_ref' is unknown or deprecated, use 'assignByRef'", E_USER_NOTICE);
- $this->assignByRef($tpl_var, $value);
+ return $this;
}
+
/**
* appends values to template variables
*
- * @param array $ |string $tpl_var the template variable name(s)
- * @param mixed $value the value to append
- * @param boolean $merge flag if array elements shall be merged
+ * @param array|string $tpl_var the template variable name(s)
+ * @param mixed $value the value to append
+ * @param boolean $merge flag if array elements shall be merged
* @param boolean $nocache if true any output of this variable will be not cached
+ * @return Smarty_Internal_Data current Smarty_Internal_Data (or Smarty or Smarty_Internal_Template) instance for chaining
*/
public function append($tpl_var, $value = null, $merge = false, $nocache = false)
{
}
}
}
+
+ return $this;
}
/**
* appends values to template variables by reference
*
* @param string $tpl_var the template variable name
- * @param mixed $ &$value the referenced value to append
- * @param boolean $merge flag if array elements shall be merged
+ * @param mixed &$value the referenced value to append
+ * @param boolean $merge flag if array elements shall be merged
+ * @return Smarty_Internal_Data current Smarty_Internal_Data (or Smarty or Smarty_Internal_Template) instance for chaining
*/
public function appendByRef($tpl_var, &$value, $merge = false)
{
if (!isset($this->tpl_vars[$tpl_var])) {
$this->tpl_vars[$tpl_var] = new Smarty_variable();
}
- if (!@is_array($this->tpl_vars[$tpl_var]->value)) {
+ if (!is_array($this->tpl_vars[$tpl_var]->value)) {
settype($this->tpl_vars[$tpl_var]->value, 'array');
}
if ($merge && is_array($value)) {
$this->tpl_vars[$tpl_var]->value[] = &$value;
}
}
- }
- /**
- *
- * @param string $tpl_var the template variable name
- * @param mixed $ &$value the referenced value to append
- * @param boolean $merge flag if array elements shall be merged
- */
- public function append_by_ref($tpl_var, &$value, $merge = false)
- {
- if($this->smarty->deprecation_notices)
- trigger_error("function call 'append_by_ref' is unknown or deprecated, use 'appendByRef'", E_USER_NOTICE);
- $this->appendByRef($tpl_var, $value, $merge);
+ return $this;
}
+
/**
* Returns a single or all template variables
*
- * @param string $varname variable name or null
+ * @param string $varname variable name or null
+ * @param string $_ptr optional pointer to data object
+ * @param boolean $search_parents include parent templates?
* @return string variable value or or array of variables
*/
- function getTemplateVars($varname = null, $_ptr = null, $search_parents = true)
+ public function getTemplateVars($varname = null, $_ptr = null, $search_parents = true)
{
if (isset($varname)) {
$_var = $this->getVariable($varname, $_ptr, $search_parents, false);
/**
* clear the given assigned template variable.
*
- * @param string $ |array $tpl_var the template variable(s) to clear
+ * @param string|array $tpl_var the template variable(s) to clear
+ * @return Smarty_Internal_Data current Smarty_Internal_Data (or Smarty or Smarty_Internal_Template) instance for chaining
*/
public function clearAssign($tpl_var)
{
} else {
unset($this->tpl_vars[$tpl_var]);
}
+
+ return $this;
}
/**
* clear all the assigned template variables.
+ * @return Smarty_Internal_Data current Smarty_Internal_Data (or Smarty or Smarty_Internal_Template) instance for chaining
*/
public function clearAllAssign()
{
$this->tpl_vars = array();
+ return $this;
}
/**
* load a config file, optionally load just selected sections
*
* @param string $config_file filename
- * @param mixed $sections array of section names, single section or null
+ * @param mixed $sections array of section names, single section or null
+ * @return Smarty_Internal_Data current Smarty_Internal_Data (or Smarty or Smarty_Internal_Template) instance for chaining
*/
public function configLoad($config_file, $sections = null)
{
// load Config class
$config = new Smarty_Internal_Config($config_file, $this->smarty, $this);
$config->loadConfigVars($sections);
+ return $this;
}
/**
* gets the object of a Smarty variable
*
- * @param string $variable the name of the Smarty variable
- * @param object $_ptr optional pointer to data object
+ * @param string $variable the name of the Smarty variable
+ * @param object $_ptr optional pointer to data object
* @param boolean $search_parents search also in parent data
* @return object the object of the variable
*/
- public function getVariable($_variable, $_ptr = null, $search_parents = true, $error_enable = true)
+ public function getVariable($variable, $_ptr = null, $search_parents = true, $error_enable = true)
{
if ($_ptr === null) {
$_ptr = $this;
} while ($_ptr !== null) {
- if (isset($_ptr->tpl_vars[$_variable])) {
+ if (isset($_ptr->tpl_vars[$variable])) {
// found it, return it
- return $_ptr->tpl_vars[$_variable];
+ return $_ptr->tpl_vars[$variable];
}
// not found, try at parent
if ($search_parents) {
$_ptr = null;
}
}
- if (isset(Smarty::$global_tpl_vars[$_variable])) {
+ if (isset(Smarty::$global_tpl_vars[$variable])) {
// found it, return it
- return Smarty::$global_tpl_vars[$_variable];
+ return Smarty::$global_tpl_vars[$variable];
}
if ($this->smarty->error_unassigned && $error_enable) {
- throw new SmartyException('Undefined Smarty variable "' . $_variable . '"');
- } else {
- if ($error_enable) {
- // force a notice
- $x = $$_variable;
- }
- return new Undefined_Smarty_Variable;
+ // force a notice
+ $x = $$variable;
}
+ return new Undefined_Smarty_Variable;
}
+
/**
* gets a config variable
*
* @param string $variable the name of the config variable
* @return mixed the value of the config variable
*/
- public function getConfigVariable($_variable)
+ public function getConfigVariable($variable, $error_enable = true)
{
$_ptr = $this;
while ($_ptr !== null) {
- if (isset($_ptr->config_vars[$_variable])) {
+ if (isset($_ptr->config_vars[$variable])) {
// found it, return it
- return $_ptr->config_vars[$_variable];
+ return $_ptr->config_vars[$variable];
}
// not found, try at parent
$_ptr = $_ptr->parent;
}
- if ($this->smarty->error_unassigned) {
- throw new SmartyException('Undefined config variable "' . $_variable . '"');
- } else {
- // force a notice
- $x = $$_variable;
- return null;
+ if ($this->smarty->error_unassigned && $error_enable) {
+ // force a notice
+ $x = $$variable;
}
+ return null;
}
/**
public function getStreamVariable($variable)
{
$_result = '';
- if ($fp = fopen($variable, 'r+')) {
+ $fp = fopen($variable, 'r+');
+ if ($fp) {
while (!feof($fp) && ($current_line = fgets($fp)) !== false ) {
$_result .= $current_line;
}
* @param string $varname variable name or null
* @return string variable value or or array of variables
*/
- function getConfigVars($varname = null, $search_parents = true)
+ public function getConfigVars($varname = null, $search_parents = true)
{
- // var_dump($this);
$_ptr = $this;
$var_array = array();
while ($_ptr !== null) {
- if (isset($varname)) {
- if (isset($_ptr->config_vars[$varname])) {
- return $_ptr->config_vars[$varname];
+ if (isset($varname)) {
+ if (isset($_ptr->config_vars[$varname])) {
+ return $_ptr->config_vars[$varname];
}
} else {
- $var_array = array_merge($_ptr->config_vars, $var_array);
- }
+ $var_array = array_merge($_ptr->config_vars, $var_array);
+ }
// not found, try at parent
if ($search_parents) {
$_ptr = $_ptr->parent;
} else {
$_ptr = null;
}
- }
+ }
if (isset($varname)) {
- return '';
+ return '';
} else {
return $var_array;
}
* Deassigns a single or all config variables
*
* @param string $varname variable name or null
+ * @return Smarty_Internal_Data current Smarty_Internal_Data (or Smarty or Smarty_Internal_Template) instance for chaining
*/
- function clearConfig($varname = null)
+ public function clearConfig($varname = null)
{
if (isset($varname)) {
unset($this->config_vars[$varname]);
- return;
} else {
$this->config_vars = array();
- return;
}
+ return $this;
}
}
*
* The Smarty data object will hold Smarty variables in the current scope
*
- * @param object $parent tpl_vars next higher level of Smarty variables
+ * @package Smarty
+ * @subpackage Template
*/
class Smarty_Data extends Smarty_Internal_Data {
- // array of variable objects
- public $tpl_vars = array();
- // back pointer to parent object
- public $parent = null;
- // config vars
- public $config_vars = array();
- // Smarty object
+
+ /**
+ * Smarty object
+ *
+ * @var Smarty
+ */
public $smarty = null;
+
/**
* create Smarty data object
+ *
+ * @param Smarty|array $_parent parent template
+ * @param Smarty $smarty global smarty instance
*/
public function __construct ($_parent = null, $smarty = null)
{
throw new SmartyException("Wrong type for template variables");
}
}
+
}
+
/**
* class for the Smarty variable object
*
* This class defines the Smarty variable object
+ *
+ * @package Smarty
+ * @subpackage Template
*/
class Smarty_Variable {
- // template variable
- public $value;
- public $nocache;
- public $scope;
+
+ /**
+ * template variable
+ *
+ * @var mixed
+ */
+ public $value = null;
+ /**
+ * if true any output of this variable will be not cached
+ *
+ * @var boolean
+ */
+ public $nocache = false;
+ /**
+ * the scope the variable will have (local,parent or root)
+ *
+ * @var int
+ */
+ public $scope = Smarty::SCOPE_LOCAL;
+
/**
* create Smarty variable object
*
- * @param mixed $value the value to assign
+ * @param mixed $value the value to assign
* @param boolean $nocache if true any output of this variable will be not cached
- * @param boolean $scope the scope the variable will have (local,parent or root)
+ * @param int $scope the scope the variable will have (local,parent or root)
*/
- public function __construct ($value = null, $nocache = false, $scope = Smarty::SCOPE_LOCAL)
+ public function __construct($value = null, $nocache = false, $scope = Smarty::SCOPE_LOCAL)
{
$this->value = $value;
$this->nocache = $nocache;
$this->scope = $scope;
}
- public function __toString ()
+ /**
+ * <<magic>> String conversion
+ *
+ * @return string
+ */
+ public function __toString()
{
- return $this->value;
+ return (string) $this->value;
}
+
}
/**
* class for undefined variable object
*
* This class defines an object for undefined variable handling
+ *
+ * @package Smarty
+ * @subpackage Template
*/
class Undefined_Smarty_Variable {
- // return always false
- public function __get ($name)
+
+ /**
+ * Returns FALSE for 'nocache' and NULL otherwise.
+ *
+ * @param string $name
+ * @return bool
+ */
+ public function __get($name)
{
if ($name == 'nocache') {
return false;
return null;
}
}
+
+ /**
+ * Always returns an empty string.
+ *
+ * @return string
+ */
+ public function __toString()
+ {
+ return "";
+ }
+
}
?>
\ No newline at end of file
diff --git a/gosa-core/include/smarty/sysplugins/smarty_internal_debug.php b/gosa-core/include/smarty/sysplugins/smarty_internal_debug.php
index e605ca8b613551f2e0d789b47c02e40681320bc9..2aea13f301e39d6faffa48f2a6c13e04c190d01e 100644 (file)
<?php
-
/**
-* Smarty Internal Plugin Debug
-*
-* Class to collect data for the Smarty Debugging Consol
-*
-* @package Smarty
-* @subpackage Debug
-* @author Uwe Tews
-*/
+ * Smarty Internal Plugin Debug
+ *
+ * Class to collect data for the Smarty Debugging Consol
+ *
+ * @package Smarty
+ * @subpackage Debug
+ * @author Uwe Tews
+ */
/**
-* Smarty Internal Plugin Debug Class
-*/
+ * Smarty Internal Plugin Debug Class
+ *
+ * @package Smarty
+ * @subpackage Debug
+ */
class Smarty_Internal_Debug extends Smarty_Internal_Data {
- // template data
- static $template_data = array();
- /**
- * Start logging of compile time
- */
- public static function start_compile($template)
- {
- $key = self::get_key($template);
- self::$template_data[$key]['start_time'] = microtime(true);
- }
+ /**
+ * template data
+ *
+ * @var array
+ */
+ public static $template_data = array();
+
+ /**
+ * Start logging of compile time
+ *
+ * @param object $template
+ */
+ public static function start_compile($template)
+ {
+ $key = self::get_key($template);
+ self::$template_data[$key]['start_time'] = microtime(true);
+ }
+
+ /**
+ * End logging of compile time
+ *
+ * @param object $template
+ */
+ public static function end_compile($template)
+ {
+ $key = self::get_key($template);
+ self::$template_data[$key]['compile_time'] += microtime(true) - self::$template_data[$key]['start_time'];
+ }
+
+ /**
+ * Start logging of render time
+ *
+ * @param object $template
+ */
+ public static function start_render($template)
+ {
+ $key = self::get_key($template);
+ self::$template_data[$key]['start_time'] = microtime(true);
+ }
+
+ /**
+ * End logging of compile time
+ *
+ * @param object $template
+ */
+ public static function end_render($template)
+ {
+ $key = self::get_key($template);
+ self::$template_data[$key]['render_time'] += microtime(true) - self::$template_data[$key]['start_time'];
+ }
- /**
- * End logging of compile time
- */
- public static function end_compile($template)
- {
- $key = self::get_key($template);
- self::$template_data[$key]['compile_time'] += microtime(true) - self::$template_data[$key]['start_time'];
- }
+ /**
+ * Start logging of cache time
+ *
+ * @param object $template cached template
+ */
+ public static function start_cache($template)
+ {
+ $key = self::get_key($template);
+ self::$template_data[$key]['start_time'] = microtime(true);
+ }
- /**
- * Start logging of render time
- */
- public static function start_render($template)
- {
- $key = self::get_key($template);
- self::$template_data[$key]['start_time'] = microtime(true);
- }
+ /**
+ * End logging of cache time
+ *
+ * @param object $template cached template
+ */
+ public static function end_cache($template)
+ {
+ $key = self::get_key($template);
+ self::$template_data[$key]['cache_time'] += microtime(true) - self::$template_data[$key]['start_time'];
+ }
- /**
- * End logging of compile time
- */
- public static function end_render($template)
- {
- $key = self::get_key($template);
- self::$template_data[$key]['render_time'] += microtime(true) - self::$template_data[$key]['start_time'];
- }
+ /**
+ * Opens a window for the Smarty Debugging Consol and display the data
+ *
+ * @param Smarty_Internal_Template|Smarty $obj object to debug
+ */
+ public static function display_debug($obj)
+ {
+ // prepare information of assigned variables
+ $ptr = self::get_debug_vars($obj);
+ if ($obj instanceof Smarty) {
+ $smarty = clone $obj;
+ } else {
+ $smarty = clone $obj->smarty;
+ }
+ $_assigned_vars = $ptr->tpl_vars;
+ ksort($_assigned_vars);
+ $_config_vars = $ptr->config_vars;
+ ksort($_config_vars);
+ $smarty->registered_filters = array();
+ $smarty->autoload_filters = array();
+ $smarty->default_modifiers = array();
+ $smarty->force_compile = false;
+ $smarty->left_delimiter = '{';
+ $smarty->right_delimiter = '}';
+ $smarty->debugging = false;
+ $smarty->force_compile = false;
+ $_template = new Smarty_Internal_Template($smarty->debug_tpl, $smarty);
+ $_template->caching = false;
+ $_template->disableSecurity();
+ $_template->cache_id = null;
+ $_template->compile_id = null;
+ if ($obj instanceof Smarty_Internal_Template) {
+ $_template->assign('template_name', $obj->source->type . ':' . $obj->source->name);
+ }
+ if ($obj instanceof Smarty) {
+ $_template->assign('template_data', self::$template_data);
+ } else {
+ $_template->assign('template_data', null);
+ }
+ $_template->assign('assigned_vars', $_assigned_vars);
+ $_template->assign('config_vars', $_config_vars);
+ $_template->assign('execution_time', microtime(true) - $smarty->start_time);
+ echo $_template->fetch();
+ }
- /**
- * Start logging of cache time
- */
- public static function start_cache($template)
- {
- $key = self::get_key($template);
- self::$template_data[$key]['start_time'] = microtime(true);
- }
+ /**
+ * Recursively gets variables from all template/data scopes
+ *
+ * @param Smarty_Internal_Template|Smarty_Data $obj object to debug
+ * @return StdClass
+ */
+ public static function get_debug_vars($obj)
+ {
+ $config_vars = $obj->config_vars;
+ $tpl_vars = array();
+ foreach ($obj->tpl_vars as $key => $var) {
+ $tpl_vars[$key] = clone $var;
+ if ($obj instanceof Smarty_Internal_Template) {
+ $tpl_vars[$key]->scope = $obj->source->type . ':' . $obj->source->name;
+ } elseif ($obj instanceof Smarty_Data) {
+ $tpl_vars[$key]->scope = 'Data object';
+ } else {
+ $tpl_vars[$key]->scope = 'Smarty root';
+ }
+ }
- /**
- * End logging of cache time
- */
- public static function end_cache($template)
- {
- $key = self::get_key($template);
- self::$template_data[$key]['cache_time'] += microtime(true) - self::$template_data[$key]['start_time'];
- }
- /**
- * Opens a window for the Smarty Debugging Consol and display the data
- */
- public static function display_debug($obj)
- {
- // prepare information of assigned variables
- $ptr = self::get_debug_vars($obj);
- if ($obj instanceof Smarty) {
- $smarty = clone $obj;
- } else {
- $smarty = clone $obj->smarty;
- }
- $_assigned_vars = $ptr->tpl_vars;
- ksort($_assigned_vars);
- $_config_vars = $ptr->config_vars;
- ksort($_config_vars);
- $smarty->left_delimiter = '{';
- $smarty->right_delimiter = '}';
- $smarty->registered_filters = array();
- $smarty->autoload_filters = array();
- $smarty->default_modifiers = array();
- $_template = new Smarty_Internal_Template ($smarty->debug_tpl, $smarty);
- $_template->caching = false;
- $_template->force_compile = false;
- $_template->disableSecurity();
- $_template->cache_id = null;
- $_template->compile_id = null;
- if ($obj instanceof Smarty_Internal_Template) {
- $_template->assign('template_name',$obj->resource_type.':'.$obj->resource_name);
- }
- if ($obj instanceof Smarty) {
- $_template->assign('template_data', self::$template_data);
- } else {
- $_template->assign('template_data', null);
- }
- $_template->assign('assigned_vars', $_assigned_vars);
- $_template->assign('config_vars', $_config_vars);
- $_template->assign('execution_time', microtime(true) - $smarty->start_time);
- echo $_template->getRenderedTemplate();
- }
- /*
- * Recursively gets variables from all template/data scopes
- */
- public static function get_debug_vars($obj)
- {
- $config_vars = $obj->config_vars;
- $tpl_vars = array();
- foreach ($obj->tpl_vars as $key => $var) {
- $tpl_vars[$key] = clone $var;
- if ($obj instanceof Smarty_Internal_Template) {
- $tpl_vars[$key]->scope = $obj->resource_type.':'.$obj->resource_name;
- } elseif ($obj instanceof Smarty_Data) {
- $tpl_vars[$key]->scope = 'Data object';
- } else {
- $tpl_vars[$key]->scope = 'Smarty root';
- }
- }
+ if (isset($obj->parent)) {
+ $parent = self::get_debug_vars($obj->parent);
+ $tpl_vars = array_merge($parent->tpl_vars, $tpl_vars);
+ $config_vars = array_merge($parent->config_vars, $config_vars);
+ } else {
+ foreach (Smarty::$global_tpl_vars as $name => $var) {
+ if (!array_key_exists($name, $tpl_vars)) {
+ $clone = clone $var;
+ $clone->scope = 'Global';
+ $tpl_vars[$name] = $clone;
+ }
+ }
+ }
+ return (object) array('tpl_vars' => $tpl_vars, 'config_vars' => $config_vars);
+ }
- if (isset($obj->parent)) {
- $parent = self::get_debug_vars($obj->parent);
- $tpl_vars = array_merge($parent->tpl_vars, $tpl_vars);
- $config_vars = array_merge($parent->config_vars, $config_vars);
- } else {
- foreach (Smarty::$global_tpl_vars as $name => $var) {
- if (!array_key_exists($name, $tpl_vars)) {
- $clone = clone $var;
- $clone->scope = 'Global';
- $tpl_vars[$name] = $clone;
- }
- }
- }
- return (object) array('tpl_vars' => $tpl_vars, 'config_vars' => $config_vars);
- }
+ /**
+ * Return key into $template_data for template
+ *
+ * @param object $template template object
+ * @return string key into $template_data
+ */
+ private static function get_key($template)
+ {
+ static $_is_stringy = array('string' => true, 'eval' => true);
+ // calculate Uid if not already done
+ if ($template->source->uid == '') {
+ $template->source->filepath;
+ }
+ $key = $template->source->uid;
+ if (isset(self::$template_data[$key])) {
+ return $key;
+ } else {
+ if (isset($_is_stringy[$template->source->type])) {
+ self::$template_data[$key]['name'] = '\''.substr($template->source->name,0,25).'...\'';
+ } else {
+ self::$template_data[$key]['name'] = $template->source->filepath;
+ }
+ self::$template_data[$key]['compile_time'] = 0;
+ self::$template_data[$key]['render_time'] = 0;
+ self::$template_data[$key]['cache_time'] = 0;
+ return $key;
+ }
+ }
- /**
- * get_key
- */
- static function get_key($template)
- {
- // calculate Uid if not already done
- if ($template->templateUid == '') {
- $template->getTemplateFilepath();
- }
- $key = $template->templateUid;
- if (isset(self::$template_data[$key])) {
- return $key;
- } else {
- self::$template_data[$key]['name'] = $template->getTemplateFilepath();
- self::$template_data[$key]['compile_time'] = 0;
- self::$template_data[$key]['render_time'] = 0;
- self::$template_data[$key]['cache_time'] = 0;
- return $key;
- }
- }
}
?>
\ No newline at end of file
diff --git a/gosa-core/include/smarty/sysplugins/smarty_internal_filter_handler.php b/gosa-core/include/smarty/sysplugins/smarty_internal_filter_handler.php
index fbd88460226c5ab7bef4afa6a628ba00728c19b6..c9370e1ac7ad040922ad04e843dd955d4e3dfc2d 100644 (file)
<?php
-
/**
* Smarty Internal Plugin Filter Handler
- *
+ *
* Smarty filter handler class
- *
+ *
* @package Smarty
* @subpackage PluginsInternal
- * @author Uwe Tews
+ * @author Uwe Tews
*/
/**
* Class for filter processing
+ *
+ * @package Smarty
+ * @subpackage PluginsInternal
*/
class Smarty_Internal_Filter_Handler {
+
/**
* Run filters over content
- *
+ *
* The filters will be lazy loaded if required
* class name format: Smarty_FilterType_FilterName
* plugin filename format: filtertype.filtername.php
* Smarty2 filter plugins could be used
- *
- * @param string $type the type of filter ('pre','post','output' or 'variable') which shall run
- * @param string $content the content which shall be processed by the filters
+ *
+ * @param string $type the type of filter ('pre','post','output') which shall run
+ * @param string $content the content which shall be processed by the filters
+ * @param Smarty_Internal_Template $template template object
* @return string the filtered content
*/
- static function runFilter($type, $content, $template, $flag = null)
+ public static function runFilter($type, $content, Smarty_Internal_Template $template)
{
$output = $content;
- if ($type != 'variable' || ($template->smarty->variable_filter && $flag !== false) || $flag === true) {
- // loop over autoload filters of specified type
- if (!empty($template->smarty->autoload_filters[$type])) {
- foreach ((array)$template->smarty->autoload_filters[$type] as $name) {
- $plugin_name = "Smarty_{$type}filter_{$name}";
- if ($template->smarty->loadPlugin($plugin_name)) {
- if (function_exists($plugin_name)) {
- // use loaded Smarty2 style plugin
- $output = $plugin_name($output, $template);
- } elseif (class_exists($plugin_name, false)) {
- // loaded class of filter plugin
- $output = call_user_func(array($plugin_name, 'execute'), $output, $template);
- }
- } else {
- // nothing found, throw exception
- throw new SmartyException("Unable to load filter {$plugin_name}");
- }
- }
- }
- // loop over registerd filters of specified type
- if (!empty($template->smarty->registered_filters[$type])) {
- foreach ($template->smarty->registered_filters[$type] as $key => $name) {
- if (is_array($template->smarty->registered_filters[$type][$key])) {
- $output = call_user_func($template->smarty->registered_filters[$type][$key], $output, $template);
- } else {
- $output = $template->smarty->registered_filters[$type][$key]($output, $template);
- }
- }
- }
- }
+ // loop over autoload filters of specified type
+ if (!empty($template->smarty->autoload_filters[$type])) {
+ foreach ((array)$template->smarty->autoload_filters[$type] as $name) {
+ $plugin_name = "Smarty_{$type}filter_{$name}";
+ if ($template->smarty->loadPlugin($plugin_name)) {
+ if (function_exists($plugin_name)) {
+ // use loaded Smarty2 style plugin
+ $output = $plugin_name($output, $template);
+ } elseif (class_exists($plugin_name, false)) {
+ // loaded class of filter plugin
+ $output = call_user_func(array($plugin_name, 'execute'), $output, $template);
+ }
+ } else {
+ // nothing found, throw exception
+ throw new SmartyException("Unable to load filter {$plugin_name}");
+ }
+ }
+ }
+ // loop over registerd filters of specified type
+ if (!empty($template->smarty->registered_filters[$type])) {
+ foreach ($template->smarty->registered_filters[$type] as $key => $name) {
+ if (is_array($template->smarty->registered_filters[$type][$key])) {
+ $output = call_user_func($template->smarty->registered_filters[$type][$key], $output, $template);
+ } else {
+ $output = $template->smarty->registered_filters[$type][$key]($output, $template);
+ }
+ }
+ }
// return filtered output
return $output;
- }
-}
+ }
+
+}
?>
\ No newline at end of file
diff --git a/gosa-core/include/smarty/sysplugins/smarty_internal_function_call_handler.php b/gosa-core/include/smarty/sysplugins/smarty_internal_function_call_handler.php
index 928f04471107a9376fee69a74f34733fa418b8cf..8be744c94ba33d6e70ee2a5b5a846d0beeb044e1 100644 (file)
\r
/**\r
* This class does call function defined with the {function} tag\r
+ *\r
+ * @package Smarty\r
+ * @subpackage PluginsInternal\r
*/\r
-class Smarty_Internal_Function_Call_Handler extends Smarty_Internal_Template {\r
- static function call ($_name, $_template, $_params, $_hash, $_nocache)\r
+class Smarty_Internal_Function_Call_Handler {\r
+\r
+ /**\r
+ * This function handles calls to template functions defined by {function}\r
+ * It does create a PHP function at the first call\r
+ *\r
+ * @param string $_name template function name\r
+ * @param Smarty_Internal_Template $_template template object\r
+ * @param array $_params Smarty variables passed as call paramter\r
+ * @param string $_hash nocache hash value\r
+ * @param bool $_nocache nocache flag\r
+ */\r
+ public static function call($_name, Smarty_Internal_Template $_template, $_params, $_hash, $_nocache)\r
{\r
if ($_nocache) {\r
$_function = "smarty_template_function_{$_name}_nocache";\r
- $_template->smarty->template_functions[$_name]['called_nocache'] = true;\r
} else {\r
$_function = "smarty_template_function_{$_hash}_{$_name}";\r
}\r
if (!is_callable($_function)) {\r
$_code = "function {$_function}(\$_smarty_tpl,\$params) {\r
\$saved_tpl_vars = \$_smarty_tpl->tpl_vars;\r
- foreach (\$_smarty_tpl->template_functions['{$_name}']['parameter'] as \$key => \$value) {\$_smarty_tpl->tpl_vars[\$key] = new Smarty_variable(\$value);};\r
+ foreach (\$_smarty_tpl->smarty->template_functions['{$_name}']['parameter'] as \$key => \$value) {\$_smarty_tpl->tpl_vars[\$key] = new Smarty_variable(\$value);};\r
foreach (\$params as \$key => \$value) {\$_smarty_tpl->tpl_vars[\$key] = new Smarty_variable(\$value);}?>";\r
if ($_nocache) {\r
$_code .= preg_replace(array("!<\?php echo \\'/\*%%SmartyNocache:{$_template->smarty->template_functions[$_name]['nocache_hash']}%%\*/|/\*/%%SmartyNocache:{$_template->smarty->template_functions[$_name]['nocache_hash']}%%\*/\\';\?>!",\r
"!\\\'!"), array('', "'"), $_template->smarty->template_functions[$_name]['compiled']);\r
+ $_template->smarty->template_functions[$_name]['called_nocache'] = true;\r
} else {\r
$_code .= preg_replace("/{$_template->smarty->template_functions[$_name]['nocache_hash']}/", $_template->properties['nocache_hash'], $_template->smarty->template_functions[$_name]['compiled']);\r
}\r
}\r
$_function($_template, $_params);\r
}\r
+\r
}\r
\r
?>
\ No newline at end of file
diff --git a/gosa-core/include/smarty/sysplugins/smarty_internal_get_include_path.php b/gosa-core/include/smarty/sysplugins/smarty_internal_get_include_path.php
index b9f193162430e5f57e5ae0052dc42dc19f834557..7a9739e92f8544810a68d77a39aa8cea2aef5ef6 100644 (file)
<?php\r
-\r
/**\r
* Smarty read include path plugin\r
- * \r
+ *\r
* @package Smarty\r
* @subpackage PluginsInternal\r
- * @author Monte Ohrt \r
+ * @author Monte Ohrt\r
*/\r
\r
/**\r
* Smarty Internal Read Include Path Class\r
+ *\r
+ * @package Smarty\r
+ * @subpackage PluginsInternal\r
*/\r
class Smarty_Internal_Get_Include_Path {\r
+\r
/**\r
* Return full file path from PHP include_path\r
- * \r
+ *\r
* @param string $filepath filepath\r
- * @return mixed full filepath or false\r
+ * @return string|boolean full filepath or false\r
*/\r
public static function getIncludePath($filepath)\r
{\r
- static $_path_array = null;\r
+ static $_include_path = null;\r
\r
- if(!isset($_path_array)) {\r
- $_ini_include_path = ini_get('include_path');\r
-\r
- if(strstr($_ini_include_path,';')) {\r
- // windows pathnames\r
- $_path_array = explode(';',$_ini_include_path);\r
- } else {\r
- $_path_array = explode(':',$_ini_include_path);\r
+ if ($_path_array === null) {\r
+ $_include_path = explode(PATH_SEPARATOR, get_include_path());\r
}\r
- }\r
- foreach ($_path_array as $_include_path) {\r
- if (file_exists($_include_path . DS . $filepath)) {\r
- return $_include_path . DS . $filepath;\r
+\r
+ foreach ($_include_path as $_path) {\r
+ if (file_exists($_path . DS . $filepath)) {\r
+ return $_path . DS . $filepath;\r
+ }\r
}\r
+ \r
+ return false;\r
}\r
- return false;\r
- } \r
-} \r
+\r
+}\r
\r
?>
\ No newline at end of file
diff --git a/gosa-core/include/smarty/sysplugins/smarty_internal_nocache_insert.php b/gosa-core/include/smarty/sysplugins/smarty_internal_nocache_insert.php
index 76e97816e7a802dacc87d23ba2ae4001f6151d5b..741efe3343ec1730d0bd6f62368919365c646113 100644 (file)
<?php\r
-\r
/**\r
* Smarty Internal Plugin Nocache Insert\r
- * \r
+ *\r
* Compiles the {insert} tag into the cache file\r
- * \r
+ *\r
* @package Smarty\r
* @subpackage Compiler\r
- * @author Uwe Tews \r
+ * @author Uwe Tews\r
*/\r
\r
/**\r
* Smarty Internal Plugin Compile Insert Class\r
+ *\r
+ * @package Smarty\r
+ * @subpackage Compiler\r
*/\r
class Smarty_Internal_Nocache_Insert {\r
+\r
/**\r
* Compiles code for the {insert} tag into cache file\r
- * \r
- * @param string $_function insert function name\r
- * @param array $_attr array with paramter\r
- * @param object $template template object\r
- * @param string $_script script name to load or 'null'\r
- * @param string $_assign soptinal variable name\r
+ *\r
+ * @param string $_function insert function name\r
+ * @param array $_attr array with paramter\r
+ * @param Smarty_Internal_Template $_template template object\r
+ * @param string $_script script name to load or 'null'\r
+ * @param string $_assign optional variable name\r
* @return string compiled code\r
*/\r
- static function compile($_function, $_attr, $_template, $_script, $_assign = null)\r
+ public static function compile($_function, $_attr, $_template, $_script, $_assign = null)\r
{\r
$_output = '<?php ';\r
if ($_script != 'null') {\r
// script which must be included\r
// code for script file loading\r
$_output .= "require_once '{$_script}';";\r
- } \r
+ }\r
// call insert\r
if (isset($_assign)) {\r
$_output .= "\$_smarty_tpl->assign('{$_assign}' , {$_function} (" . var_export($_attr, true) . ",\$_smarty_tpl), true);?>";\r
} else {\r
$_output .= "echo {$_function}(" . var_export($_attr, true) . ",\$_smarty_tpl);?>";\r
- } \r
+ }\r
$_tpl = $_template;\r
while ($_tpl->parent instanceof Smarty_Internal_Template) {\r
$_tpl = $_tpl->parent;\r
- } \r
+ }\r
return "/*%%SmartyNocache:{$_tpl->properties['nocache_hash']}%%*/" . $_output . "/*/%%SmartyNocache:{$_tpl->properties['nocache_hash']}%%*/";\r
- } \r
-} \r
+ }\r
+\r
+}\r
\r
?>
\ No newline at end of file
diff --git a/gosa-core/include/smarty/sysplugins/smarty_internal_parsetree.php b/gosa-core/include/smarty/sysplugins/smarty_internal_parsetree.php
index d3bcb22db318105a826d1bdcb40b36b0691cd964..c9fb1f7625cb00170e48e458084166a6b0861dc0 100644 (file)
<?php\r
/**\r
* Smarty Internal Plugin Templateparser Parsetrees\r
- * \r
+ *\r
* These are classes to build parsetrees in the template parser\r
- * \r
+ *\r
* @package Smarty\r
* @subpackage Compiler\r
- * @author Thue Kristensen \r
- * @author Uwe Tews \r
+ * @author Thue Kristensen\r
+ * @author Uwe Tews\r
+ */\r
+\r
+/**\r
+ * @package Smarty\r
+ * @subpackage Compiler\r
+ * @ignore\r
*/\r
- \r
abstract class _smarty_parsetree {\r
- abstract public function to_smarty_php();\r
+\r
+ /**\r
+ * Parser object\r
+ * @var object\r
+ */\r
+ public $parser;\r
+ /**\r
+ * Buffer content\r
+ * @var mixed\r
+ */\r
+ public $data;\r
+\r
+ /**\r
+ * Return buffer\r
+ *\r
+ * @return string buffer content\r
+ */\r
+ abstract public function to_smarty_php();\r
+\r
}\r
\r
/**\r
* A complete smarty tag.\r
+ *\r
+ * @package Smarty\r
+ * @subpackage Compiler\r
+ * @ignore\r
*/\r
-class _smarty_tag extends _smarty_parsetree\r
-{\r
- public $parser;\r
- public $data;\r
+class _smarty_tag extends _smarty_parsetree {\r
+\r
+ /**\r
+ * Saved block nesting level\r
+ * @var int\r
+ */\r
public $saved_block_nesting;\r
- function __construct($parser, $data)\r
+\r
+ /**\r
+ * Create parse tree buffer for Smarty tag\r
+ *\r
+ * @param object $parser parser object\r
+ * @param string $data content\r
+ */\r
+ public function __construct($parser, $data)\r
{\r
$this->parser = $parser;\r
$this->data = $data;\r
$this->saved_block_nesting = $parser->block_nesting_level;\r
- } \r
+ }\r
\r
+ /**\r
+ * Return buffer content\r
+ *\r
+ * @return string content\r
+ */\r
public function to_smarty_php()\r
{\r
return $this->data;\r
- } \r
+ }\r
\r
+ /**\r
+ * Return complied code that loads the evaluated outout of buffer content into a temporary variable\r
+ *\r
+ * @return string template code\r
+ */\r
public function assign_to_var()\r
{\r
$var = sprintf('$_tmp%d', ++$this->parser->prefix_number);\r
- $this->parser->compiler->prefix_code[] = sprintf('<?php ob_start();?>%s<?php %s=ob_get_clean();?>',\r
- $this->data, $var);\r
+ $this->parser->compiler->prefix_code[] = sprintf('<?php ob_start();?>%s<?php %s=ob_get_clean();?>', $this->data, $var);\r
return $var;\r
- } \r
-} \r
+ }\r
+\r
+}\r
\r
/**\r
* Code fragment inside a tag.\r
+ *\r
+ * @package Smarty\r
+ * @subpackage Compiler\r
+ * @ignore\r
*/\r
class _smarty_code extends _smarty_parsetree {\r
- public $parser;\r
- public $data;\r
- function __construct($parser, $data)\r
+\r
+\r
+ /**\r
+ * Create parse tree buffer for code fragment\r
+ *\r
+ * @param object $parser parser object\r
+ * @param string $data content\r
+ */\r
+ public function __construct($parser, $data)\r
{\r
$this->parser = $parser;\r
$this->data = $data;\r
- } \r
+ }\r
\r
+ /**\r
+ * Return buffer content in parentheses\r
+ *\r
+ * @return string content\r
+ */\r
public function to_smarty_php()\r
{\r
return sprintf("(%s)", $this->data);\r
- } \r
-} \r
+ }\r
+\r
+}\r
\r
/**\r
* Double quoted string inside a tag.\r
+ *\r
+ * @package Smarty\r
+ * @subpackage Compiler\r
+ * @ignore\r
*/\r
class _smarty_doublequoted extends _smarty_parsetree {\r
- public $parser;\r
- public $subtrees = Array();\r
- function __construct($parser, _smarty_parsetree $subtree)\r
+\r
+ /**\r
+ * Create parse tree buffer for double quoted string subtrees\r
+ *\r
+ * @param object $parser parser object\r
+ * @param _smarty_parsetree $subtree parsetree buffer\r
+ */\r
+ public function __construct($parser, _smarty_parsetree $subtree)\r
{\r
$this->parser = $parser;\r
$this->subtrees[] = $subtree;\r
if ($subtree instanceof _smarty_tag) {\r
$this->parser->block_nesting_level = count($this->parser->compiler->_tag_stack);\r
- } \r
- } \r
+ }\r
+ }\r
\r
- function append_subtree(_smarty_parsetree $subtree)\r
+ /**\r
+ * Append buffer to subtree\r
+ *\r
+ * @param _smarty_parsetree $subtree parsetree buffer\r
+ */\r
+ public function append_subtree(_smarty_parsetree $subtree)\r
{\r
- $last_subtree = count($this->subtrees)-1;\r
+ $last_subtree = count($this->subtrees) - 1;\r
if ($last_subtree >= 0 && $this->subtrees[$last_subtree] instanceof _smarty_tag && $this->subtrees[$last_subtree]->saved_block_nesting < $this->parser->block_nesting_level) {\r
if ($subtree instanceof _smarty_code) {\r
$this->subtrees[$last_subtree]->data .= '<?php echo ' . $subtree->data . ';?>';\r
$this->subtrees[$last_subtree]->data .= '<?php echo "' . $subtree->data . '";?>';\r
} else {\r
$this->subtrees[$last_subtree]->data .= $subtree->data;\r
- } \r
+ }\r
} else {\r
$this->subtrees[] = $subtree;\r
- } \r
+ }\r
if ($subtree instanceof _smarty_tag) {\r
$this->parser->block_nesting_level = count($this->parser->compiler->_tag_stack);\r
- } \r
- } \r
+ }\r
+ }\r
\r
+ /**\r
+ * Merge subtree buffer content together\r
+ *\r
+ * @return string compiled template code\r
+ */\r
public function to_smarty_php()\r
{\r
$code = '';\r
foreach ($this->subtrees as $subtree) {\r
if ($code !== "") {\r
$code .= ".";\r
- } \r
+ }\r
if ($subtree instanceof _smarty_tag) {\r
$more_php = $subtree->assign_to_var();\r
} else {\r
$more_php = $subtree->to_smarty_php();\r
- } \r
+ }\r
\r
$code .= $more_php;\r
\r
if (!$subtree instanceof _smarty_dq_content) {\r
$this->parser->compiler->has_variable_string = true;\r
- } \r
- } \r
+ }\r
+ }\r
return $code;\r
- } \r
-} \r
+ }\r
+\r
+}\r
\r
/**\r
* Raw chars as part of a double quoted string.\r
+ *\r
+ * @package Smarty\r
+ * @subpackage Compiler\r
+ * @ignore\r
*/\r
class _smarty_dq_content extends _smarty_parsetree {\r
- public $data;\r
- function __construct($parser, $data)\r
+\r
+\r
+ /**\r
+ * Create parse tree buffer with string content\r
+ *\r
+ * @param object $parser parser object\r
+ * @param string $data string section\r
+ */\r
+ public function __construct($parser, $data)\r
{\r
$this->parser = $parser;\r
$this->data = $data;\r
- } \r
+ }\r
\r
+ /**\r
+ * Return content as double quoted string\r
+ *\r
+ * @return string doubled quoted string\r
+ */\r
public function to_smarty_php()\r
{\r
return '"' . $this->data . '"';\r
- } \r
-} \r
+ }\r
+\r
+}\r
\r
/**\r
* Template element\r
+ *\r
+ * @package Smarty\r
+ * @subpackage Compiler\r
+ * @ignore\r
*/\r
class _smarty_template_buffer extends _smarty_parsetree {\r
+\r
+ /**\r
+ * Array of template elements\r
+ *\r
+ * @var array\r
+ */\r
public $subtrees = Array();\r
- function __construct($parser)\r
+\r
+ /**\r
+ * Create root of parse tree for template elements\r
+ *\r
+ * @param object $parser parse object\r
+ */\r
+ public function __construct($parser)\r
{\r
$this->parser = $parser;\r
- } \r
+ }\r
\r
- function append_subtree(_smarty_parsetree $subtree)\r
+ /**\r
+ * Append buffer to subtree\r
+ *\r
+ * @param _smarty_parsetree $subtree\r
+ */\r
+ public function append_subtree(_smarty_parsetree $subtree)\r
{\r
$this->subtrees[] = $subtree;\r
- } \r
+ }\r
\r
+ /**\r
+ * Sanitize and merge subtree buffers together\r
+ *\r
+ * @return string template code content\r
+ */\r
public function to_smarty_php()\r
{\r
$code = '';\r
if ($this->subtrees[$key] instanceof _smarty_linebreak && $this->subtrees[$key + 1] instanceof _smarty_tag && $this->subtrees[$key + 1]->data == '' && $this->subtrees[$key + 2] instanceof _smarty_linebreak) {\r
$key = $key + 1;\r
continue;\r
- } \r
+ }\r
if (substr($this->subtrees[$key]->data, -1) == '<' && $this->subtrees[$key + 1]->data == '' && substr($this->subtrees[$key + 2]->data, -1) == '?') {\r
$key = $key + 2;\r
continue;\r
- } \r
- } \r
+ }\r
+ }\r
if (substr($code, -1) == '<') {\r
$subtree = $this->subtrees[$key]->to_smarty_php();\r
if (substr($subtree, 0, 1) == '?') {\r
- $code = substr($code, 0, strlen($code)-1) . '<<?php ?>?' . substr($subtree, 1);\r
+ $code = substr($code, 0, strlen($code) - 1) . '<<?php ?>?' . substr($subtree, 1);\r
} elseif ($this->parser->asp_tags && substr($subtree, 0, 1) == '%') {\r
- $code = substr($code, 0, strlen($code)-1) . '<<?php ?>%' . substr($subtree, 1);\r
- } else {\r
+ $code = substr($code, 0, strlen($code) - 1) . '<<?php ?>%' . substr($subtree, 1);\r
+ } else {\r
$code .= $subtree;\r
- } \r
+ }\r
continue;\r
- } \r
+ }\r
if ($this->parser->asp_tags && substr($code, -1) == '%') {\r
$subtree = $this->subtrees[$key]->to_smarty_php();\r
if (substr($subtree, 0, 1) == '>') {\r
- $code = substr($code, 0, strlen($code)-1) . '%<?php ?>>' . substr($subtree, 1);\r
- } else {\r
+ $code = substr($code, 0, strlen($code) - 1) . '%<?php ?>>' . substr($subtree, 1);\r
+ } else {\r
$code .= $subtree;\r
- } \r
+ }\r
continue;\r
- } \r
+ }\r
if (substr($code, -1) == '?') {\r
$subtree = $this->subtrees[$key]->to_smarty_php();\r
if (substr($subtree, 0, 1) == '>') {\r
- $code = substr($code, 0, strlen($code)-1) . '?<?php ?>>' . substr($subtree, 1);\r
- } else {\r
+ $code = substr($code, 0, strlen($code) - 1) . '?<?php ?>>' . substr($subtree, 1);\r
+ } else {\r
$code .= $subtree;\r
- } \r
+ }\r
continue;\r
- } \r
+ }\r
$code .= $this->subtrees[$key]->to_smarty_php();\r
- } \r
+ }\r
return $code;\r
- } \r
+ }\r
+\r
}\r
\r
/**\r
* template text\r
+ *\r
+ * @package Smarty\r
+ * @subpackage Compiler\r
+ * @ignore\r
*/\r
class _smarty_text extends _smarty_parsetree {\r
- public $data;\r
- function __construct($parser, $data)\r
+\r
+\r
+ /**\r
+ * Create template text buffer\r
+ *\r
+ * @param object $parser parser object\r
+ * @param string $data text\r
+ */\r
+ public function __construct($parser, $data)\r
{\r
$this->parser = $parser;\r
$this->data = $data;\r
- } \r
+ }\r
\r
+ /**\r
+ * Return buffer content\r
+ *\r
+ * @return strint text\r
+ */\r
public function to_smarty_php()\r
{\r
return $this->data;\r
- } \r
-} \r
+ }\r
+\r
+}\r
\r
/**\r
* template linebreaks\r
+ *\r
+ * @package Smarty\r
+ * @subpackage Compiler\r
+ * @ignore\r
*/\r
class _smarty_linebreak extends _smarty_parsetree {\r
- public $data;\r
- function __construct($parser, $data)\r
+\r
+ /**\r
+ * Create buffer with linebreak content\r
+ *\r
+ * @param object $parser parser object\r
+ * @param string $data linebreak string\r
+ */\r
+ public function __construct($parser, $data)\r
{\r
$this->parser = $parser;\r
$this->data = $data;\r
- } \r
+ }\r
\r
+ /**\r
+ * Return linebrak\r
+ *\r
+ * @return string linebreak\r
+ */\r
public function to_smarty_php()\r
{\r
return $this->data;\r
- } \r
-} \r
+ }\r
+\r
+}\r
\r
?>
\ No newline at end of file
diff --git a/gosa-core/include/smarty/sysplugins/smarty_internal_resource_eval.php b/gosa-core/include/smarty/sysplugins/smarty_internal_resource_eval.php
index c4a75f585aca1bf27ab389e3c7e63b1a7c48401a..cf2ec3e1cc5b9264d6dc621d291be97658652a43 100644 (file)
<?php\r
-\r
/**\r
* Smarty Internal Plugin Resource Eval\r
- * \r
- * Implements the strings as resource for Smarty template\r
- * \r
+ *\r
* @package Smarty\r
* @subpackage TemplateResources\r
- * @author Uwe Tews \r
+ * @author Uwe Tews\r
+ * @author Rodney Rehm\r
*/\r
- \r
+\r
/**\r
* Smarty Internal Plugin Resource Eval\r
+ *\r
+ * Implements the strings as resource for Smarty template\r
+ *\r
+ * {@internal unlike string-resources the compiled state of eval-resources is NOT saved for subsequent access}}\r
+ *\r
+ * @package Smarty\r
+ * @subpackage TemplateResources\r
*/\r
-class Smarty_Internal_Resource_Eval {\r
- public function __construct($smarty)\r
- {\r
- $this->smarty = $smarty;\r
- } \r
- // classes used for compiling Smarty templates from file resource\r
- public $compiler_class = 'Smarty_Internal_SmartyTemplateCompiler';\r
- public $template_lexer_class = 'Smarty_Internal_Templatelexer';\r
- public $template_parser_class = 'Smarty_Internal_Templateparser';\r
- // properties\r
- public $usesCompiler = true;\r
- public $isEvaluated = true;\r
+class Smarty_Internal_Resource_Eval extends Smarty_Resource_Recompiled {\r
\r
/**\r
- * Return flag if template source is existing\r
- * \r
- * @return boolean true\r
+ * populate Source Object with meta data from Resource\r
+ *\r
+ * @param Smarty_Template_Source $source source object\r
+ * @param Smarty_Internal_Template $_template template object\r
+ * @return void\r
*/\r
- public function isExisting($template)\r
+ public function populate(Smarty_Template_Source $source, Smarty_Internal_Template $_template=null)\r
{\r
- return true;\r
- } \r
+ $source->uid = $source->filepath = sha1($source->name);\r
+ $source->timestamp = false;\r
+ $source->exists = true;\r
+ }\r
\r
/**\r
- * Get filepath to template source\r
- * \r
- * @param object $_template template object\r
- * @return string return 'string' as template source is not a file\r
+ * Load template's source from $resource_name into current template object\r
+ *\r
+ * @uses decode() to decode base64 and urlencoded template_resources\r
+ * @param Smarty_Template_Source $source source object\r
+ * @return string template source\r
*/\r
- public function getTemplateFilepath($_template)\r
- { \r
- // no filepath for evaluated strings\r
- // return "string" for compiler error messages\r
- return 'eval:';\r
- } \r
-\r
+ public function getContent(Smarty_Template_Source $source)\r
+ {\r
+ return $this->decode($source->name);\r
+ }\r
+ \r
/**\r
- * Get timestamp to template source\r
- * \r
- * @param object $_template template object\r
- * @return boolean false as string resources have no timestamp\r
+ * decode base64 and urlencode\r
+ *\r
+ * @param string $string template_resource to decode\r
+ * @return string decoded template_resource\r
*/\r
- public function getTemplateTimestamp($_template)\r
- { \r
- // evaluated strings must always be compiled and have no timestamp\r
- return false;\r
- } \r
-\r
+ protected function decode($string)\r
+ {\r
+ // decode if specified\r
+ if (($pos = strpos($string, ':')) !== false) {\r
+ if (!strncmp($string, 'base64', 6)) {\r
+ return base64_decode(substr($string, 7));\r
+ } elseif (!strncmp($string, 'urlencode', 9)) {\r
+ return urldecode(substr($string, 10));\r
+ }\r
+ }\r
+ \r
+ return $string;\r
+ }\r
+ \r
/**\r
- * Retuen template source from resource name\r
- * \r
- * @param object $_template template object\r
- * @return string content of template source\r
+ * modify resource_name according to resource handlers specifications\r
+ *\r
+ * @param Smarty $smarty Smarty instance\r
+ * @param string $resource_name resource_name to make unique\r
+ * @return string unique resource name\r
*/\r
- public function getTemplateSource($_template)\r
- { \r
- // return template string\r
- $_template->template_source = $_template->resource_name;\r
- return true;\r
- } \r
+ protected function buildUniqueResourceName(Smarty $smarty, $resource_name)\r
+ {\r
+ return get_class($this) . '#' .$this->decode($resource_name);\r
+ }\r
\r
/**\r
- * Get filepath to compiled template\r
- * \r
- * @param object $_template template object\r
- * @return boolean return false as compiled template is not stored\r
+ * Determine basename for compiled filename\r
+ *\r
+ * @param Smarty_Template_Source $source source object\r
+ * @return string resource's basename\r
*/\r
- public function getCompiledFilepath($_template)\r
- { \r
- // no filepath for strings\r
- return false;\r
- } \r
-} \r
+ protected function getBasename(Smarty_Template_Source $source)\r
+ {\r
+ return '';\r
+ }\r
+\r
+}\r
+\r
?>
\ No newline at end of file
diff --git a/gosa-core/include/smarty/sysplugins/smarty_internal_resource_extends.php b/gosa-core/include/smarty/sysplugins/smarty_internal_resource_extends.php
index 7f972c691ae34a06d4d90dc25e28c64b351c5d3b..53ea3ebcf308137cea0630e677753102481a8bef 100644 (file)
<?php
-
/**
- * Smarty Internal Plugin Resource Extends
- *
- * Implements the file system as resource for Smarty which does extend a chain of template files templates
- *
- * @package Smarty
- * @subpackage TemplateResources
- * @author Uwe Tews
- */
+* Smarty Internal Plugin Resource Extends
+*
+* @package Smarty
+* @subpackage TemplateResources
+* @author Uwe Tews
+* @author Rodney Rehm
+*/
/**
- * Smarty Internal Plugin Resource Extends
- */
-class Smarty_Internal_Resource_Extends {
- public function __construct($smarty)
- {
- $this->smarty = $smarty;
- $this->_rdl = preg_quote($smarty->right_delimiter);
- $this->_ldl = preg_quote($smarty->left_delimiter);
- }
- // classes used for compiling Smarty templates from file resource
- public $compiler_class = 'Smarty_Internal_SmartyTemplateCompiler';
- public $template_lexer_class = 'Smarty_Internal_Templatelexer';
- public $template_parser_class = 'Smarty_Internal_Templateparser';
- // properties
- public $usesCompiler = true;
- public $isEvaluated = false;
- public $allFilepaths = array();
+* Smarty Internal Plugin Resource Extends
+*
+* Implements the file system as resource for Smarty which {extend}s a chain of template files templates
+*
+* @package Smarty
+* @subpackage TemplateResources
+*/
+class Smarty_Internal_Resource_Extends extends Smarty_Resource {
/**
- * Return flag if template source is existing
- *
- * @param object $_template template object
- * @return boolean result
- */
- public function isExisting($_template)
+ * populate Source Object with meta data from Resource
+ *
+ * @param Smarty_Template_Source $source source object
+ * @param Smarty_Internal_Template $_template template object
+ */
+ public function populate(Smarty_Template_Source $source, Smarty_Internal_Template $_template=null)
{
- $_template->getTemplateFilepath();
- foreach ($this->allFilepaths as $_filepath) {
- if ($_filepath === false) {
- return false;
- }
+ $uid = '';
+ $sources = array();
+ $components = explode('|', $source->name);
+ $exists = true;
+ foreach ($components as $component) {
+ $s = Smarty_Resource::source(null, $source->smarty, $component);
+ if ($s->type == 'php') {
+ throw new SmartyException("Resource type {$s->type} cannot be used with the extends resource type");
+ }
+ $sources[$s->uid] = $s;
+ $uid .= $s->filepath;
+ if ($_template && $_template->smarty->compile_check) {
+ $exists == $exists && $s->exists;
+ }
}
- return true;
- }
- /**
- * Get filepath to template source
- *
- * @param object $_template template object
- * @return string filepath to template source file
- */
- public function getTemplateFilepath($_template)
- {
- $sha1String = '';
- $_files = explode('|', $_template->resource_name);
- foreach ($_files as $_file) {
- $_filepath = $_template->buildTemplateFilepath ($_file);
- if ($_filepath !== false) {
- if (is_object($_template->smarty->security_policy)) {
- $_template->smarty->security_policy->isTrustedResourceDir($_filepath);
- }
- }
- $sha1String .= $_filepath;
- $this->allFilepaths[$_file] = $_filepath;
- }
- $_template->templateUid = sha1($sha1String);
- return $_filepath;
- }
+ $source->components = $sources;
+ $source->filepath = $s->filepath;
+ $source->uid = sha1($uid);
+ if ($_template && $_template->smarty->compile_check) {
+ $source->timestamp = $s->timestamp;
+ $source->exists = $exists;
+ }
+ // need the template at getContent()
+ $source->template = $_template;
+ }
/**
- * Get timestamp to template source
- *
- * @param object $_template template object
- * @return integer timestamp of template source file
- */
- public function getTemplateTimestamp($_template)
+ * populate Source Object with timestamp and exists from Resource
+ *
+ * @param Smarty_Template_Source $source source object
+ */
+ public function populateTimestamp(Smarty_Template_Source $source)
{
- return filemtime($_template->getTemplateFilepath());
- }
+ $source->exists = true;
+ foreach ($source->components as $s) {
+ $source->exists == $source->exists && $s->exists;
+ }
+ $source->timestamp = $s->timestamp;
+ }
/**
- * Read template source from file
- *
- * @param object $_template template object
- * @return string content of template source file
- */
- public function getTemplateSource($_template)
+ * Load template's source from files into current template object
+ *
+ * @param Smarty_Template_Source $source source object
+ * @return string template source
+ * @throws SmartyException if source cannot be loaded
+ */
+ public function getContent(Smarty_Template_Source $source)
{
- $this->template = $_template;
- $_files = array_reverse($this->allFilepaths);
- $_first = reset($_files);
- $_last = end($_files);
- foreach ($_files as $_file => $_filepath) {
- if ($_filepath === false) {
- throw new SmartyException("Unable to load template 'file : {$_file}'");
- }
- // read template file
- if ($_filepath != $_first) {
- $_template->properties['file_dependency'][sha1($_filepath)] = array($_filepath, filemtime($_filepath),'file');
- }
- $_template->template_filepath = $_filepath;
- $_content = file_get_contents($_filepath);
- if ($_filepath != $_last) {
- if (preg_match_all("!({$this->_ldl}block\s(.+?){$this->_rdl})!", $_content, $_open) !=
- preg_match_all("!({$this->_ldl}/block{$this->_rdl})!", $_content, $_close)) {
- throw new SmartyException("unmatched {block} {/block} pairs in file '$_filepath'");
- }
- preg_match_all("!{$this->_ldl}block\s(.+?){$this->_rdl}|{$this->_ldl}/block{$this->_rdl}!", $_content, $_result, PREG_OFFSET_CAPTURE);
+ if (!$source->exists) {
+ throw new SmartyException("Unable to read template {$source->type} '{$source->name}'");
+ }
+
+ $_rdl = preg_quote($source->smarty->right_delimiter);
+ $_ldl = preg_quote($source->smarty->left_delimiter);
+ $_components = array_reverse($source->components);
+ $_first = reset($_components);
+ $_last = end($_components);
+
+ foreach ($_components as $_component) {
+ // register dependency
+ if ($_component != $_first) {
+ $source->template->properties['file_dependency'][$_component->uid] = array($_component->filepath, $_component->timestamp, $_component->type);
+ }
+
+ // read content
+ $source->filepath = $_component->filepath;
+ $_content = $_component->content;
+
+ // extend sources
+ if ($_component != $_last) {
+ if (preg_match_all("!({$_ldl}block\s(.+?){$_rdl})!", $_content, $_open) !=
+ preg_match_all("!({$_ldl}/block{$_rdl})!", $_content, $_close)) {
+ throw new SmartyException("unmatched {block} {/block} pairs in template {$_component->type} '{$_component->name}'");
+ }
+ preg_match_all("!{$_ldl}block\s(.+?){$_rdl}|{$_ldl}/block{$_rdl}|{$_ldl}\*([\S\s]*?)\*{$_rdl}!", $_content, $_result, PREG_OFFSET_CAPTURE);
$_result_count = count($_result[0]);
$_start = 0;
- while ($_start < $_result_count) {
+ while ($_start+1 < $_result_count) {
$_end = 0;
$_level = 1;
+ if (substr($_result[0][$_start][0],0,strlen($source->smarty->left_delimiter)+1) == $source->smarty->left_delimiter.'*') {
+ $_start++;
+ continue;
+ }
while ($_level != 0) {
$_end++;
+ if (substr($_result[0][$_start + $_end][0],0,strlen($source->smarty->left_delimiter)+1) == $source->smarty->left_delimiter.'*') {
+ continue;
+ }
if (!strpos($_result[0][$_start + $_end][0], '/')) {
$_level++;
} else {
$_level--;
- }
- }
- $_block_content = str_replace($this->smarty->left_delimiter . '$smarty.block.parent' . $this->smarty->right_delimiter, '%%%%SMARTY_PARENT%%%%',
- substr($_content, $_result[0][$_start][1] + strlen($_result[0][$_start][0]), $_result[0][$_start + $_end][1] - $_result[0][$_start][1] - + strlen($_result[0][$_start][0])));
- Smarty_Internal_Compile_Block::saveBlockData($_block_content, $_result[0][$_start][0], $_template, $_filepath);
+ }
+ }
+ $_block_content = str_replace($source->smarty->left_delimiter . '$smarty.block.parent' . $source->smarty->right_delimiter, '%%%%SMARTY_PARENT%%%%', substr($_content, $_result[0][$_start][1] + strlen($_result[0][$_start][0]), $_result[0][$_start + $_end][1] - $_result[0][$_start][1] - + strlen($_result[0][$_start][0])));
+ Smarty_Internal_Compile_Block::saveBlockData($_block_content, $_result[0][$_start][0], $source->template, $_component->filepath);
$_start = $_start + $_end + 1;
- }
+ }
} else {
- $_template->template_source = $_content;
- return true;
- }
- }
+ return $_content;
+ }
+ }
}
-
/**
- * Get filepath to compiled template
- *
- * @param object $_template template object
- * @return string return path to compiled template
- */
- public function getCompiledFilepath($_template)
+ * Determine basename for compiled filename
+ *
+ * @param Smarty_Template_Source $source source object
+ * @return string resource's basename
+ */
+ public function getBasename(Smarty_Template_Source $source)
{
- $_compile_id = isset($_template->compile_id) ? preg_replace('![^\w\|]+!', '_', $_template->compile_id) : null;
- $_files = explode('|', $_template->resource_name);
- // calculate Uid if not already done
- if ($_template->templateUid == '') {
- $_template->getTemplateFilepath();
- }
- $_filepath = $_template->templateUid;
- // if use_sub_dirs, break file into directories
- if ($_template->smarty->use_sub_dirs) {
- $_filepath = substr($_filepath, 0, 2) . DS
- . substr($_filepath, 2, 2) . DS
- . substr($_filepath, 4, 2) . DS
- . $_filepath;
- }
- $_compile_dir_sep = $_template->smarty->use_sub_dirs ? DS : '^';
- if (isset($_compile_id)) {
- $_filepath = $_compile_id . $_compile_dir_sep . $_filepath;
- }
- if ($_template->caching) {
- $_cache = '.cache';
- } else {
- $_cache = '';
- }
- $_compile_dir = $_template->smarty->compile_dir;
- if (substr($_compile_dir, -1) != DS) {
- $_compile_dir .= DS;
- }
- return $_compile_dir . $_filepath . '.' . $_template->resource_type . '.' . basename($_files[count($_files)-1]) . $_cache . '.php';
- }
-}
+ return str_replace(':', '.', basename($source->filepath));
+ }
+
+}
?>
\ No newline at end of file
diff --git a/gosa-core/include/smarty/sysplugins/smarty_internal_resource_file.php b/gosa-core/include/smarty/sysplugins/smarty_internal_resource_file.php
index 79decc599686b23da614804bf4a736133bcd7d12..48b391d20eae76cb65b922db98e44310d5d55a8a 100644 (file)
<?php
-
/**
* Smarty Internal Plugin Resource File
- *
- * Implements the file system as resource for Smarty templates
- *
+ *
* @package Smarty
* @subpackage TemplateResources
- * @author Uwe Tews
+ * @author Uwe Tews
+ * @author Rodney Rehm
*/
-/**
+/**
* Smarty Internal Plugin Resource File
+ *
+ * Implements the file system as resource for Smarty templates
+ *
+ * @package Smarty
+ * @subpackage TemplateResources
*/
-class Smarty_Internal_Resource_File {
- public function __construct($smarty)
- {
- $this->smarty = $smarty;
- }
- // classes used for compiling Smarty templates from file resource
- public $compiler_class = 'Smarty_Internal_SmartyTemplateCompiler';
- public $template_lexer_class = 'Smarty_Internal_Templatelexer';
- public $template_parser_class = 'Smarty_Internal_Templateparser';
- // properties
- public $usesCompiler = true;
- public $isEvaluated = false;
+class Smarty_Internal_Resource_File extends Smarty_Resource {
/**
- * Return flag if template source is existing
- *
- * @return boolean true
+ * populate Source Object with meta data from Resource
+ *
+ * @param Smarty_Template_Source $source source object
+ * @param Smarty_Internal_Template $_template template object
*/
- public function isExisting($template)
+ public function populate(Smarty_Template_Source $source, Smarty_Internal_Template $_template=null)
{
- if ($template->getTemplateFilepath() === false) {
- return false;
- } else {
- return true;
- }
- }
+ $source->filepath = $this->buildFilepath($source, $_template);
- /**
- * Get filepath to template source
- *
- * @param object $_template template object
- * @return string filepath to template source file
- */
- public function getTemplateFilepath($_template)
- {
- $_filepath = $_template->buildTemplateFilepath ();
+ if ($source->filepath !== false) {
+ if (is_object($source->smarty->security_policy)) {
+ $source->smarty->security_policy->isTrustedResourceDir($source->filepath);
+ }
- if ($_filepath !== false) {
- if (is_object($_template->smarty->security_policy)) {
- $_template->smarty->security_policy->isTrustedResourceDir($_filepath);
- }
- }
- $_template->templateUid = sha1($_filepath);
- return $_filepath;
- }
+ $source->uid = sha1($source->filepath);
+ if ($source->smarty->compile_check && !isset($source->timestamp)) {
+ $source->timestamp = @filemtime($source->filepath);
+ $source->exists = !!$source->timestamp;
+ }
+ }
+ }
/**
- * Get timestamp to template source
- *
- * @param object $_template template object
- * @return integer timestamp of template source file
+ * populate Source Object with timestamp and exists from Resource
+ *
+ * @param Smarty_Template_Source $source source object
*/
- public function getTemplateTimestamp($_template)
+ public function populateTimestamp(Smarty_Template_Source $source)
{
- return filemtime($_template->getTemplateFilepath());
- }
+ $source->timestamp = @filemtime($source->filepath);
+ $source->exists = !!$source->timestamp;
+ }
/**
- * Read template source from file
- *
- * @param object $_template template object
- * @return string content of template source file
+ * Load template's source from file into current template object
+ *
+ * @param Smarty_Template_Source $source source object
+ * @return string template source
+ * @throws SmartyException if source cannot be loaded
*/
- public function getTemplateSource($_template)
- {
- // read template file
- if (file_exists($_tfp = $_template->getTemplateFilepath())) {
- $_template->template_source = file_get_contents($_tfp);
- return true;
- } else {
- return false;
- }
- }
+ public function getContent(Smarty_Template_Source $source)
+ {
+ if ($source->timestamp) {
+ return file_get_contents($source->filepath);
+ }
+ if ($source instanceof Smarty_Config_Source) {
+ throw new SmartyException("Unable to read config {$source->type} '{$source->name}'");
+ }
+ throw new SmartyException("Unable to read template {$source->type} '{$source->name}'");
+ }
/**
- * Get filepath to compiled template
- *
- * @param object $_template template object
- * @return string return path to compiled template
+ * Determine basename for compiled filename
+ *
+ * @param Smarty_Template_Source $source source object
+ * @return string resource's basename
*/
- public function getCompiledFilepath($_template)
+ public function getBasename(Smarty_Template_Source $source)
{
- $_compile_id = isset($_template->compile_id) ? preg_replace('![^\w\|]+!', '_', $_template->compile_id) : null;
- // calculate Uid if not already done
- if ($_template->templateUid == '') {
- $_template->getTemplateFilepath();
- }
- $_filepath = $_template->templateUid;
- // if use_sub_dirs, break file into directories
- if ($_template->smarty->use_sub_dirs) {
- $_filepath = substr($_filepath, 0, 2) . DS
- . substr($_filepath, 2, 2) . DS
- . substr($_filepath, 4, 2) . DS
- . $_filepath;
- }
- $_compile_dir_sep = $_template->smarty->use_sub_dirs ? DS : '^';
- if (isset($_compile_id)) {
- $_filepath = $_compile_id . $_compile_dir_sep . $_filepath;
- }
- if ($_template->caching) {
- $_cache = '.cache';
- } else {
- $_cache = '';
- }
- $_compile_dir = $_template->smarty->compile_dir;
- if (strpos('/\\', substr($_compile_dir, -1)) === false) {
- $_compile_dir .= DS;
- }
- return $_compile_dir . $_filepath . '.' . $_template->resource_type . '.' . basename($_template->resource_name) . $_cache . '.php';
- }
-}
+ $_file = $source->name;
+ if (($_pos = strpos($_file, ']')) !== false) {
+ $_file = substr($_file, $_pos + 1);
+ }
+ return basename($_file);
+ }
+
+}
?>
\ No newline at end of file
diff --git a/gosa-core/include/smarty/sysplugins/smarty_internal_resource_php.php b/gosa-core/include/smarty/sysplugins/smarty_internal_resource_php.php
index 16c77446e5a3ab821a90311462663ea7efcb94c1..7cd8baeecb68511d72487f59c4fa758ce3eea7d6 100644 (file)
/**
* Smarty Internal Plugin Resource PHP
- *
+ *
* Implements the file system as resource for PHP templates
- *
+ *
* @package Smarty
* @subpackage TemplateResources
- * @author Uwe Tews
+ * @author Uwe Tews
+ * @author Rodney Rehm
*/
-
-/**
- * Smarty Internal Plugin Resource PHP
- */
-class Smarty_Internal_Resource_PHP {
+class Smarty_Internal_Resource_PHP extends Smarty_Resource_Uncompiled {
/**
- * Class constructor, enable short open tags
+ * container for short_open_tag directive's value before executing PHP templates
+ * @var string
*/
- public function __construct($smarty)
- {
- $this->smarty = $smarty;
- ini_set('short_open_tag', '1');
- }
- // properties
- public $usesCompiler = false;
- public $isEvaluated = false;
+ protected $short_open_tag;
/**
- * Return flag if template source is existing
- *
- * @return boolean true
+ * Create a new PHP Resource
+ *
*/
- public function isExisting($template)
+ public function __construct()
{
- if ($template->getTemplateFilepath() === false) {
- return false;
- } else {
- return true;
- }
- }
+ $this->short_open_tag = ini_get( 'short_open_tag' );
+ }
/**
- * Get filepath to template source
- *
- * @param object $_template template object
- * @return string filepath to template source file
+ * populate Source Object with meta data from Resource
+ *
+ * @param Smarty_Template_Source $source source object
+ * @param Smarty_Internal_Template $_template template object
+ * @return void
*/
- public function getTemplateFilepath($_template)
+ public function populate(Smarty_Template_Source $source, Smarty_Internal_Template $_template=null)
{
- $_filepath = $_template->buildTemplateFilepath ();
+ $source->filepath = $this->buildFilepath($source, $_template);
- if (is_object($_template->smarty->security_policy)) {
- $_template->smarty->security_policy->isTrustedResourceDir($_filepath);
- }
- $_template->templateUid = sha1($_filepath);
- return $_filepath;
- }
+ if ($source->filepath !== false) {
+ if (is_object($source->smarty->security_policy)) {
+ $source->smarty->security_policy->isTrustedResourceDir($source->filepath);
+ }
- /**
- * Get timestamp to template source
- *
- * @param object $_template template object
- * @return integer timestamp of template source file
- */
- public function getTemplateTimestamp($_template)
- {
- return filemtime($_template->getTemplateFilepath());
- }
+ $source->uid = sha1($source->filepath);
+ if ($source->smarty->compile_check) {
+ $source->timestamp = @filemtime($source->filepath);
+ $source->exists = !!$source->timestamp;
+ }
+ }
+ }
/**
- * Read template source from file
- *
- * @param object $_template template object
- * @return string content of template source file
+ * populate Source Object with timestamp and exists from Resource
+ *
+ * @param Smarty_Template_Source $source source object
+ * @return void
*/
- public function getTemplateSource($_template)
+ public function populateTimestamp(Smarty_Template_Source $source)
{
- if (file_exists($_tfp = $_template->getTemplateFilepath())) {
- $_template->template_source = file_get_contents($_tfp);
- return true;
- } else {
- return false;
- }
- }
+ $source->timestamp = @filemtime($source->filepath);
+ $source->exists = !!$source->timestamp;
+ }
/**
- * Get filepath to compiled template
- *
- * @param object $_template template object
- * @return boolean return false as compiled template is not stored
+ * Load template's source from file into current template object
+ *
+ * @param Smarty_Template_Source $source source object
+ * @return string template source
+ * @throws SmartyException if source cannot be loaded
*/
- public function getCompiledFilepath($_template)
- {
- // no filepath for PHP templates
- return false;
- }
+ public function getContent(Smarty_Template_Source $source)
+ {
+ if ($source->timestamp) {
+ return '';
+ }
+ throw new SmartyException("Unable to read template {$source->type} '{$source->name}'");
+ }
/**
- * renders the PHP template
+ * Render and output the template (without using the compiler)
+ *
+ * @param Smarty_Template_Source $source source object
+ * @param Smarty_Internal_Template $_template template object
+ * @return void
+ * @throws SmartyException if template cannot be loaded or allow_php_templates is disabled
*/
- public function renderUncompiled($_smarty_template)
+ public function renderUncompiled(Smarty_Template_Source $source, Smarty_Internal_Template $_template)
{
- if (!$this->smarty->allow_php_templates) {
+ $_smarty_template = $_template;
+
+ if (!$source->smarty->allow_php_templates) {
throw new SmartyException("PHP templates are disabled");
- }
- if ($this->getTemplateFilepath($_smarty_template) === false) {
- throw new SmartyException("Unable to load template \"{$_smarty_template->resource_type} : {$_smarty_template->resource_name}\"");
- }
+ }
+ if (!$source->exists) {
+ if ($_template->parent instanceof Smarty_Internal_Template) {
+ $parent_resource = " in '{$_template->parent->template_resource}'";
+ } else {
+ $parent_resource = '';
+ }
+ throw new SmartyException("Unable to load template {$source->type} '{$source->name}'{$parent_resource}");
+ }
+
// prepare variables
- $_smarty_ptr = $_smarty_template;
- do {
- foreach ($_smarty_ptr->tpl_vars as $_smarty_var => $_smarty_var_object) {
- if (isset($_smarty_var_object->value)) {
- $$_smarty_var = $_smarty_var_object->value;
- }
- }
- $_smarty_ptr = $_smarty_ptr->parent;
- } while ($_smarty_ptr != null);
- unset ($_smarty_var, $_smarty_var_object, $_smarty_ptr);
- // include PHP template
- include($this->getTemplateFilepath($_smarty_template));
- return;
- }
-}
+ extract($_template->getTemplateVars());
+
+ // include PHP template with short open tags enabled
+ ini_set( 'short_open_tag', '1' );
+ include($source->filepath);
+ ini_set( 'short_open_tag', $this->short_open_tag );
+ }
+}
?>
\ No newline at end of file
diff --git a/gosa-core/include/smarty/sysplugins/smarty_internal_resource_registered.php b/gosa-core/include/smarty/sysplugins/smarty_internal_resource_registered.php
index 467da11a839b72ca5924b57d6f848d76869a179d..44497b9226c2dbb29850406c2cba21ea45529434 100644 (file)
<?php
-
/**
* Smarty Internal Plugin Resource Registered
- *
- * Implements the registered resource for Smarty template
- *
+ *
* @package Smarty
* @subpackage TemplateResources
- * @author Uwe Tews
+ * @author Uwe Tews
+ * @author Rodney Rehm
*/
-
+
/**
* Smarty Internal Plugin Resource Registered
+ *
+ * Implements the registered resource for Smarty template
+ *
+ * @package Smarty
+ * @subpackage TemplateResources
+ * @deprecated
*/
-class Smarty_Internal_Resource_Registered {
- public function __construct($template, $resource_type = null)
- {
- $this->smarty = $template->smarty;
- if (isset($resource_type)) {
- $template->smarty->registerResource($resource_type,
- array("smarty_resource_{$resource_type}_source",
- "smarty_resource_{$resource_type}_timestamp",
- "smarty_resource_{$resource_type}_secure",
- "smarty_resource_{$resource_type}_trusted"));
- }
- }
- // classes used for compiling Smarty templates from file resource
- public $compiler_class = 'Smarty_Internal_SmartyTemplateCompiler';
- public $template_lexer_class = 'Smarty_Internal_Templatelexer';
- public $template_parser_class = 'Smarty_Internal_Templateparser';
- // properties
- public $usesCompiler = true;
- public $isEvaluated = false;
+class Smarty_Internal_Resource_Registered extends Smarty_Resource {
/**
- * Return flag if template source is existing
- *
- * @return boolean true
+ * populate Source Object with meta data from Resource
+ *
+ * @param Smarty_Template_Source $source source object
+ * @param Smarty_Internal_Template $_template template object
+ * @return void
*/
- public function isExisting($_template)
+ public function populate(Smarty_Template_Source $source, Smarty_Internal_Template $_template=null)
{
- if (is_integer($_template->getTemplateTimestamp())) {
- return true;
- } else {
- return false;
- }
- }
- /**
- * Get filepath to template source
- *
- * @param object $_template template object
- * @return string return 'string' as template source is not a file
- */
- public function getTemplateFilepath($_template)
- {
- $_filepath = $_template->resource_type .':'.$_template->resource_name;
- $_template->templateUid = sha1($_filepath);
- return $_filepath;
- }
+ $source->filepath = $source->type . ':' . $source->name;
+ $source->uid = sha1($source->filepath);
+ if ($source->smarty->compile_check) {
+ $source->timestamp = $this->getTemplateTimestamp($source);
+ $source->exists = !!$source->timestamp;
+ }
+ }
/**
- * Get timestamp of template source
- *
- * @param object $_template template object
- * @return int timestamp
+ * populate Source Object with timestamp and exists from Resource
+ *
+ * @param Smarty_Template_Source $source source object
+ * @return void
*/
- public function getTemplateTimestamp($_template)
- {
- // return timestamp
- $time_stamp = false;
- call_user_func_array($this->smarty->registered_resources[$_template->resource_type][0][1],
- array($_template->resource_name, &$time_stamp, $this->smarty));
- return is_numeric($time_stamp) ? (int)$time_stamp : $time_stamp;
+ public function populateTimestamp(Smarty_Template_Source $source)
+ {
+ $source->timestamp = $this->getTemplateTimestamp($source);
+ $source->exists = !!$source->timestamp;
}
-
+
/**
- * Get timestamp of template source by type and name
- *
- * @param object $_template template object
- * @return int timestamp
+ * Get timestamp (epoch) the template source was modified
+ *
+ * @param Smarty_Template_Source $source source object
+ * @return integer|boolean timestamp (epoch) the template was modified, false if resources has no timestamp
*/
- public function getTemplateTimestampTypeName($_resource_type, $_resource_name)
- {
+ public function getTemplateTimestamp(Smarty_Template_Source $source)
+ {
// return timestamp
$time_stamp = false;
- call_user_func_array($this->smarty->registered_resources[$_resource_type][0][1],
- array($_resource_name, &$time_stamp, $this->smarty));
- return is_numeric($time_stamp) ? (int)$time_stamp : $time_stamp;
- }
+ call_user_func_array($source->smarty->registered_resources[$source->type][0][1], array($source->name, &$time_stamp, $source->smarty));
+ return is_numeric($time_stamp) ? (int) $time_stamp : $time_stamp;
+ }
/**
- * Retuen template source from resource name
- *
- * @param object $_template template object
- * @return string content of template source
+ * Load template's source by invoking the registered callback into current template object
+ *
+ * @param Smarty_Template_Source $source source object
+ * @return string template source
+ * @throws SmartyException if source cannot be loaded
*/
- public function getTemplateSource($_template)
- {
+ public function getContent(Smarty_Template_Source $source)
+ {
// return template string
- return call_user_func_array($this->smarty->registered_resources[$_template->resource_type][0][0],
- array($_template->resource_name, &$_template->template_source, $this->smarty));
- }
+ $t = call_user_func_array($source->smarty->registered_resources[$source->type][0][0], array($source->name, &$source->content, $source->smarty));
+ if (is_bool($t) && !$t) {
+ throw new SmartyException("Unable to read template {$source->type} '{$source->name}'");
+ }
+ return $source->content;
+ }
/**
- * Get filepath to compiled template
- *
- * @param object $_template template object
- * @return boolean return false as compiled template is not stored
+ * Determine basename for compiled filename
+ *
+ * @param Smarty_Template_Source $source source object
+ * @return string resource's basename
*/
- public function getCompiledFilepath($_template)
- {
- $_compile_id = isset($_template->compile_id) ? preg_replace('![^\w\|]+!','_',$_template->compile_id) : null;
- // calculate Uid if not already done
- if ($_template->templateUid == '') {
- $_template->getTemplateFilepath();
- }
- $_filepath = $_template->templateUid;
- // if use_sub_dirs, break file into directories
- if ($_template->smarty->use_sub_dirs) {
- $_filepath = substr($_filepath, 0, 2) . DS
- . substr($_filepath, 2, 2) . DS
- . substr($_filepath, 4, 2) . DS
- . $_filepath;
- }
- $_compile_dir_sep = $_template->smarty->use_sub_dirs ? DS : '^';
- if (isset($_compile_id)) {
- $_filepath = $_compile_id . $_compile_dir_sep . $_filepath;
- }
- if ($_template->caching) {
- $_cache = '.cache';
- } else {
- $_cache = '';
- }
- $_compile_dir = $_template->smarty->compile_dir;
- if (strpos('/\\', substr($_compile_dir, -1)) === false) {
- $_compile_dir .= DS;
- }
- return $_compile_dir . $_filepath . '.' . $_template->resource_type . '.' . basename($_template->resource_name) . $_cache . '.php';
- }
-}
+ protected function getBasename(Smarty_Template_Source $source)
+ {
+ return basename($source->name);
+ }
+
+}
?>
\ No newline at end of file
diff --git a/gosa-core/include/smarty/sysplugins/smarty_internal_resource_stream.php b/gosa-core/include/smarty/sysplugins/smarty_internal_resource_stream.php
index 1878002bf50a03fa7c81b2b2d6a1fb6b60ab2674..85698c23287b911d8fe36350f84ef49e8a1de14b 100644 (file)
<?php
-
/**
-* Smarty Internal Plugin Resource Stream
-*
-* Implements the streams as resource for Smarty template
-*
-* @package Smarty
-* @subpackage TemplateResources
-* @author Uwe Tews
-*/
+ * Smarty Internal Plugin Resource Stream
+ *
+ * Implements the streams as resource for Smarty template
+ *
+ * @package Smarty
+ * @subpackage TemplateResources
+ * @author Uwe Tews
+ * @author Rodney Rehm
+ */
/**
-* Smarty Internal Plugin Resource Stream
-*/
-class Smarty_Internal_Resource_Stream {
- public function __construct($smarty)
- {
- $this->smarty = $smarty;
- }
- // classes used for compiling Smarty templates from file resource
- public $compiler_class = 'Smarty_Internal_SmartyTemplateCompiler';
- public $template_lexer_class = 'Smarty_Internal_Templatelexer';
- public $template_parser_class = 'Smarty_Internal_Templateparser';
- // properties
- public $usesCompiler = true;
- public $isEvaluated = true;
-
- /**
- * Return flag if template source is existing
- *
- * @return boolean true
- */
- public function isExisting($template)
- {
- if ($template->getTemplateSource() == '') {
- return false;
- } else {
- return true;
- }
- }
- /**
- * Get filepath to template source
- *
- * @param object $_template template object
- * @return string return 'string' as template source is not a file
- */
- public function getTemplateFilepath($_template)
- {
- // no filepath for strings
- // return resource name for compiler error messages
- return str_replace(':', '://', $_template->template_resource);
- }
+ * Smarty Internal Plugin Resource Stream
+ *
+ * Implements the streams as resource for Smarty template
+ *
+ * @link http://php.net/streams
+ * @package Smarty
+ * @subpackage TemplateResources
+ */
+class Smarty_Internal_Resource_Stream extends Smarty_Resource_Recompiled {
/**
- * Get timestamp to template source
- *
- * @param object $_template template object
- * @return boolean false as string resources have no timestamp
- */
- public function getTemplateTimestamp($_template)
+ * populate Source Object with meta data from Resource
+ *
+ * @param Smarty_Template_Source $source source object
+ * @param Smarty_Internal_Template $_template template object
+ * @return void
+ */
+ public function populate(Smarty_Template_Source $source, Smarty_Internal_Template $_template=null)
{
- // strings must always be compiled and have no timestamp
- return false;
+ $source->filepath = str_replace(':', '://', $source->resource);
+ $source->uid = false;
+ $source->content = $this->getContent($source);
+ $source->timestamp = false;
+ $source->exists = !!$source->content;
}
/**
- * Retuen template source from resource name
- *
- * @param object $_template template object
- * @return string content of template source
- */
- public function getTemplateSource($_template)
+ * Load template's source from stream into current template object
+ *
+ * @param Smarty_Template_Source $source source object
+ * @return string template source
+ * @throws SmartyException if source cannot be loaded
+ */
+ public function getContent(Smarty_Template_Source $source)
{
- // return template string
- $_template->template_source = '';
- if ($fp = fopen(str_replace(':', '://', $_template->template_resource),'r+')) {
- while (!feof($fp) && ($current_line = fgets($fp)) !== false ) {
- $_template->template_source .= $current_line;
+ $t = '';
+ // the availability of the stream has already been checked in Smarty_Resource::fetch()
+ $fp = fopen($source->filepath, 'r+');
+ if ($fp) {
+ while (!feof($fp) && ($current_line = fgets($fp)) !== false) {
+ $t .= $current_line;
}
fclose($fp);
- return true;
+ return $t;
} else {
return false;
}
}
-
+
/**
- * Get filepath to compiled template
- *
- * @param object $_template template object
- * @return boolean return false as compiled template is not stored
- */
- public function getCompiledFilepath($_template)
+ * modify resource_name according to resource handlers specifications
+ *
+ * @param Smarty $smarty Smarty instance
+ * @param string $resource_name resource_name to make unique
+ * @return string unique resource name
+ */
+ protected function buildUniqueResourceName(Smarty $smarty, $resource_name)
{
- // no filepath for strings
- return false;
+ return get_class($this) . '#' . $resource_name;
}
}
diff --git a/gosa-core/include/smarty/sysplugins/smarty_internal_resource_string.php b/gosa-core/include/smarty/sysplugins/smarty_internal_resource_string.php
index 9368f0406289469bad9f1e77c9b78e34ecef366f..9571337b093d2896d87ab45aeb0c09a65aee3c58 100644 (file)
<?php
-
/**
* Smarty Internal Plugin Resource String
- *
- * Implements the strings as resource for Smarty template
- *
+ *
* @package Smarty
* @subpackage TemplateResources
- * @author Uwe Tews
+ * @author Uwe Tews
+ * @author Rodney Rehm
*/
-
+
/**
* Smarty Internal Plugin Resource String
+ *
+ * Implements the strings as resource for Smarty template
+ *
+ * {@internal unlike eval-resources the compiled state of string-resources is saved for subsequent access}}
+ *
+ * @package Smarty
+ * @subpackage TemplateResources
*/
-class Smarty_Internal_Resource_String {
- public function __construct($smarty)
- {
- $this->smarty = $smarty;
- }
- // classes used for compiling Smarty templates from file resource
- public $compiler_class = 'Smarty_Internal_SmartyTemplateCompiler';
- public $template_lexer_class = 'Smarty_Internal_Templatelexer';
- public $template_parser_class = 'Smarty_Internal_Templateparser';
- // properties
- public $usesCompiler = true;
- public $isEvaluated = false;
+class Smarty_Internal_Resource_String extends Smarty_Resource {
/**
- * Return flag if template source is existing
- *
- * @return boolean true
+ * populate Source Object with meta data from Resource
+ *
+ * @param Smarty_Template_Source $source source object
+ * @param Smarty_Internal_Template $_template template object
+ * @return void
*/
- public function isExisting($template)
+ public function populate(Smarty_Template_Source $source, Smarty_Internal_Template $_template=null)
{
- return true;
- }
+ $source->uid = $source->filepath = sha1($source->name);
+ $source->timestamp = 0;
+ $source->exists = true;
+ }
/**
- * Get filepath to template source
- *
- * @param object $_template template object
- * @return string return 'string' as template source is not a file
+ * Load template's source from $resource_name into current template object
+ *
+ * @uses decode() to decode base64 and urlencoded template_resources
+ * @param Smarty_Template_Source $source source object
+ * @return string template source
*/
- public function getTemplateFilepath($_template)
- {
- $_template->templateUid = sha1($_template->resource_name);
- // no filepath for strings
- // return "string" for compiler error messages
- return 'string:';
- }
-
+ public function getContent(Smarty_Template_Source $source)
+ {
+ return $this->decode($source->name);
+ }
+
/**
- * Get timestamp to template source
- *
- * @param object $_template template object
- * @return boolean false as string resources have no timestamp
+ * decode base64 and urlencode
+ *
+ * @param string $string template_resource to decode
+ * @return string decoded template_resource
*/
- public function getTemplateTimestamp($_template)
- {
- if ($this->isEvaluated) {
- //must always be compiled and have no timestamp
- return false;
- } else {
- return 0;
+ protected function decode($string)
+ {
+ // decode if specified
+ if (($pos = strpos($string, ':')) !== false) {
+ if (!strncmp($string, 'base64', 6)) {
+ return base64_decode(substr($string, 7));
+ } elseif (!strncmp($string, 'urlencode', 9)) {
+ return urldecode(substr($string, 10));
+ }
}
- }
-
- /**
- * Get timestamp of template source by type and name
- *
- * @param object $_template template object
- * @return int timestamp (always 0)
- */
- public function getTemplateTimestampTypeName($_resource_type, $_resource_name)
- {
- // return timestamp 0
- return 0;
- }
-
-
+
+ return $string;
+ }
+
/**
- * Retuen template source from resource name
- *
- * @param object $_template template object
- * @return string content of template source
+ * modify resource_name according to resource handlers specifications
+ *
+ * @param Smarty $smarty Smarty instance
+ * @param string $resource_name resource_name to make unique
+ * @return string unique resource name
*/
- public function getTemplateSource($_template)
- {
- // return template string
- $_template->template_source = $_template->resource_name;
- return true;
- }
+ protected function buildUniqueResourceName(Smarty $smarty, $resource_name)
+ {
+ return get_class($this) . '#' .$this->decode($resource_name);
+ }
/**
- * Get filepath to compiled template
- *
- * @param object $_template template object
- * @return boolean return false as compiled template is not stored
+ * Determine basename for compiled filename
+ *
+ * Always returns an empty string.
+ *
+ * @param Smarty_Template_Source $source source object
+ * @return string resource's basename
*/
- public function getCompiledFilepath($_template)
+ protected function getBasename(Smarty_Template_Source $source)
{
- $_compile_id = isset($_template->compile_id) ? preg_replace('![^\w\|]+!', '_', $_template->compile_id) : null;
- // calculate Uid if not already done
- if ($_template->templateUid == '') {
- $_template->getTemplateFilepath();
- }
- $_filepath = $_template->templateUid;
- // if use_sub_dirs, break file into directories
- if ($_template->smarty->use_sub_dirs) {
- $_filepath = substr($_filepath, 0, 2) . DS
- . substr($_filepath, 2, 2) . DS
- . substr($_filepath, 4, 2) . DS
- . $_filepath;
- }
- $_compile_dir_sep = $_template->smarty->use_sub_dirs ? DS : '^';
- if (isset($_compile_id)) {
- $_filepath = $_compile_id . $_compile_dir_sep . $_filepath;
- }
- if ($_template->caching) {
- $_cache = '.cache';
- } else {
- $_cache = '';
- }
- $_compile_dir = $_template->smarty->compile_dir;
- if (strpos('/\\', substr($_compile_dir, -1)) === false) {
- $_compile_dir .= DS;
- }
- return $_compile_dir . $_filepath . '.' . $_template->resource_type . $_cache . '.php';
- }
-}
+ return '';
+ }
+
+}
?>
\ No newline at end of file
diff --git a/gosa-core/include/smarty/sysplugins/smarty_internal_smartytemplatecompiler.php b/gosa-core/include/smarty/sysplugins/smarty_internal_smartytemplatecompiler.php
index dcc89c6736a473c78cc23e199d9a7e27f1164b8c..1ec1aa43058ffbc89cd1233c02332e6a87b609f2 100644 (file)
<?php
-
/**
* Smarty Internal Plugin Smarty Template Compiler Base
- *
+ *
* This file contains the basic classes and methodes for compiling Smarty templates with lexer/parser
- *
+ *
* @package Smarty
* @subpackage Compiler
- * @author Uwe Tews
+ * @author Uwe Tews
*/
-require_once("smarty_internal_parsetree.php");
+/**
+ * @ignore
+ */
+include ("smarty_internal_parsetree.php");
/**
* Class SmartyTemplateCompiler
+ *
+ * @package Smarty
+ * @subpackage Compiler
*/
class Smarty_Internal_SmartyTemplateCompiler extends Smarty_Internal_TemplateCompilerBase {
- // array of vars which can be compiled in local scope
+
+ /**
+ * Lexer class name
+ *
+ * @var string
+ */
+ public $lexer_class;
+
+ /**
+ * Parser class name
+ *
+ * @var string
+ */
+ public $parser_class;
+
+ /**
+ * Lexer object
+ *
+ * @var object
+ */
+ public $lex;
+
+ /**
+ * Parser object
+ *
+ * @var object
+ */
+ public $parser;
+
+ /**
+ * Smarty object
+ *
+ * @var object
+ */
+ public $smarty;
+
+ /**
+ * array of vars which can be compiled in local scope
+ *
+ * @var array
+ */
public $local_var = array();
+
/**
* Initialize compiler
+ *
+ * @param string $lexer_class class name
+ * @param string $parser_class class name
+ * @param Smarty $smarty global instance
*/
public function __construct($lexer_class, $parser_class, $smarty)
{
$this->smarty = $smarty;
- parent::__construct();
+ parent::__construct();
// get required plugins
$this->lexer_class = $lexer_class;
$this->parser_class = $parser_class;
- }
+ }
/**
* Methode to compile a Smarty template
- *
- * @param $_content template source
+ *
+ * @param mixed $_content template source
* @return bool true if compiling succeeded, false if it failed
*/
protected function doCompile($_content)
{
/* here is where the compiling takes place. Smarty
- tags in the templates are replaces with PHP code,
- then written to compiled files. */
+ tags in the templates are replaces with PHP code,
+ then written to compiled files. */
// init the lexer/parser to compile the template
$this->lex = new $this->lexer_class($_content, $this);
$this->parser = new $this->parser_class($this->lex, $this);
- if (isset($this->smarty->_parserdebug)) $this->parser->PrintTrace();
+ if ($this->smarty->_parserdebug)
+ $this->parser->PrintTrace();
// get tokens from lexer and parse them
while ($this->lex->yylex() && !$this->abort_and_recompile) {
- if (isset($this->smarty->_parserdebug)) echo "<pre>Line {$this->lex->line} Parsing {$this->parser->yyTokenName[$this->lex->token]} Token " . htmlentities($this->lex->value) . "</pre>";
+ if ($this->smarty->_parserdebug) {
+ echo "<pre>Line {$this->lex->line} Parsing {$this->parser->yyTokenName[$this->lex->token]} Token " .
+ htmlentities($this->lex->value) . "</pre>";
+ }
$this->parser->doParse($this->lex->token, $this->lex->value);
- }
+ }
if ($this->abort_and_recompile) {
// exit here on abort
return false;
- }
+ }
// finish parsing process
- $this->parser->doParse(0, 0);
+ $this->parser->doParse(0, 0);
// check for unclosed tags
if (count($this->_tag_stack) > 0) {
// get stacked info
- list($_open_tag, $_data) = array_pop($this->_tag_stack);
- $this->trigger_template_error("unclosed {" . $_open_tag . "} tag");
- }
+ list($openTag, $_data) = array_pop($this->_tag_stack);
+ $this->trigger_template_error("unclosed {" . $openTag . "} tag");
+ }
// return compiled code
// return str_replace(array("? >\n<?php","? ><?php"), array('',''), $this->parser->retvalue);
return $this->parser->retvalue;
- }
-}
+ }
+
+}
?>
\ No newline at end of file
diff --git a/gosa-core/include/smarty/sysplugins/smarty_internal_template.php b/gosa-core/include/smarty/sysplugins/smarty_internal_template.php
index 480fbee650f5f0dddb1141194498e85a7def3be0..a69eb04901ee999f91fb84750aae0d1bdff21418 100644 (file)
<?php
-
/**
* Smarty Internal Plugin Template
*
* This file contains the Smarty template engine
*
* @package Smarty
- * @subpackage Templates
+ * @subpackage Template
* @author Uwe Tews
*/
/**
* Main class with template data structures and methods
+ *
+ * @package Smarty
+ * @subpackage Template
+ *
+ * @property Smarty_Template_Source $source
+ * @property Smarty_Template_Compiled $compiled
+ * @property Smarty_Template_Cached $cached
*/
-class Smarty_Internal_Template extends Smarty_Internal_Data {
- // object cache
- public $compiler_object = null;
- public $cacher_object = null;
- // Smarty parameter
+class Smarty_Internal_Template extends Smarty_Internal_TemplateBase {
+
+ /**
+ * cache_id
+ * @var string
+ */
public $cache_id = null;
+ /**
+ * $compile_id
+ * @var string
+ */
public $compile_id = null;
+ /**
+ * caching enabled
+ * @var boolean
+ */
public $caching = null;
+ /**
+ * cache lifetime in seconds
+ * @var integer
+ */
public $cache_lifetime = null;
- public $cacher_class = null;
- public $caching_type = null;
- public $forceNocache = false;
- // Template resource
+ /**
+ * Template resource
+ * @var string
+ */
public $template_resource = null;
- public $resource_type = null;
- public $resource_name = null;
-// public $resource_object = null;
- private $isExisting = null;
- public $templateUid = '';
- // Template source
- public $template_filepath = null;
- public $template_source = null;
- private $template_timestamp = null;
- // Compiled template
- private $compiled_filepath = null;
- public $compiled_template = null;
- private $compiled_timestamp = null;
+ /**
+ * flag if compiled template is invalid and must be (re)compiled
+ * @var bool
+ */
public $mustCompile = null;
- public $suppressHeader = false;
- public $suppressFileDependency = false;
+ /**
+ * flag if template does contain nocache code sections
+ * @var bool
+ */
public $has_nocache_code = false;
- public $write_compiled_code = true;
- // Rendered content
- public $rendered_content = null;
- // Cache file
- private $cached_filepath = null;
- public $cached_timestamp = null;
- private $isCached = null;
-// private $cache_resource_object = null;
- private $cacheFileChecked = false;
- // template variables
- public $tpl_vars = array();
- public $parent = null;
- public $config_vars = array();
- // storage for plugin
- public $plugin_data = array();
- // special properties
- public $properties = array ('file_dependency' => array(),
+ /**
+ * special compiled and cached template properties
+ * @var array
+ */
+ public $properties = array('file_dependency' => array(),
'nocache_hash' => '',
'function' => array());
- // required plugins
+ /**
+ * required plugins
+ * @var array
+ */
public $required_plugins = array('compiled' => array(), 'nocache' => array());
- public $saved_modifier = null;
+ /**
+ * Global smarty instance
+ * @var Smarty
+ */
public $smarty = null;
- // blocks for template inheritance
+ /**
+ * blocks for template inheritance
+ * @var array
+ */
public $block_data = array();
- public $wrapper = null;
+ /**
+ * variable filters
+ * @var array
+ */
+ public $variable_filters = array();
+ /**
+ * optional log of tag/attributes
+ * @var array
+ */
+ public $used_tags = array();
+ /**
+ * internal flag to allow relative path in child template blocks
+ * @var bool
+ */
+ public $allow_relative_path = false;
+ /**
+ * internal capture runtime stack
+ * @var array
+ */
+ public $_capture_stack = array();
+
/**
* Create template data object
*
* Some of the global Smarty settings copied to template scope
* It load the required template resources and cacher plugins
*
- * @param string $template_resource template resource string
- * @param object $_parent back pointer to parent object with variables or null
- * @param mixed $_cache_id cache id or null
- * @param mixed $_compile_id compile id or null
+ * @param string $template_resource template resource string
+ * @param Smarty $smarty Smarty instance
+ * @param Smarty_Internal_Template $_parent back pointer to parent object with variables or null
+ * @param mixed $_cache_id cache id or null
+ * @param mixed $_compile_id compile id or null
+ * @param bool $_caching use caching?
+ * @param int $_cache_lifetime cache life-time in seconds
*/
public function __construct($template_resource, $smarty, $_parent = null, $_cache_id = null, $_compile_id = null, $_caching = null, $_cache_lifetime = null)
{
$this->cache_id = $_cache_id === null ? $this->smarty->cache_id : $_cache_id;
$this->compile_id = $_compile_id === null ? $this->smarty->compile_id : $_compile_id;
$this->caching = $_caching === null ? $this->smarty->caching : $_caching;
- if ($this->caching === true) $this->caching = Smarty::CACHING_LIFETIME_CURRENT;
- $this->cache_lifetime = $_cache_lifetime === null ?$this->smarty->cache_lifetime : $_cache_lifetime;
+ if ($this->caching === true)
+ $this->caching = Smarty::CACHING_LIFETIME_CURRENT;
+ $this->cache_lifetime = $_cache_lifetime === null ? $this->smarty->cache_lifetime : $_cache_lifetime;
$this->parent = $_parent;
- // dummy local smarty variable
- $this->tpl_vars['smarty'] = new Smarty_Variable;
// Template resource
$this->template_resource = $template_resource;
// copy block data of template inheritance
if ($this->parent instanceof Smarty_Internal_Template) {
- $this->block_data = $this->parent->block_data;
+ $this->block_data = $this->parent->block_data;
}
-
- }
-
- /**
- * Returns the template filepath
- *
- * The template filepath is determined by the actual resource handler
- *
- * @return string the template filepath
- */
- public function getTemplateFilepath ()
- {
- return $this->template_filepath === null ?
- $this->template_filepath = $this->resource_object->getTemplateFilepath($this) :
- $this->template_filepath;
- }
-
- /**
- * Returns the timpestamp of the template source
- *
- * The template timestamp is determined by the actual resource handler
- *
- * @return integer the template timestamp
- */
- public function getTemplateTimestamp ()
- {
- return $this->template_timestamp === null ?
- $this->template_timestamp = $this->resource_object->getTemplateTimestamp($this) :
- $this->template_timestamp;
- }
-
- /**
- * Returns the template source code
- *
- * The template source is being read by the actual resource handler
- *
- * @return string the template source
- */
- public function getTemplateSource ()
- {
- if ($this->template_source === null) {
- if (!$this->resource_object->getTemplateSource($this)) {
- throw new SmartyException("Unable to read template {$this->resource_type} '{$this->resource_name}'");
- }
- }
- return $this->template_source;
- }
-
- /**
- * Returns if the template is existing
- *
- * The status is determined by the actual resource handler
- *
- * @return boolean true if the template exists
- */
- public function isExisting ($error = false)
- {
- if ($this->isExisting === null) {
- $this->isExisting = $this->resource_object->isExisting($this);
- }
- if (!$this->isExisting && $error) {
- throw new SmartyException("Unable to load template {$this->resource_type} '{$this->resource_name}'");
- }
- return $this->isExisting;
}
/**
*
* @return boolean true if the template must be compiled
*/
- public function mustCompile ()
- {
- $this->isExisting(true);
- if ($this->mustCompile === null) {
- $this->mustCompile = ($this->resource_object->usesCompiler && ($this->smarty->force_compile || $this->resource_object->isEvaluated || $this->getCompiledTimestamp () === false ||
- // ($this->smarty->compile_check && $this->getCompiledTimestamp () !== $this->getTemplateTimestamp ())));
- ($this->smarty->compile_check && $this->getCompiledTimestamp () < $this->getTemplateTimestamp ())));
- }
- return $this->mustCompile;
- }
-
- /**
- * Returns the compiled template filepath
- *
- * @return string the template filepath
- */
- public function getCompiledFilepath ()
- {
- return $this->compiled_filepath === null ?
- ($this->compiled_filepath = !$this->resource_object->isEvaluated ? $this->resource_object->getCompiledFilepath($this) : false) :
- $this->compiled_filepath;
- }
-
- /**
- * Returns the timpestamp of the compiled template
- *
- * @return integer the template timestamp
- */
- public function getCompiledTimestamp ()
+ public function mustCompile()
{
- return $this->compiled_timestamp === null ?
- ($this->compiled_timestamp = (!$this->resource_object->isEvaluated && file_exists($this->getCompiledFilepath())) ? filemtime($this->getCompiledFilepath()) : false) :
- $this->compiled_timestamp;
- }
-
- /**
- * Returns the compiled template
- *
- * It checks if the template must be compiled or just read from the template resource
- *
- * @return string the compiled template
- */
- public function getCompiledTemplate ()
- {
- if ($this->compiled_template === null) {
- // see if template needs compiling.
- if ($this->mustCompile()) {
- $this->compileTemplateSource();
+ if (!$this->source->exists) {
+ if ($this->parent instanceof Smarty_Internal_Template) {
+ $parent_resource = " in '$this->parent->template_resource}'";
} else {
- if ($this->compiled_template === null) {
- $this->compiled_template = !$this->resource_object->isEvaluated && $this->resource_object->usesCompiler ? file_get_contents($this->getCompiledFilepath()) : false;
- }
+ $parent_resource = '';
}
+ throw new SmartyException("Unable to load template {$this->source->type} '{$this->source->name}'{$parent_resource}");
+ }
+ if ($this->mustCompile === null) {
+ $this->mustCompile = (!$this->source->uncompiled && ($this->smarty->force_compile || $this->source->recompiled || $this->compiled->timestamp === false ||
+ ($this->smarty->compile_check && $this->compiled->timestamp < $this->source->timestamp)));
}
- return $this->compiled_template;
+ return $this->mustCompile;
}
/**
*
* If the template is not evaluated the compiled template is saved on disk
*/
- public function compileTemplateSource ()
+ public function compileTemplateSource()
{
- if (!$this->resource_object->isEvaluated) {
+ if (!$this->source->recompiled) {
$this->properties['file_dependency'] = array();
- $this->properties['file_dependency'][$this->templateUid] = array($this->getTemplateFilepath(), $this->getTemplateTimestamp(),$this->resource_type);
+ if ($this->source->components) {
+ // uses real resource for file dependency
+ $source = end($this->source->components);
+ $this->properties['file_dependency'][$this->source->uid] = array($this->source->filepath, $this->source->timestamp, $source->type);
+ } else {
+ $this->properties['file_dependency'][$this->source->uid] = array($this->source->filepath, $this->source->timestamp, $this->source->type);
+ }
}
if ($this->smarty->debugging) {
Smarty_Internal_Debug::start_compile($this);
}
- // compile template
- if (!is_object($this->compiler_object)) {
- // load compiler
- $this->smarty->loadPlugin($this->resource_object->compiler_class);
- $this->compiler_object = new $this->resource_object->compiler_class($this->resource_object->template_lexer_class, $this->resource_object->template_parser_class, $this->smarty);
- }
// compile locking
- if ($this->smarty->compile_locking && !$this->resource_object->isEvaluated) {
- if ($saved_timestamp = $this->getCompiledTimestamp()) {
- touch($this->getCompiledFilepath());
+ if ($this->smarty->compile_locking && !$this->source->recompiled) {
+ if ($saved_timestamp = $this->compiled->timestamp) {
+ touch($this->compiled->filepath);
}
}
// call compiler
try {
- $this->compiler_object->compileTemplate($this);
- }
- catch (Exception $e) {
+ $code = $this->compiler->compileTemplate($this);
+ } catch (Exception $e) {
// restore old timestamp in case of error
- if ($this->smarty->compile_locking && !$this->resource_object->isEvaluated && $saved_timestamp) {
- touch($this->getCompiledFilepath(), $saved_timestamp);
+ if ($this->smarty->compile_locking && !$this->source->recompiled && $saved_timestamp) {
+ touch($this->compiled->filepath, $saved_timestamp);
}
throw $e;
}
// compiling succeded
- if (!$this->resource_object->isEvaluated && $this->write_compiled_code) {
+ if (!$this->source->recompiled && $this->compiler->write_compiled_code) {
// write compiled template
- Smarty_Internal_Write_File::writeFile($this->getCompiledFilepath(), $this->compiled_template, $this->smarty);
+ $_filepath = $this->compiled->filepath;
+ if ($_filepath === false)
+ throw new SmartyException('getCompiledFilepath() did not return a destination to save the compiled template to');
+ Smarty_Internal_Write_File::writeFile($_filepath, $code, $this->smarty);
+ $this->compiled->exists = true;
+ $this->compiled->isCompiled = true;
}
if ($this->smarty->debugging) {
Smarty_Internal_Debug::end_compile($this);
}
- // release objects to free memory
- Smarty_Internal_TemplateCompilerBase::$_tag_objects = array();
- unset($this->compiler_object->parser->root_buffer,
- $this->compiler_object->parser->current_buffer,
- $this->compiler_object->parser,
- $this->compiler_object->lex,
- $this->compiler_object->template
- );
- $this->compiler_object = null;
- }
-
- /**
- * Returns the filepath of the cached template output
- *
- * The filepath is determined by the actual cache resource
- *
- * @return string the cache filepath
- */
- public function getCachedFilepath ()
- {
- return $this->cached_filepath === null ?
- $this->cached_filepath = ($this->resource_object->isEvaluated || !($this->caching == Smarty::CACHING_LIFETIME_CURRENT || $this->caching == Smarty::CACHING_LIFETIME_SAVED)) ? false : $this->cache_resource_object->getCachedFilepath($this) :
- $this->cached_filepath;
- }
-
- /**
- * Returns the timpestamp of the cached template output
- *
- * The timestamp is determined by the actual cache resource
- *
- * @return integer the template timestamp
- */
- public function getCachedTimestamp ()
- {
- return $this->cached_timestamp === null ?
- $this->cached_timestamp = ($this->resource_object->isEvaluated || !($this->caching == Smarty::CACHING_LIFETIME_CURRENT || $this->caching == Smarty::CACHING_LIFETIME_SAVED)) ? false : $this->cache_resource_object->getCachedTimestamp($this) :
- $this->cached_timestamp;
- }
-
- /**
- * Returns the cached template output
- *
- * @return string |booelan the template content or false if the file does not exist
- */
- public function getCachedContent ()
- {
- return $this->rendered_content === null ?
- $this->rendered_content = ($this->resource_object->isEvaluated || !($this->caching == Smarty::CACHING_LIFETIME_CURRENT || $this->caching == Smarty::CACHING_LIFETIME_SAVED)) ? false : $this->cache_resource_object->getCachedContents($this) :
- $this->rendered_content;
+ // release compiler object to free memory
+ unset($this->compiler);
}
/**
* Writes the cached template output
+ *
+ * @return bool
*/
- public function writeCachedContent ($content)
+ public function writeCachedContent($content)
{
- if ($this->resource_object->isEvaluated || !($this->caching == Smarty::CACHING_LIFETIME_CURRENT || $this->caching == Smarty::CACHING_LIFETIME_SAVED)) {
+ if ($this->source->recompiled || !($this->caching == Smarty::CACHING_LIFETIME_CURRENT || $this->caching == Smarty::CACHING_LIFETIME_SAVED)) {
// don't write cache file
return false;
}
$this->properties['cache_lifetime'] = $this->cache_lifetime;
- return $this->cache_resource_object->writeCachedContent($this, $this->createPropertyHeader(true) .$content);
+ $this->properties['unifunc'] = 'content_' . uniqid();
+ $content = $this->createTemplateCodeFrame($content, true);
+ $_smarty_tpl = $this;
+ eval("?>" . $content);
+ $this->cached->valid = true;
+ $this->cached->processed = true;
+ return $this->cached->write($this, $content);
}
/**
- * Checks of a valid version redered HTML output is in the cache
- *
- * If the cache is valid the contents is stored in the template object
+ * Template code runtime function to get subtemplate content
*
- * @return boolean true if cache is valid
+ * @param string $template the resource handle of the template file
+ * @param mixed $cache_id cache id to be used with this template
+ * @param mixed $compile_id compile id to be used with this template
+ * @param integer $caching cache mode
+ * @param integer $cache_lifetime life time of cache data
+ * @param array $vars optional variables to assign
+ * @param int $parent_scope scope in which {include} should execute
+ * @returns string template content
*/
- public function isCached ($template = null, $cache_id = null, $compile_id = null, $parent = null)
+ public function getSubTemplate($template, $cache_id, $compile_id, $caching, $cache_lifetime, $data, $parent_scope)
{
- if ($template === null) {
- $no_render = true;
- } elseif ($template === false) {
- $no_render = false;
- } else {
- if ($parent === null) {
- $parent = $this;
- }
- $this->smarty->isCached ($template, $cache_id, $compile_id, $parent);
- }
- if ($this->isCached === null) {
- $this->isCached = false;
- if (($this->caching == Smarty::CACHING_LIFETIME_CURRENT || $this->caching == Smarty::CACHING_LIFETIME_SAVED) && !$this->resource_object->isEvaluated) {
- $cachedTimestamp = $this->getCachedTimestamp();
- if ($cachedTimestamp === false || $this->smarty->force_compile || $this->smarty->force_cache) {
- return $this->isCached;
- }
- if ($this->caching === Smarty::CACHING_LIFETIME_SAVED || ($this->caching == Smarty::CACHING_LIFETIME_CURRENT && (time() <= ($cachedTimestamp + $this->cache_lifetime) || $this->cache_lifetime < 0))) {
- if ($this->smarty->debugging) {
- Smarty_Internal_Debug::start_cache($this);
- }
- $this->rendered_content = $this->cache_resource_object->getCachedContents($this, $no_render);
- if ($this->smarty->debugging) {
- Smarty_Internal_Debug::end_cache($this);
- }
- if ($this->cacheFileChecked) {
- $this->isCached = true;
- return $this->isCached;
- }
- $this->cacheFileChecked = true;
- if ($this->caching === Smarty::CACHING_LIFETIME_SAVED && $this->properties['cache_lifetime'] >= 0 && (time() > ($this->getCachedTimestamp() + $this->properties['cache_lifetime']))) {
- $this->tpl_vars = array();
- $this->tpl_vars['smarty'] = new Smarty_Variable;
- $this->rendered_content = null;
- return $this->isCached;
- }
- if (!empty($this->properties['file_dependency']) && $this->smarty->compile_check) {
- $resource_type = null;
- $resource_name = null;
- foreach ($this->properties['file_dependency'] as $_file_to_check) {
- If ($_file_to_check[2] == 'file' || $_file_to_check[2] == 'extends' || $_file_to_check[2] == 'php') {
- $mtime = filemtime($_file_to_check[0]);
- } else {
- $this->getResourceTypeName($_file_to_check[0], $resource_type, $resource_name);
- $resource_handler = $this->loadTemplateResourceHandler($resource_type);
- $mtime = $resource_handler->getTemplateTimestampTypeName($resource_type, $resource_name);
- }
- // If ($mtime > $this->getCachedTimestamp()) {
- If ($mtime > $_file_to_check[1]) {
- $this->tpl_vars = array();
- $this->tpl_vars['smarty'] = new Smarty_Variable;
- $this->rendered_content = null;
- return $this->isCached;
- }
- }
- }
- $this->isCached = true;
- }
- }
- }
- return $this->isCached;
- }
-
- /**
- * Render the output using the compiled template or the PHP template source
- *
- * The rendering process is accomplished by just including the PHP files.
- * The only exceptions are evaluated templates (string template). Their code has
- * to be evaluated
- */
- public function renderTemplate ()
- {
- if ($this->resource_object->usesCompiler) {
- if ($this->mustCompile() && $this->compiled_template === null) {
- $this->compileTemplateSource();
- }
- if ($this->smarty->debugging) {
- Smarty_Internal_Debug::start_render($this);
- }
- $_smarty_tpl = $this;
- ob_start();
- if ($this->resource_object->isEvaluated) {
- eval("?>" . $this->compiled_template);
- } else {
- include($this->getCompiledFilepath ());
- // check file dependencies at compiled code
- if ($this->smarty->compile_check) {
- if (!empty($this->properties['file_dependency'])) {
- $this->mustCompile = false;
- $resource_type = null;
- $resource_name = null;
- foreach ($this->properties['file_dependency'] as $_file_to_check) {
- If ($_file_to_check[2] == 'file' || $_file_to_check[2] == 'extends' || $_file_to_check[2] == 'php') {
- $mtime = filemtime($_file_to_check[0]);
- } else {
- $this->getResourceTypeName($_file_to_check[0], $resource_type, $resource_name);
- $resource_handler = $this->loadTemplateResourceHandler($resource_type);
- $mtime = $resource_handler->getTemplateTimestampTypeName($resource_type, $resource_name);
- }
- // If ($mtime != $_file_to_check[1]) {
- If ($mtime > $_file_to_check[1]) {
- $this->mustCompile = true;
- break;
- }
- }
- if ($this->mustCompile) {
- // recompile and render again
- ob_get_clean();
- $this->compileTemplateSource();
- ob_start();
- include($this->getCompiledFilepath ());
- }
- }
- }
- }
+ // already in template cache?
+ $unique_template_name = Smarty_Resource::getUniqueTemplateName($this->smarty, $template);
+ $_templateId = sha1($unique_template_name . $cache_id . $compile_id);
+ if (isset($this->smarty->template_objects[$_templateId])) {
+ // clone cached template object because of possible recursive call
+ $tpl = clone $this->smarty->template_objects[$_templateId];
+ $tpl->parent = $this;
+ $tpl->caching = $caching;
+ $tpl->cache_lifetime = $cache_lifetime;
} else {
- if (is_callable(array($this->resource_object, 'renderUncompiled'))) {
- if ($this->smarty->debugging) {
- Smarty_Internal_Debug::start_render($this);
- }
- ob_start();
- $this->resource_object->renderUncompiled($this);
- } else {
- throw new SmartyException("Resource '$this->resource_type' must have 'renderUncompiled' methode");
- }
- }
- $this->rendered_content = ob_get_clean();
- if (!$this->resource_object->isEvaluated && empty($this->properties['file_dependency'][$this->templateUid])) {
- $this->properties['file_dependency'][$this->templateUid] = array($this->getTemplateFilepath(), $this->getTemplateTimestamp(),$this->resource_type);
- }
- if ($this->parent instanceof Smarty_Internal_Template) {
- $this->parent->properties['file_dependency'] = array_merge($this->parent->properties['file_dependency'], $this->properties['file_dependency']);
- foreach($this->required_plugins as $code => $tmp1) {
- foreach($tmp1 as $name => $tmp) {
- foreach($tmp as $type => $data) {
- $this->parent->required_plugins[$code][$name][$type] = $data;
- }
- }
- }
- }
- if ($this->smarty->debugging) {
- Smarty_Internal_Debug::end_render($this);
- }
- // write to cache when nessecary
- if (!$this->resource_object->isEvaluated && ($this->caching == Smarty::CACHING_LIFETIME_SAVED || $this->caching == Smarty::CACHING_LIFETIME_CURRENT)) {
- if ($this->smarty->debugging) {
- Smarty_Internal_Debug::start_cache($this);
- }
- $this->properties['has_nocache_code'] = false;
- // get text between non-cached items
- $cache_split = preg_split("!/\*%%SmartyNocache:{$this->properties['nocache_hash']}%%\*\/(.+?)/\*/%%SmartyNocache:{$this->properties['nocache_hash']}%%\*/!s", $this->rendered_content);
- // get non-cached items
- preg_match_all("!/\*%%SmartyNocache:{$this->properties['nocache_hash']}%%\*\/(.+?)/\*/%%SmartyNocache:{$this->properties['nocache_hash']}%%\*/!s", $this->rendered_content, $cache_parts);
- $output = '';
- // loop over items, stitch back together
- foreach($cache_split as $curr_idx => $curr_split) {
- // escape PHP tags in template content
- $output .= preg_replace('/(<%|%>|<\?php|<\?|\?>)/', '<?php echo \'$1\'; ?>', $curr_split);
- if (isset($cache_parts[0][$curr_idx])) {
- $this->properties['has_nocache_code'] = true;
- // remove nocache tags from cache output
- $output .= preg_replace("!/\*/?%%SmartyNocache:{$this->properties['nocache_hash']}%%\*/!", '', $cache_parts[0][$curr_idx]);
- }
- }
- if (isset($this->smarty->autoload_filters['output']) || isset($this->smarty->registered_filters['output'])) {
- $output = Smarty_Internal_Filter_Handler::runFilter('output', $output, $this);
- }
- // rendering (must be done before writing cache file because of {function} nocache handling)
- $_smarty_tpl = $this;
- ob_start();
- eval("?>" . $output);
- $this->rendered_content = ob_get_clean();
- // write cache file content
- $this->writeCachedContent('<?php if (!$no_render) {?>'. $output. '<?php } ?>');
- if ($this->smarty->debugging) {
- Smarty_Internal_Debug::end_cache($this);
- }
+ $tpl = new $this->smarty->template_class($template, $this->smarty, $this, $cache_id, $compile_id, $caching, $cache_lifetime);
+ }
+ // get variables from calling scope
+ if ($parent_scope == Smarty::SCOPE_LOCAL) {
+ $tpl->tpl_vars = $this->tpl_vars;
+ } elseif ($parent_scope == Smarty::SCOPE_PARENT) {
+ $tpl->tpl_vars = &$this->tpl_vars;
+ } elseif ($parent_scope == Smarty::SCOPE_GLOBAL) {
+ $tpl->tpl_vars = &Smarty::$global_tpl_vars;
+ } elseif (($scope_ptr = $this->getScopePointer($parent_scope)) == null) {
+ $tpl->tpl_vars = &$this->tpl_vars;
} else {
- // var_dump('renderTemplate', $this->has_nocache_code, $this->template_resource, $this->properties['nocache_hash'], $this->parent->properties['nocache_hash'], $this->rendered_content);
- if ($this->has_nocache_code && !empty($this->properties['nocache_hash']) && !empty($this->parent->properties['nocache_hash'])) {
- // replace nocache_hash
- $this->rendered_content = preg_replace("/{$this->properties['nocache_hash']}/", $this->parent->properties['nocache_hash'], $this->rendered_content);
- $this->parent->has_nocache_code = $this->has_nocache_code;
- }
+ $tpl->tpl_vars = &$scope_ptr->tpl_vars;
}
- }
-
- /**
- * Returns the rendered HTML output
- *
- * If the cache is valid the cached content is used, otherwise
- * the output is rendered from the compiled template or PHP template source
- *
- * @return string rendered HTML output
- */
- public function getRenderedTemplate ()
- {
- // disable caching for evaluated code
- if ($this->resource_object->isEvaluated) {
- $this->caching = false;
- }
- // checks if template exists
- $this->isExisting(true);
- // read from cache or render
- if ($this->rendered_content === null) {
- if ($this->isCached) {
- if ($this->smarty->debugging) {
- Smarty_Internal_Debug::start_cache($this);
- }
- $this->rendered_content = $this->cache_resource_object->getCachedContents($this, false);
- if ($this->smarty->debugging) {
- Smarty_Internal_Debug::end_cache($this);
- }
- }
- if ($this->isCached === null) {
- $this->isCached(false);
- }
- if (!$this->isCached) {
- // render template (not loaded and not in cache)
- $this->renderTemplate();
- }
- }
- $this->updateParentVariables();
- $this->isCached = null;
- return $this->rendered_content;
- }
-
- /**
- * Parse a template resource in its name and type
- * Load required resource handler
- *
- * @param string $template_resource template resource specification
- * @param string $resource_type return resource type
- * @param string $resource_name return resource name
- * @param object $resource_handler return resource handler object
- */
- public function parseResourceName($template_resource, &$resource_type, &$resource_name, &$resource_handler)
- {
- if (empty($template_resource))
- return false;
- $this->getResourceTypeName($template_resource, $resource_type, $resource_name);
- $resource_handler = $this->loadTemplateResourceHandler($resource_type);
- // cache template object under a unique ID
- // do not cache eval resources
- if ($resource_type != 'eval') {
- $this->smarty->template_objects[sha1($this->template_resource . $this->cache_id . $this->compile_id)] = $this;
- }
- return true;
- }
-
- /**
- * get system filepath to template
- */
- public function buildTemplateFilepath ($file = null)
- {
- if ($file == null) {
- $file = $this->resource_name;
- }
- // relative file name?
- if (!preg_match('/^([\/\\\\]|[a-zA-Z]:[\/\\\\])/', $file)) {
- foreach((array)$this->smarty->template_dir as $_template_dir) {
- if (strpos('/\\', substr($_template_dir, -1)) === false) {
- $_template_dir .= DS;
- }
- $_filepath = $_template_dir . $file;
- if (file_exists($_filepath)) {
- return $_filepath;
- }
- if (!preg_match('/^([\/\\\\]|[a-zA-Z]:[\/\\\\])/', $_template_dir)) {
- // try PHP include_path
- if (($_filepath = Smarty_Internal_Get_Include_Path::getIncludePath($_filepath)) !== false) {
- return $_filepath;
- }
- }
- }
- }
- // try absolute filepath
- if (file_exists($file)) return $file;
- // no tpl file found
- if (!empty($this->smarty->default_template_handler_func)) {
- if (!is_callable($this->smarty->default_template_handler_func)) {
- throw new SmartyException("Default template handler not callable");
- } else {
- $_return = call_user_func_array($this->smarty->default_template_handler_func,
- array($this->resource_type, $this->resource_name, &$this->template_source, &$this->template_timestamp, $this));
- if (is_string($_return)) {
- return $_return;
- } elseif ($_return === true) {
- return $file;
- }
+ $tpl->config_vars = $this->config_vars;
+ if (!empty($data)) {
+ // set up variable values
+ foreach ($data as $_key => $_val) {
+ $tpl->tpl_vars[$_key] = new Smarty_variable($_val);
}
}
- return false;
+ return $tpl->fetch(null, null, null, null, false, false, true);
}
/**
- * Update Smarty variables in other scopes
- */
- public function updateParentVariables ($scope = Smarty::SCOPE_LOCAL)
- {
- $has_root = false;
- foreach ($this->tpl_vars as $_key => $_variable) {
- $_variable_scope = $this->tpl_vars[$_key]->scope;
- if ($scope == Smarty::SCOPE_LOCAL && $_variable_scope == Smarty::SCOPE_LOCAL) {
- continue;
- }
- if (isset($this->parent) && ($scope == Smarty::SCOPE_PARENT || $_variable_scope == Smarty::SCOPE_PARENT)) {
- if (isset($this->parent->tpl_vars[$_key])) {
- // variable is already defined in parent, copy value
- $this->parent->tpl_vars[$_key]->value = $this->tpl_vars[$_key]->value;
- } else {
- // create variable in parent
- $this->parent->tpl_vars[$_key] = clone $_variable;
- $this->parent->tpl_vars[$_key]->scope = Smarty::SCOPE_LOCAL;
- }
- }
- if ($scope == Smarty::SCOPE_ROOT || $_variable_scope == Smarty::SCOPE_ROOT) {
- if ($this->parent == null) {
- continue;
- }
- if (!$has_root) {
- // find root
- $root_ptr = $this;
- while ($root_ptr->parent != null) {
- $root_ptr = $root_ptr->parent;
- $has_root = true;
- }
- }
- if (isset($root_ptr->tpl_vars[$_key])) {
- // variable is already defined in root, copy value
- $root_ptr->tpl_vars[$_key]->value = $this->tpl_vars[$_key]->value;
- } else {
- // create variable in root
- $root_ptr->tpl_vars[$_key] = clone $_variable;
- $root_ptr->tpl_vars[$_key]->scope = Smarty::SCOPE_LOCAL;
- }
- }
- if ($scope == Smarty::SCOPE_GLOBAL || $_variable_scope == Smarty::SCOPE_GLOBAL) {
- if (isset(Smarty::$global_tpl_vars[$_key])) {
- // variable is already defined in root, copy value
- Smarty::$global_tpl_vars[$_key]->value = $this->tpl_vars[$_key]->value;
- } else {
- // create global variable
- Smarty::$global_tpl_vars[$_key] = clone $_variable;
- }
- Smarty::$global_tpl_vars[$_key]->scope = Smarty::SCOPE_LOCAL;
- }
- }
- }
-
- /**
- * Split a template resource in its name and type
+ * Template code runtime function to set up an inline subtemplate
*
- * @param string $template_resource template resource specification
- * @param string $resource_type return resource type
- * @param string $resource_name return resource name
+ * @param string $template the resource handle of the template file
+ * @param mixed $cache_id cache id to be used with this template
+ * @param mixed $compile_id compile id to be used with this template
+ * @param integer $caching cache mode
+ * @param integer $cache_lifetime life time of cache data
+ * @param array $vars optional variables to assign
+ * @param int $parent_scope scope in which {include} should execute
+ * @param string $hash nocache hash code
+ * @returns string template content
*/
- protected function getResourceTypeName ($template_resource, &$resource_type, &$resource_name)
+ public function setupInlineSubTemplate($template, $cache_id, $compile_id, $caching, $cache_lifetime, $data, $parent_scope, $hash)
{
- if (strpos($template_resource, ':') === false) {
- // no resource given, use default
- $resource_type = $this->smarty->default_resource_type;
- $resource_name = $template_resource;
+ $tpl = new $this->smarty->template_class($template, $this->smarty, $this, $cache_id, $compile_id, $caching, $cache_lifetime);
+ $tpl->properties['nocache_hash'] = $hash;
+ // get variables from calling scope
+ if ($parent_scope == Smarty::SCOPE_LOCAL ) {
+ $tpl->tpl_vars = $this->tpl_vars;
+ } elseif ($parent_scope == Smarty::SCOPE_PARENT) {
+ $tpl->tpl_vars = &$this->tpl_vars;
+ } elseif ($parent_scope == Smarty::SCOPE_GLOBAL) {
+ $tpl->tpl_vars = &Smarty::$global_tpl_vars;
+ } elseif (($scope_ptr = $this->getScopePointer($parent_scope)) == null) {
+ $tpl->tpl_vars = &$this->tpl_vars;
} else {
- // get type and name from path
- list($resource_type, $resource_name) = explode(':', $template_resource, 2);
- if (strlen($resource_type) == 1) {
- // 1 char is not resource type, but part of filepath
- $resource_type = 'file';
- $resource_name = $template_resource;
- }
+ $tpl->tpl_vars = &$scope_ptr->tpl_vars;
}
- }
-
- /**
- * Load template resource handler by type
- *
- * @param string $resource_type template resource type
- * @return object resource handler object
- */
- protected function loadTemplateResourceHandler ($resource_type)
- {
- // try registered resource
- if (isset($this->smarty->registered_resources[$resource_type])) {
- return new Smarty_Internal_Resource_Registered($this);
- } else {
- // try sysplugins dir
- if (in_array($resource_type, array('file', 'string', 'extends', 'php', 'stream', 'eval'))) {
- $_resource_class = 'Smarty_Internal_Resource_' . ucfirst($resource_type);
- return new $_resource_class($this->smarty);
- } else {
- // try plugins dir
- $_resource_class = 'Smarty_Resource_' . ucfirst($resource_type);
- if ($this->smarty->loadPlugin($_resource_class)) {
- if (class_exists($_resource_class, false)) {
- return new $_resource_class($this->smarty);
- } else {
- return new Smarty_Internal_Resource_Registered($this, $resource_type);
- }
- } else {
- // try streams
- $_known_stream = stream_get_wrappers();
- if (in_array($resource_type, $_known_stream)) {
- // is known stream
- if (is_object($this->smarty->security_policy)) {
- $this->smarty->security_policy->isTrustedStream($resource_type);
- }
- return new Smarty_Internal_Resource_Stream($this->smarty);
- } else {
- throw new SmartyException('Unkown resource type \'' . $resource_type . '\'');
- }
- }
+ $tpl->config_vars = $this->config_vars;
+ if (!empty($data)) {
+ // set up variable values
+ foreach ($data as $_key => $_val) {
+ $tpl->tpl_vars[$_key] = new Smarty_variable($_val);
}
}
+ return $tpl;
}
+
/**
- * Create property header
+ * Create code frame for compiled and cached templates
+ *
+ * @param string $content optional template content
+ * @param bool $cache flag for cache file
+ * @return string
*/
- public function createPropertyHeader ($cache = false)
+ public function createTemplateCodeFrame($content = '', $cache = false)
{
$plugins_string = '';
// include code for plugins
if (!$cache) {
if (!empty($this->required_plugins['compiled'])) {
$plugins_string = '<?php ';
- foreach($this->required_plugins['compiled'] as $tmp) {
- foreach($tmp as $data) {
+ foreach ($this->required_plugins['compiled'] as $tmp) {
+ foreach ($tmp as $data) {
$plugins_string .= "if (!is_callable('{$data['function']}')) include '{$data['file']}';\n";
}
}
}
if (!empty($this->required_plugins['nocache'])) {
$this->has_nocache_code = true;
- $plugins_string .= "<?php echo '/*%%SmartyNocache:{$this->properties['nocache_hash']}%%*/<?php ";
- foreach($this->required_plugins['nocache'] as $tmp) {
- foreach($tmp as $data) {
+ $plugins_string .= "<?php echo '/*%%SmartyNocache:{$this->properties['nocache_hash']}%%*/<?php \$_smarty = \$_smarty_tpl->smarty; ";
+ foreach ($this->required_plugins['nocache'] as $tmp) {
+ foreach ($tmp as $data) {
$plugins_string .= "if (!is_callable(\'{$data['function']}\')) include \'{$data['file']}\';\n";
}
}
}
// build property code
$this->properties['has_nocache_code'] = $this->has_nocache_code;
- $properties_string = "<?php /*%%SmartyHeaderCode:{$this->properties['nocache_hash']}%%*/" ;
- if ($this->smarty->direct_access_security) {
- $properties_string .= "if(!defined('SMARTY_DIR')) exit('no direct access allowed');\n";
+ $output = '';
+ if (!$this->source->recompiled) {
+ $output = "<?php /*%%SmartyHeaderCode:{$this->properties['nocache_hash']}%%*/";
+ if ($this->smarty->direct_access_security) {
+ $output .= "if(!defined('SMARTY_DIR')) exit('no direct access allowed');\n";
+ }
}
if ($cache) {
// remove compiled code of{function} definition
// copy code of {function} tags called in nocache mode
foreach ($this->smarty->template_functions as $name => $function_data) {
if (isset($function_data['called_nocache'])) {
- unset($function_data['called_nocache'], $this->smarty->template_functions[$name]['called_nocache']);
+ foreach ($function_data['called_functions'] as $func_name) {
+ $this->smarty->template_functions[$func_name]['called_nocache'] = true;
+ }
+ }
+ }
+ foreach ($this->smarty->template_functions as $name => $function_data) {
+ if (isset($function_data['called_nocache'])) {
+ unset($function_data['called_nocache'], $function_data['called_functions'], $this->smarty->template_functions[$name]['called_nocache']);
$this->properties['function'][$name] = $function_data;
}
}
}
}
- $properties_string .= "\$_smarty_tpl->decodeProperties(" . var_export($this->properties, true) . "); /*/%%SmartyHeaderCode%%*/?>\n";
- return $properties_string . $plugins_string;
+ $this->properties['version'] = Smarty::SMARTY_VERSION;
+ if (!isset($this->properties['unifunc'])) {
+ $this->properties['unifunc'] = 'content_' . uniqid();
+ }
+ if (!$this->source->recompiled) {
+ $output .= "\$_valid = \$_smarty_tpl->decodeProperties(" . var_export($this->properties, true) . ',' . ($cache ? 'true' : 'false') . "); /*/%%SmartyHeaderCode%%*/?>\n";
+ }
+ if (!$this->source->recompiled) {
+ $output .= '<?php if ($_valid && !is_callable(\'' . $this->properties['unifunc'] . '\')) {function ' . $this->properties['unifunc'] . '($_smarty_tpl) {?>';
+ }
+ $output .= $plugins_string;
+ $output .= $content;
+ if (!$this->source->recompiled) {
+ $output .= '<?php }} ?>';
+ }
+ return $output;
}
/**
- * Decode saved properties from compiled template and cache files
+ * This function is executed automatically when a compiled or cached template file is included
+ *
+ * - Decode saved properties from compiled template and cache files
+ * - Check if compiled or cache file is valid
+ *
+ * @param array $properties special template properties
+ * @param bool $cache flag if called from cache file
+ * @return bool flag if compiled or cache file is valid
*/
- public function decodeProperties ($properties)
+ public function decodeProperties($properties, $cache = false)
{
$this->has_nocache_code = $properties['has_nocache_code'];
$this->properties['nocache_hash'] = $properties['nocache_hash'];
$this->properties['function'] = array_merge($this->properties['function'], $properties['function']);
$this->smarty->template_functions = array_merge($this->smarty->template_functions, $properties['function']);
}
+ $this->properties['version'] = (isset($properties['version'])) ? $properties['version'] : '';
+ $this->properties['unifunc'] = $properties['unifunc'];
+ // check file dependencies at compiled code
+ $is_valid = true;
+ if ($this->properties['version'] != Smarty::SMARTY_VERSION) {
+ $is_valid = false;
+ } else if (((!$cache && $this->smarty->compile_check && empty($this->compiled->_properties) && !$this->compiled->isCompiled) || $cache && ($this->smarty->compile_check === true || $this->smarty->compile_check === Smarty::COMPILECHECK_ON)) && !empty($this->properties['file_dependency'])) {
+ foreach ($this->properties['file_dependency'] as $_file_to_check) {
+ if ($_file_to_check[2] == 'file' || $_file_to_check[2] == 'php') {
+ if ($this->source->filepath == $_file_to_check[0] && isset($this->source->timestamp)) {
+ // do not recheck current template
+ $mtime = $this->source->timestamp;
+ } else {
+ // file and php types can be checked without loading the respective resource handlers
+ $mtime = filemtime($_file_to_check[0]);
+ }
+ } elseif ($_file_to_check[2] == 'string') {
+ continue;
+ } else {
+ $source = Smarty_Resource::source(null, $this->smarty, $_file_to_check[0]);
+ $mtime = $source->timestamp;
+ }
+ if ($mtime > $_file_to_check[1]) {
+ $is_valid = false;
+ break;
+ }
+ }
+ }
+ if ($cache) {
+ $this->cached->valid = $is_valid;
+ } else {
+ $this->mustCompile = !$is_valid;
+ }
+ // store data in reusable Smarty_Template_Compiled
+ if (!$cache) {
+ $this->compiled->_properties = $properties;
+ }
+ return $is_valid;
}
/**
- * creates a local Smarty variable for array assignments
+ * Template code runtime function to create a local Smarty variable for array assignments
+ *
+ * @param string $tpl_var tempate variable name
+ * @param bool $nocache cache mode of variable
+ * @param int $scope scope of variable
*/
public function createLocalArrayVariable($tpl_var, $nocache = false, $scope = Smarty::SCOPE_LOCAL)
{
if (!isset($this->tpl_vars[$tpl_var])) {
- $tpl_var_inst = $this->getVariable($tpl_var, null, true, false);
- if ($tpl_var_inst instanceof Undefined_Smarty_Variable) {
- $this->tpl_vars[$tpl_var] = new Smarty_variable(array(), $nocache, $scope);
- } else {
- $this->tpl_vars[$tpl_var] = clone $tpl_var_inst;
- if ($scope != Smarty::SCOPE_LOCAL) {
- $this->tpl_vars[$tpl_var]->scope = $scope;
- }
+ $this->tpl_vars[$tpl_var] = new Smarty_variable(array(), $nocache, $scope);
+ } else {
+ $this->tpl_vars[$tpl_var] = clone $this->tpl_vars[$tpl_var];
+ if ($scope != Smarty::SCOPE_LOCAL) {
+ $this->tpl_vars[$tpl_var]->scope = $scope;
+ }
+ if (!(is_array($this->tpl_vars[$tpl_var]->value) || $this->tpl_vars[$tpl_var]->value instanceof ArrayAccess)) {
+ settype($this->tpl_vars[$tpl_var]->value, 'array');
+ }
+ }
+ }
+
+ /**
+ * Template code runtime function to get pointer to template variable array of requested scope
+ *
+ * @param int $scope requested variable scope
+ * @return array array of template variables
+ */
+ public function &getScope($scope)
+ {
+ if ($scope == Smarty::SCOPE_PARENT && !empty($this->parent)) {
+ return $this->parent->tpl_vars;
+ } elseif ($scope == Smarty::SCOPE_ROOT && !empty($this->parent)) {
+ $ptr = $this->parent;
+ while (!empty($ptr->parent)) {
+ $ptr = $ptr->parent;
}
+ return $ptr->tpl_vars;
+ } elseif ($scope == Smarty::SCOPE_GLOBAL) {
+ return Smarty::$global_tpl_vars;
}
- if (!(is_array($this->tpl_vars[$tpl_var]->value) || $this->tpl_vars[$tpl_var]->value instanceof ArrayAccess)) {
- settype($this->tpl_vars[$tpl_var]->value, 'array');
+ $null = null;
+ return $null;
+ }
+
+ /**
+ * Get parent or root of template parent chain
+ *
+ * @param int $scope pqrent or root scope
+ * @return mixed object
+ */
+ public function getScopePointer($scope)
+ {
+ if ($scope == Smarty::SCOPE_PARENT && !empty($this->parent)) {
+ return $this->parent;
+ } elseif ($scope == Smarty::SCOPE_ROOT && !empty($this->parent)) {
+ $ptr = $this->parent;
+ while (!empty($ptr->parent)) {
+ $ptr = $ptr->parent;
+ }
+ return $ptr;
}
+ return null;
}
/**
* [util function] counts an array, arrayaccess/traversable or PDOStatement object
+ *
* @param mixed $value
* @return int the count for arrays and objects that implement countable, 1 for other objects that don't, and 0 for empty elements
*/
{
if (is_array($value) === true || $value instanceof Countable) {
return count($value);
+ } elseif ($value instanceof IteratorAggregate) {
+ // Note: getIterator() returns a Traversable, not an Iterator
+ // thus rewind() and valid() methods may not be present
+ return iterator_count($value->getIterator());
} elseif ($value instanceof Iterator) {
- $value->rewind();
- if ($value->valid()) {
- return iterator_count($value);
- }
+ return iterator_count($value);
} elseif ($value instanceof PDOStatement) {
return $value->rowCount();
} elseif ($value instanceof Traversable) {
if ($value->offsetExists(0)) {
return 1;
}
- } elseif (is_object($value)) {
+ } elseif (is_object($value)) {
return count($value);
- }
- return 0;
+ }
+ return 0;
}
/**
- * wrapper for fetch
+ * runtime error not matching capture tags
+ *
*/
- public function fetch ($template = null, $cache_id = null, $compile_id = null, $parent = null, $display = false)
+ public function capture_error()
{
- if ($template == null) {
- return $this->smarty->fetch($this);
- } else {
- if (!isset($parent)) {
- $parent = $this;
- }
- return $this->smarty->fetch($template, $cache_id, $compile_id, $parent, $display);
- }
-
+ throw new SmartyException("Not matching {capture} open/close in \"{$this->template_resource}\"");
}
-
- /**
- * wrapper for display
- */
- public function display ($template = null, $cache_id = null, $compile_id = null, $parent = null)
+
+ /**
+ * Empty cache for this template
+ *
+ * @param integer $exp_time expiration time
+ * @return integer number of cache files deleted
+ */
+ public function clearCache($exp_time=null)
{
- if ($template == null) {
- return $this->smarty->display($this);
- } else {
- if (!isset($parent)) {
- $parent = $this;
- }
- return $this->smarty->display($template, $cache_id, $compile_id, $parent);
- }
-
+ Smarty_CacheResource::invalidLoadedCache($this->smarty);
+ return $this->cached->handler->clear($this->smarty, $this->template_name, $this->cache_id, $this->compile_id, $exp_time);
}
-
- /**
+
+ /**
* set Smarty property in template context
+ *
* @param string $property_name property name
- * @param mixed $value value
+ * @param mixed $value value
*/
public function __set($property_name, $value)
{
- if ($property_name == 'resource_object' || $property_name == 'cache_resource_object') {
- $this->$property_name = $value;
- } elseif (property_exists($this->smarty, $property_name)) {
- $this->smarty->$property_name = $value;
- } else {
- throw new SmartyException("invalid template property '$property_name'.");
+ switch ($property_name) {
+ case 'source':
+ case 'compiled':
+ case 'cached':
+ case 'compiler':
+ $this->$property_name = $value;
+ return;
+
+ // FIXME: routing of template -> smarty attributes
+ default:
+ if (property_exists($this->smarty, $property_name)) {
+ $this->smarty->$property_name = $value;
+ return;
+ }
}
+
+ throw new SmartyException("invalid template property '$property_name'.");
}
/**
* get Smarty property in template context
+ *
* @param string $property_name property name
*/
public function __get($property_name)
{
- if ($property_name == 'resource_object') {
- // load template resource
- $this->resource_object = null;
- if (!$this->parseResourceName ($this->template_resource, $this->resource_type, $this->resource_name, $this->resource_object)) {
- throw new SmartyException ("Unable to parse resource name \"{$this->template_resource}\"");
- }
- return $this->resource_object;
- }
- if ($property_name == 'cache_resource_object') {
- // load cache resource
- $this->cache_resource_object = $this->loadCacheResource();
- return $this->cache_resource_object;
- }
- if (property_exists($this->smarty, $property_name)) {
- return $this->smarty->$property_name;
- } else {
- throw new SmartyException("template property '$property_name' does not exist.");
+ switch ($property_name) {
+ case 'source':
+ if (empty($this->template_resource)) {
+ throw new SmartyException("Unable to parse resource name \"{$this->template_resource}\"");
+ }
+ $this->source = Smarty_Resource::source($this);
+ // cache template object under a unique ID
+ // do not cache eval resources
+ if ($this->source->type != 'eval') {
+ $_templateId = sha1($this->source->unique_resource . $this->cache_id . $this->compile_id);
+ $this->smarty->template_objects[$_templateId] = $this;
+ }
+ return $this->source;
+
+ case 'compiled':
+ $this->compiled = $this->source->getCompiled($this);
+ return $this->compiled;
+
+ case 'cached':
+ if (!class_exists('Smarty_Template_Cached')) {
+ include SMARTY_SYSPLUGINS_DIR . 'smarty_cacheresource.php';
+ }
+ $this->cached = new Smarty_Template_Cached($this);
+ return $this->cached;
+
+ case 'compiler':
+ $this->smarty->loadPlugin($this->source->compiler_class);
+ $this->compiler = new $this->source->compiler_class($this->source->template_lexer_class, $this->source->template_parser_class, $this->smarty);
+ return $this->compiler;
+
+ // FIXME: routing of template -> smarty attributes
+ default:
+ if (property_exists($this->smarty, $property_name)) {
+ return $this->smarty->$property_name;
+ }
}
- }
+ throw new SmartyException("template property '$property_name' does not exist.");
+ }
/**
- * Takes unknown class methods and lazy loads sysplugin files for them
- * class name format: Smarty_Method_MethodName
- * plugin filename format: method.methodname.php
+ * Template data object destrutor
*
- * @param string $name unknown methode name
- * @param array $args aurgument array
*/
- public function __call($name, $args)
+ public function __destruct()
{
- static $camel_func;
- if (!isset($camel_func))
- $camel_func = create_function('$c', 'return "_" . strtolower($c[1]);');
- // see if this is a set/get for a property
- $first3 = strtolower(substr($name, 0, 3));
- if (in_array($first3, array('set', 'get')) && substr($name, 3, 1) !== '_') {
- // try to keep case correct for future PHP 6.0 case-sensitive class methods
- // lcfirst() not available < PHP 5.3.0, so improvise
- $property_name = strtolower(substr($name, 3, 1)) . substr($name, 4);
- // convert camel case to underscored name
- $property_name = preg_replace_callback('/([A-Z])/', $camel_func, $property_name);
- if (property_exists($this, $property_name)) {
- if ($first3 == 'get')
- return $this->$property_name;
- else
- return $this->$property_name = $args[0];
- }
- }
- // Smarty Backward Compatible wrapper
- if (strpos($name,'_') !== false) {
- if (!isset($this->wrapper)) {
- $this->wrapper = new Smarty_Internal_Wrapper($this);
- }
- return $this->wrapper->convert($name, $args);
- }
- // pass call to Smarty object
- return call_user_func_array(array($this->smarty,$name),$args);
+ if ($this->smarty->cache_locking && isset($this->cached) && $this->cached->is_locked) {
+ $this->cached->handler->releaseLock($this->smarty, $this->cached);
+ }
}
}
+
?>
\ No newline at end of file
diff --git a/gosa-core/include/smarty/sysplugins/smarty_internal_templatebase.php b/gosa-core/include/smarty/sysplugins/smarty_internal_templatebase.php
--- /dev/null
@@ -0,0 +1,760 @@
+<?php\r
+/**\r
+ * Smarty Internal Plugin Smarty Template Base\r
+ *\r
+ * This file contains the basic shared methodes for template handling\r
+ *\r
+ * @package Smarty\r
+ * @subpackage Template\r
+ * @author Uwe Tews\r
+ */\r
+\r
+/**\r
+ * Class with shared template methodes\r
+ *\r
+ * @package Smarty\r
+ * @subpackage Template\r
+ */\r
+abstract class Smarty_Internal_TemplateBase extends Smarty_Internal_Data {\r
+\r
+ /**\r
+ * fetches a rendered Smarty template\r
+ *\r
+ * @param string $template the resource handle of the template file or template object\r
+ * @param mixed $cache_id cache id to be used with this template\r
+ * @param mixed $compile_id compile id to be used with this template\r
+ * @param object $parent next higher level of Smarty variables\r
+ * @param bool $display true: display, false: fetch\r
+ * @param bool $merge_tpl_vars if true parent template variables merged in to local scope\r
+ * @param bool $no_output_filter if true do not run output filter\r
+ * @return string rendered template output\r
+ */\r
+ public function fetch($template = null, $cache_id = null, $compile_id = null, $parent = null, $display = false, $merge_tpl_vars = true, $no_output_filter = false)\r
+ {\r
+ if ($template === null && $this instanceof $this->template_class) {\r
+ $template = $this;\r
+ }\r
+ if (!empty($cache_id) && is_object($cache_id)) {\r
+ $parent = $cache_id;\r
+ $cache_id = null;\r
+ }\r
+ if ($parent === null && ($this instanceof Smarty || is_string($template))) {\r
+ $parent = $this;\r
+ }\r
+ // create template object if necessary\r
+ $_template = ($template instanceof $this->template_class)\r
+ ? $template\r
+ : $this->smarty->createTemplate($template, $cache_id, $compile_id, $parent, false);\r
+ // if called by Smarty object make sure we use current caching status\r
+ if ($this instanceof Smarty) {\r
+ $_template->caching = $this->caching;\r
+ }\r
+ // merge all variable scopes into template\r
+ if ($merge_tpl_vars) {\r
+ // save local variables\r
+ $save_tpl_vars = $_template->tpl_vars;\r
+ $save_config_vars = $_template->config_vars;\r
+ $ptr_array = array($_template);\r
+ $ptr = $_template;\r
+ while (isset($ptr->parent)) {\r
+ $ptr_array[] = $ptr = $ptr->parent;\r
+ }\r
+ $ptr_array = array_reverse($ptr_array);\r
+ $parent_ptr = reset($ptr_array);\r
+ $tpl_vars = $parent_ptr->tpl_vars;\r
+ $config_vars = $parent_ptr->config_vars;\r
+ while ($parent_ptr = next($ptr_array)) {\r
+ if (!empty($parent_ptr->tpl_vars)) {\r
+ $tpl_vars = array_merge($tpl_vars, $parent_ptr->tpl_vars);\r
+ }\r
+ if (!empty($parent_ptr->config_vars)) {\r
+ $config_vars = array_merge($config_vars, $parent_ptr->config_vars);\r
+ }\r
+ }\r
+ if (!empty(Smarty::$global_tpl_vars)) {\r
+ $tpl_vars = array_merge(Smarty::$global_tpl_vars, $tpl_vars);\r
+ }\r
+ $_template->tpl_vars = $tpl_vars;\r
+ $_template->config_vars = $config_vars;\r
+ }\r
+ // dummy local smarty variable\r
+ if (!isset($_template->tpl_vars['smarty'])) {\r
+ $_template->tpl_vars['smarty'] = new Smarty_Variable;\r
+ }\r
+ if (isset($this->smarty->error_reporting)) {\r
+ $_smarty_old_error_level = error_reporting($this->smarty->error_reporting);\r
+ }\r
+ // check URL debugging control\r
+ if (!$this->smarty->debugging && $this->smarty->debugging_ctrl == 'URL') {\r
+ if (isset($_SERVER['QUERY_STRING'])) {\r
+ $_query_string = $_SERVER['QUERY_STRING'];\r
+ } else {\r
+ $_query_string = '';\r
+ }\r
+ if (false !== strpos($_query_string, $this->smarty->smarty_debug_id)) {\r
+ if (false !== strpos($_query_string, $this->smarty->smarty_debug_id . '=on')) {\r
+ // enable debugging for this browser session\r
+ setcookie('SMARTY_DEBUG', true);\r
+ $this->smarty->debugging = true;\r
+ } elseif (false !== strpos($_query_string, $this->smarty->smarty_debug_id . '=off')) {\r
+ // disable debugging for this browser session\r
+ setcookie('SMARTY_DEBUG', false);\r
+ $this->smarty->debugging = false;\r
+ } else {\r
+ // enable debugging for this page\r
+ $this->smarty->debugging = true;\r
+ }\r
+ } else {\r
+ if (isset($_COOKIE['SMARTY_DEBUG'])) {\r
+ $this->smarty->debugging = true;\r
+ }\r
+ }\r
+ }\r
+ // must reset merge template date\r
+ $_template->smarty->merged_templates_func = array();\r
+ // get rendered template\r
+ // disable caching for evaluated code\r
+ if ($_template->source->recompiled) {\r
+ $_template->caching = false;\r
+ }\r
+ // checks if template exists\r
+ if (!$_template->source->exists) {\r
+ if ($_template->parent instanceof Smarty_Internal_Template) {\r
+ $parent_resource = " in '{$_template->parent->template_resource}'";\r
+ } else {\r
+ $parent_resource = '';\r
+ }\r
+ throw new SmartyException("Unable to load template {$_template->source->type} '{$_template->source->name}'{$parent_resource}");\r
+ }\r
+ // read from cache or render\r
+ if (!($_template->caching == Smarty::CACHING_LIFETIME_CURRENT || $_template->caching == Smarty::CACHING_LIFETIME_SAVED) || !$_template->cached->valid) {\r
+ // render template (not loaded and not in cache)\r
+ if (!$_template->source->uncompiled) {\r
+ $_smarty_tpl = $_template;\r
+ if ($_template->source->recompiled) {\r
+ if ($this->smarty->debugging) {\r
+ Smarty_Internal_Debug::start_compile($_template);\r
+ }\r
+ $code = $_template->compiler->compileTemplate($_template);\r
+ if ($this->smarty->debugging) {\r
+ Smarty_Internal_Debug::end_compile($_template);\r
+ }\r
+ if ($this->smarty->debugging) {\r
+ Smarty_Internal_Debug::start_render($_template);\r
+ }\r
+ try {\r
+ ob_start();\r
+ eval("?>" . $code);\r
+ unset($code);\r
+ } catch (Exception $e) {\r
+ ob_get_clean();\r
+ throw $e;\r
+ }\r
+ } else {\r
+ if (!$_template->compiled->exists || ($_template->smarty->force_compile && !$_template->compiled->isCompiled)) {\r
+ $_template->compileTemplateSource();\r
+ }\r
+ if ($this->smarty->debugging) {\r
+ Smarty_Internal_Debug::start_render($_template);\r
+ }\r
+ if (!$_template->compiled->loaded) {\r
+ include($_template->compiled->filepath);\r
+ if ($_template->mustCompile) {\r
+ // recompile and load again\r
+ $_template->compileTemplateSource();\r
+ include($_template->compiled->filepath);\r
+ }\r
+ $_template->compiled->loaded = true;\r
+ } else {\r
+ $_template->decodeProperties($_template->compiled->_properties, false);\r
+ }\r
+ try {\r
+ ob_start();\r
+ if (empty($_template->properties['unifunc']) || !is_callable($_template->properties['unifunc'])) {\r
+ throw new SmartyException("Invalid compiled template for '{$_template->template_resource}'");\r
+ }\r
+ $_template->properties['unifunc']($_template);\r
+ if (isset($_template->_capture_stack[0])) {\r
+ $_template->capture_error();\r
+ }\r
+ } catch (Exception $e) {\r
+ ob_get_clean();\r
+ throw $e;\r
+ }\r
+ }\r
+ } else {\r
+ if ($_template->source->uncompiled) {\r
+ if ($this->smarty->debugging) {\r
+ Smarty_Internal_Debug::start_render($_template);\r
+ }\r
+ try {\r
+ ob_start();\r
+ $_template->source->renderUncompiled($_template);\r
+ } catch (Exception $e) {\r
+ ob_get_clean();\r
+ throw $e;\r
+ }\r
+ } else {\r
+ throw new SmartyException("Resource '$_template->source->type' must have 'renderUncompiled' method");\r
+ }\r
+ }\r
+ $_output = ob_get_clean();\r
+ if (!$_template->source->recompiled && empty($_template->properties['file_dependency'][$_template->source->uid])) {\r
+ $_template->properties['file_dependency'][$_template->source->uid] = array($_template->source->filepath, $_template->source->timestamp, $_template->source->type);\r
+ }\r
+ if ($_template->parent instanceof Smarty_Internal_Template) {\r
+ $_template->parent->properties['file_dependency'] = array_merge($_template->parent->properties['file_dependency'], $_template->properties['file_dependency']);\r
+ foreach ($_template->required_plugins as $code => $tmp1) {\r
+ foreach ($tmp1 as $name => $tmp) {\r
+ foreach ($tmp as $type => $data) {\r
+ $_template->parent->required_plugins[$code][$name][$type] = $data;\r
+ }\r
+ }\r
+ }\r
+ }\r
+ if ($this->smarty->debugging) {\r
+ Smarty_Internal_Debug::end_render($_template);\r
+ }\r
+ // write to cache when nessecary\r
+ if (!$_template->source->recompiled && ($_template->caching == Smarty::CACHING_LIFETIME_SAVED || $_template->caching == Smarty::CACHING_LIFETIME_CURRENT)) {\r
+ if ($this->smarty->debugging) {\r
+ Smarty_Internal_Debug::start_cache($_template);\r
+ }\r
+ $_template->properties['has_nocache_code'] = false;\r
+ // get text between non-cached items\r
+ $cache_split = preg_split("!/\*%%SmartyNocache:{$_template->properties['nocache_hash']}%%\*\/(.+?)/\*/%%SmartyNocache:{$_template->properties['nocache_hash']}%%\*/!s", $_output);\r
+ // get non-cached items\r
+ preg_match_all("!/\*%%SmartyNocache:{$_template->properties['nocache_hash']}%%\*\/(.+?)/\*/%%SmartyNocache:{$_template->properties['nocache_hash']}%%\*/!s", $_output, $cache_parts);\r
+ $output = '';\r
+ // loop over items, stitch back together\r
+ foreach ($cache_split as $curr_idx => $curr_split) {\r
+ // escape PHP tags in template content\r
+ $output .= preg_replace('/(<%|%>|<\?php|<\?|\?>)/', '<?php echo \'$1\'; ?>', $curr_split);\r
+ if (isset($cache_parts[0][$curr_idx])) {\r
+ $_template->properties['has_nocache_code'] = true;\r
+ // remove nocache tags from cache output\r
+ $output .= preg_replace("!/\*/?%%SmartyNocache:{$_template->properties['nocache_hash']}%%\*/!", '', $cache_parts[0][$curr_idx]);\r
+ }\r
+ }\r
+ if (!$no_output_filter && (isset($this->smarty->autoload_filters['output']) || isset($this->smarty->registered_filters['output']))) {\r
+ $output = Smarty_Internal_Filter_Handler::runFilter('output', $output, $_template);\r
+ }\r
+ // rendering (must be done before writing cache file because of {function} nocache handling)\r
+ $_smarty_tpl = $_template;\r
+ try {\r
+ ob_start();\r
+ eval("?>" . $output);\r
+ $_output = ob_get_clean();\r
+ } catch (Exception $e) {\r
+ ob_get_clean();\r
+ throw $e;\r
+ }\r
+ // write cache file content\r
+ $_template->writeCachedContent($output);\r
+ if ($this->smarty->debugging) {\r
+ Smarty_Internal_Debug::end_cache($_template);\r
+ }\r
+ } else {\r
+ // var_dump('renderTemplate', $_template->has_nocache_code, $_template->template_resource, $_template->properties['nocache_hash'], $_template->parent->properties['nocache_hash'], $_output);\r
+ if (!empty($_template->properties['nocache_hash']) && !empty($_template->parent->properties['nocache_hash'])) {\r
+ // replace nocache_hash\r
+ $_output = preg_replace("/{$_template->properties['nocache_hash']}/", $_template->parent->properties['nocache_hash'], $_output);\r
+ $_template->parent->has_nocache_code = $_template->parent->has_nocache_code || $_template->has_nocache_code;\r
+ }\r
+ }\r
+ } else {\r
+ if ($this->smarty->debugging) {\r
+ Smarty_Internal_Debug::start_cache($_template);\r
+ }\r
+ try {\r
+ ob_start();\r
+ $_template->properties['unifunc']($_template);\r
+ if (isset($_template->_capture_stack[0])) {\r
+ $_template->capture_error();\r
+ }\r
+ $_output = ob_get_clean();\r
+ } catch (Exception $e) {\r
+ ob_get_clean();\r
+ throw $e;\r
+ }\r
+ if ($this->smarty->debugging) {\r
+ Smarty_Internal_Debug::end_cache($_template);\r
+ }\r
+ }\r
+ if ((!$this->caching || $_template->source->recompiled) && !$no_output_filter && (isset($this->smarty->autoload_filters['output']) || isset($this->smarty->registered_filters['output']))) {\r
+ $_output = Smarty_Internal_Filter_Handler::runFilter('output', $_output, $_template);\r
+ }\r
+ if (isset($this->error_reporting)) {\r
+ error_reporting($_smarty_old_error_level);\r
+ }\r
+ // display or fetch\r
+ if ($display) {\r
+ if ($this->caching && $this->cache_modified_check) {\r
+ $_isCached = $_template->isCached() && !$_template->has_nocache_code;\r
+ $_last_modified_date = @substr($_SERVER['HTTP_IF_MODIFIED_SINCE'], 0, strpos($_SERVER['HTTP_IF_MODIFIED_SINCE'], 'GMT') + 3);\r
+ if ($_isCached && $_template->cached->timestamp <= strtotime($_last_modified_date)) {\r
+ switch (PHP_SAPI) {\r
+ case 'cgi': // php-cgi < 5.3\r
+ case 'cgi-fcgi': // php-cgi >= 5.3\r
+ case 'fpm-fcgi': // php-fpm >= 5.3.3\r
+ header('Status: 304 Not Modified');\r
+ break;\r
+\r
+ case 'cli':\r
+ if (/* ^phpunit */!empty($_SERVER['SMARTY_PHPUNIT_DISABLE_HEADERS'])/* phpunit$ */) {\r
+ $_SERVER['SMARTY_PHPUNIT_HEADERS'][] = '304 Not Modified';\r
+ }\r
+ break;\r
+\r
+ default:\r
+ header('HTTP/1.1 304 Not Modified');\r
+ break;\r
+ }\r
+ } else {\r
+ switch (PHP_SAPI) {\r
+ case 'cli':\r
+ if (/* ^phpunit */!empty($_SERVER['SMARTY_PHPUNIT_DISABLE_HEADERS'])/* phpunit$ */) {\r
+ $_SERVER['SMARTY_PHPUNIT_HEADERS'][] = 'Last-Modified: ' . gmdate('D, d M Y H:i:s', $_template->cached->timestamp) . ' GMT';\r
+ }\r
+ break;\r
+\r
+ default:\r
+ header('Last-Modified: ' . gmdate('D, d M Y H:i:s', $_template->cached->timestamp) . ' GMT');\r
+ break;\r
+ }\r
+ echo $_output;\r
+ }\r
+ } else {\r
+ echo $_output;\r
+ }\r
+ // debug output\r
+ if ($this->smarty->debugging) {\r
+ Smarty_Internal_Debug::display_debug($this);\r
+ }\r
+ if ($merge_tpl_vars) {\r
+ // restore local variables\r
+ $_template->tpl_vars = $save_tpl_vars;\r
+ $_template->config_vars = $save_config_vars;\r
+ }\r
+ return;\r
+ } else {\r
+ if ($merge_tpl_vars) {\r
+ // restore local variables\r
+ $_template->tpl_vars = $save_tpl_vars;\r
+ $_template->config_vars = $save_config_vars;\r
+ }\r
+ // return fetched content\r
+ return $_output;\r
+ }\r
+ }\r
+\r
+ /**\r
+ * displays a Smarty template\r
+ *\r
+ * @param string $template the resource handle of the template file or template object\r
+ * @param mixed $cache_id cache id to be used with this template\r
+ * @param mixed $compile_id compile id to be used with this template\r
+ * @param object $parent next higher level of Smarty variables\r
+ */\r
+ public function display($template = null, $cache_id = null, $compile_id = null, $parent = null)\r
+ {\r
+ // display template\r
+ $this->fetch($template, $cache_id, $compile_id, $parent, true);\r
+ }\r
+\r
+ /**\r
+ * test if cache is valid\r
+ *\r
+ * @param string|object $template the resource handle of the template file or template object\r
+ * @param mixed $cache_id cache id to be used with this template\r
+ * @param mixed $compile_id compile id to be used with this template\r
+ * @param object $parent next higher level of Smarty variables\r
+ * @return boolean cache status\r
+ */\r
+ public function isCached($template = null, $cache_id = null, $compile_id = null, $parent = null)\r
+ {\r
+ if ($template === null && $this instanceof $this->template_class) {\r
+ return $this->cached->valid;\r
+ }\r
+ if (!($template instanceof $this->template_class)) {\r
+ if ($parent === null) {\r
+ $parent = $this;\r
+ }\r
+ $template = $this->smarty->createTemplate($template, $cache_id, $compile_id, $parent, false);\r
+ }\r
+ // return cache status of template\r
+ return $template->cached->valid;\r
+ }\r
+\r
+ /**\r
+ * creates a data object\r
+ *\r
+ * @param object $parent next higher level of Smarty variables\r
+ * @returns Smarty_Data data object\r
+ */\r
+ public function createData($parent = null)\r
+ {\r
+ return new Smarty_Data($parent, $this);\r
+ }\r
+\r
+ /**\r
+ * Registers plugin to be used in templates\r
+ *\r
+ * @param string $type plugin type\r
+ * @param string $tag name of template tag\r
+ * @param callback $callback PHP callback to register\r
+ * @param boolean $cacheable if true (default) this fuction is cachable\r
+ * @param array $cache_attr caching attributes if any\r
+ * @throws SmartyException when the plugin tag is invalid\r
+ */\r
+ public function registerPlugin($type, $tag, $callback, $cacheable = true, $cache_attr = null)\r
+ {\r
+ if (isset($this->smarty->registered_plugins[$type][$tag])) {\r
+ throw new SmartyException("Plugin tag \"{$tag}\" already registered");\r
+ } elseif (!is_callable($callback)) {\r
+ throw new SmartyException("Plugin \"{$tag}\" not callable");\r
+ } else {\r
+ $this->smarty->registered_plugins[$type][$tag] = array($callback, (bool) $cacheable, (array) $cache_attr);\r
+ }\r
+ }\r
+\r
+ /**\r
+ * Unregister Plugin\r
+ *\r
+ * @param string $type of plugin\r
+ * @param string $tag name of plugin\r
+ */\r
+ public function unregisterPlugin($type, $tag)\r
+ {\r
+ if (isset($this->smarty->registered_plugins[$type][$tag])) {\r
+ unset($this->smarty->registered_plugins[$type][$tag]);\r
+ }\r
+ }\r
+\r
+ /**\r
+ * Registers a resource to fetch a template\r
+ *\r
+ * @param string $type name of resource type\r
+ * @param Smarty_Resource|array $callback or instance of Smarty_Resource, or array of callbacks to handle resource (deprecated)\r
+ */\r
+ public function registerResource($type, $callback)\r
+ {\r
+ $this->smarty->registered_resources[$type] = $callback instanceof Smarty_Resource ? $callback : array($callback, false);\r
+ }\r
+\r
+ /**\r
+ * Unregisters a resource\r
+ *\r
+ * @param string $type name of resource type\r
+ */\r
+ public function unregisterResource($type)\r
+ {\r
+ if (isset($this->smarty->registered_resources[$type])) {\r
+ unset($this->smarty->registered_resources[$type]);\r
+ }\r
+ }\r
+\r
+ /**\r
+ * Registers a cache resource to cache a template's output\r
+ *\r
+ * @param string $type name of cache resource type\r
+ * @param Smarty_CacheResource $callback instance of Smarty_CacheResource to handle output caching\r
+ */\r
+ public function registerCacheResource($type, Smarty_CacheResource $callback)\r
+ {\r
+ $this->smarty->registered_cache_resources[$type] = $callback;\r
+ }\r
+\r
+ /**\r
+ * Unregisters a cache resource\r
+ *\r
+ * @param string $type name of cache resource type\r
+ */\r
+ public function unregisterCacheResource($type)\r
+ {\r
+ if (isset($this->smarty->registered_cache_resources[$type])) {\r
+ unset($this->smarty->registered_cache_resources[$type]);\r
+ }\r
+ }\r
+\r
+ /**\r
+ * Registers object to be used in templates\r
+ *\r
+ * @param string $object name of template object\r
+ * @param object $object_impl the referenced PHP object to register\r
+ * @param array $allowed list of allowed methods (empty = all)\r
+ * @param boolean $smarty_args smarty argument format, else traditional\r
+ * @param array $block_methods list of block-methods\r
+ * @param array $block_functs list of methods that are block format\r
+ * @throws SmartyException if any of the methods in $allowed or $block_methods are invalid\r
+ */\r
+ public function registerObject($object_name, $object_impl, $allowed = array(), $smarty_args = true, $block_methods = array())\r
+ {\r
+ // test if allowed methodes callable\r
+ if (!empty($allowed)) {\r
+ foreach ((array) $allowed as $method) {\r
+ if (!is_callable(array($object_impl, $method))) {\r
+ throw new SmartyException("Undefined method '$method' in registered object");\r
+ }\r
+ }\r
+ }\r
+ // test if block methodes callable\r
+ if (!empty($block_methods)) {\r
+ foreach ((array) $block_methods as $method) {\r
+ if (!is_callable(array($object_impl, $method))) {\r
+ throw new SmartyException("Undefined method '$method' in registered object");\r
+ }\r
+ }\r
+ }\r
+ // register the object\r
+ $this->smarty->registered_objects[$object_name] =\r
+ array($object_impl, (array) $allowed, (boolean) $smarty_args, (array) $block_methods);\r
+ }\r
+\r
+ /**\r
+ * return a reference to a registered object\r
+ *\r
+ * @param string $name object name\r
+ * @return object\r
+ * @throws SmartyException if no such object is found\r
+ */\r
+ public function getRegisteredObject($name)\r
+ {\r
+ if (!isset($this->smarty->registered_objects[$name])) {\r
+ throw new SmartyException("'$name' is not a registered object");\r
+ }\r
+ if (!is_object($this->smarty->registered_objects[$name][0])) {\r
+ throw new SmartyException("registered '$name' is not an object");\r
+ }\r
+ return $this->smarty->registered_objects[$name][0];\r
+ }\r
+\r
+ /**\r
+ * unregister an object\r
+ *\r
+ * @param string $name object name\r
+ * @throws SmartyException if no such object is found\r
+ */\r
+ public function unregisterObject($name)\r
+ {\r
+ unset($this->smarty->registered_objects[$name]);\r
+ return;\r
+ }\r
+\r
+ /**\r
+ * Registers static classes to be used in templates\r
+ *\r
+ * @param string $class name of template class\r
+ * @param string $class_impl the referenced PHP class to register\r
+ * @throws SmartyException if $class_impl does not refer to an existing class\r
+ */\r
+ public function registerClass($class_name, $class_impl)\r
+ {\r
+ // test if exists\r
+ if (!class_exists($class_impl)) {\r
+ throw new SmartyException("Undefined class '$class_impl' in register template class");\r
+ }\r
+ // register the class\r
+ $this->smarty->registered_classes[$class_name] = $class_impl;\r
+ }\r
+\r
+ /**\r
+ * Registers a default plugin handler\r
+ *\r
+ * @param callable $callback class/method name\r
+ * @throws SmartyException if $callback is not callable\r
+ */\r
+ public function registerDefaultPluginHandler($callback)\r
+ {\r
+ if (is_callable($callback)) {\r
+ $this->smarty->default_plugin_handler_func = $callback;\r
+ } else {\r
+ throw new SmartyException("Default plugin handler '$callback' not callable");\r
+ }\r
+ }\r
+\r
+ /**\r
+ * Registers a default template handler\r
+ *\r
+ * @param callable $callback class/method name\r
+ * @throws SmartyException if $callback is not callable\r
+ */\r
+ public function registerDefaultTemplateHandler($callback)\r
+ {\r
+ if (is_callable($callback)) {\r
+ $this->smarty->default_template_handler_func = $callback;\r
+ } else {\r
+ throw new SmartyException("Default template handler '$callback' not callable");\r
+ }\r
+ }\r
+\r
+ /**\r
+ * Registers a default template handler\r
+ *\r
+ * @param callable $callback class/method name\r
+ * @throws SmartyException if $callback is not callable\r
+ */\r
+ public function registerDefaultConfigHandler($callback)\r
+ {\r
+ if (is_callable($callback)) {\r
+ $this->smarty->default_config_handler_func = $callback;\r
+ } else {\r
+ throw new SmartyException("Default config handler '$callback' not callable");\r
+ }\r
+ }\r
+\r
+ /**\r
+ * Registers a filter function\r
+ *\r
+ * @param string $type filter type\r
+ * @param callback $callback\r
+ */\r
+ public function registerFilter($type, $callback)\r
+ {\r
+ $this->smarty->registered_filters[$type][$this->_get_filter_name($callback)] = $callback;\r
+ }\r
+\r
+ /**\r
+ * Unregisters a filter function\r
+ *\r
+ * @param string $type filter type\r
+ * @param callback $callback\r
+ */\r
+ public function unregisterFilter($type, $callback)\r
+ {\r
+ $name = $this->_get_filter_name($callback);\r
+ if (isset($this->smarty->registered_filters[$type][$name])) {\r
+ unset($this->smarty->registered_filters[$type][$name]);\r
+ }\r
+ }\r
+\r
+ /**\r
+ * Return internal filter name\r
+ *\r
+ * @param callback $function_name\r
+ */\r
+ public function _get_filter_name($function_name)\r
+ {\r
+ if (is_array($function_name)) {\r
+ $_class_name = (is_object($function_name[0]) ?\r
+ get_class($function_name[0]) : $function_name[0]);\r
+ return $_class_name . '_' . $function_name[1];\r
+ } else {\r
+ return $function_name;\r
+ }\r
+ }\r
+\r
+ /**\r
+ * load a filter of specified type and name\r
+ *\r
+ * @param string $type filter type\r
+ * @param string $name filter name\r
+ * @return bool\r
+ */\r
+ public function loadFilter($type, $name)\r
+ {\r
+ $_plugin = "smarty_{$type}filter_{$name}";\r
+ $_filter_name = $_plugin;\r
+ if ($this->smarty->loadPlugin($_plugin)) {\r
+ if (class_exists($_plugin, false)) {\r
+ $_plugin = array($_plugin, 'execute');\r
+ }\r
+ if (is_callable($_plugin)) {\r
+ $this->smarty->registered_filters[$type][$_filter_name] = $_plugin;\r
+ return true;\r
+ }\r
+ }\r
+ throw new SmartyException("{$type}filter \"{$name}\" not callable");\r
+ return false;\r
+ }\r
+\r
+ /**\r
+ * unload a filter of specified type and name\r
+ *\r
+ * @param string $type filter type\r
+ * @param string $name filter name\r
+ * @return bool\r
+ */\r
+ public function unloadFilter($type, $name)\r
+ {\r
+ $_filter_name = "smarty_{$type}filter_{$name}";\r
+ if (isset($this->smarty->registered_filters[$type][$_filter_name])) {\r
+ unset ($this->smarty->registered_filters[$type][$_filter_name]);\r
+ return true;\r
+ } else {\r
+ return false;\r
+ }\r
+ }\r
+\r
+ /**\r
+ * preg_replace callback to convert camelcase getter/setter to underscore property names\r
+ *\r
+ * @param string $match match string\r
+ * @return string replacemant\r
+ */\r
+ private function replaceCamelcase($match) {\r
+ return "_" . strtolower($match[1]);\r
+ }\r
+\r
+ /**\r
+ * Handle unknown class methods\r
+ *\r
+ * @param string $name unknown method-name\r
+ * @param array $args argument array\r
+ */\r
+ public function __call($name, $args)\r
+ {\r
+ static $_prefixes = array('set' => true, 'get' => true);\r
+ static $_resolved_property_name = array();\r
+ static $_resolved_property_source = array();\r
+\r
+ // method of Smarty object?\r
+ if (method_exists($this->smarty, $name)) {\r
+ return call_user_func_array(array($this->smarty, $name), $args);\r
+ }\r
+ // see if this is a set/get for a property\r
+ $first3 = strtolower(substr($name, 0, 3));\r
+ if (isset($_prefixes[$first3]) && isset($name[3]) && $name[3] !== '_') {\r
+ if (isset($_resolved_property_name[$name])) {\r
+ $property_name = $_resolved_property_name[$name];\r
+ } else {\r
+ // try to keep case correct for future PHP 6.0 case-sensitive class methods\r
+ // lcfirst() not available < PHP 5.3.0, so improvise\r
+ $property_name = strtolower(substr($name, 3, 1)) . substr($name, 4);\r
+ // convert camel case to underscored name\r
+ $property_name = preg_replace_callback('/([A-Z])/', array($this,'replaceCamelcase'), $property_name);\r
+ $_resolved_property_name[$name] = $property_name;\r
+ }\r
+ if (isset($_resolved_property_source[$property_name])) {\r
+ $_is_this = $_resolved_property_source[$property_name];\r
+ } else {\r
+ $_is_this = null;\r
+ if (property_exists($this, $property_name)) {\r
+ $_is_this = true;\r
+ } else if (property_exists($this->smarty, $property_name)) {\r
+ $_is_this = false;\r
+ }\r
+ $_resolved_property_source[$property_name] = $_is_this;\r
+ }\r
+ if ($_is_this) {\r
+ if ($first3 == 'get')\r
+ return $this->$property_name;\r
+ else\r
+ return $this->$property_name = $args[0];\r
+ } else if ($_is_this === false) {\r
+ if ($first3 == 'get')\r
+ return $this->smarty->$property_name;\r
+ else\r
+ return $this->smarty->$property_name = $args[0];\r
+ } else {\r
+ throw new SmartyException("property '$property_name' does not exist.");\r
+ return false;\r
+ }\r
+ }\r
+ // must be unknown\r
+ throw new SmartyException("Call of unknown method '$name'.");\r
+ }\r
+\r
+}\r
+\r
+?>
\ No newline at end of file
diff --git a/gosa-core/include/smarty/sysplugins/smarty_internal_templatecompilerbase.php b/gosa-core/include/smarty/sysplugins/smarty_internal_templatecompilerbase.php
index b8b341e74c1abd363001d61902612dc652dbb45e..cde968d09a14c70c2d5c554a32f18a17599d203b 100644 (file)
*/\r
\r
/**\r
- * Main compiler class\r
+ * Main abstract compiler class\r
+ *\r
+ * @package Smarty\r
+ * @subpackage Compiler\r
*/\r
-class Smarty_Internal_TemplateCompilerBase {\r
- // hash for nocache sections\r
+abstract class Smarty_Internal_TemplateCompilerBase {\r
+\r
+ /**\r
+ * hash for nocache sections\r
+ *\r
+ * @var mixed\r
+ */\r
private $nocache_hash = null;\r
- // suppress generation of nocache code\r
+ /**\r
+ * suppress generation of nocache code\r
+ *\r
+ * @var bool\r
+ */\r
public $suppressNocacheProcessing = false;\r
- // compile tag objects\r
- static $_tag_objects = array();\r
- // tag stack\r
+ /**\r
+ * suppress generation of merged template code\r
+ *\r
+ * @var bool\r
+ */\r
+ public $suppressMergedTemplates = false;\r
+ /**\r
+ * compile tag objects\r
+ *\r
+ * @var array\r
+ */\r
+ public static $_tag_objects = array();\r
+ /**\r
+ * tag stack\r
+ *\r
+ * @var array\r
+ */\r
public $_tag_stack = array();\r
- // current template\r
+ /**\r
+ * current template\r
+ *\r
+ * @var Smarty_Internal_Template\r
+ */\r
public $template = null;\r
- // optional log of tag/attributes\r
- public $used_tags = array();\r
+ /**\r
+ * merged templates\r
+ *\r
+ * @var array\r
+ */\r
+ public $merged_templates = array();\r
+ /**\r
+ * flag when compiling {block}\r
+ *\r
+ * @var bool\r
+ */\r
+ public $inheritance = false;\r
+ /**\r
+ * plugins loaded by default plugin handler\r
+ *\r
+ * @var array\r
+ */\r
+ public $default_handler_plugins = array();\r
+ /**\r
+ * saved preprocessed modifier list\r
+ *\r
+ * @var mixed\r
+ */\r
+ public $default_modifier_list = null;\r
+ /**\r
+ * force compilation of complete template as nocache\r
+ * @var boolean\r
+ */\r
+ public $forceNocache = false;\r
+ /**\r
+ * suppress Smarty header code in compiled template\r
+ * @var bool\r
+ */\r
+ public $suppressHeader = false;\r
+ /**\r
+ * suppress template property header code in compiled template\r
+ * @var bool\r
+ */\r
+ public $suppressTemplatePropertyHeader = false;\r
+ /**\r
+ * flag if compiled template file shall we written\r
+ * @var bool\r
+ */\r
+ public $write_compiled_code = true;\r
+ /**\r
+ * flag if currently a template function is compiled\r
+ * @var bool\r
+ */\r
+ public $compiles_template_function = false;\r
+ /**\r
+ * called subfuntions from template function\r
+ * @var array\r
+ */\r
+ public $called_functions = array();\r
+ /**\r
+ * flags for used modifier plugins\r
+ * @var array\r
+ */\r
+ public $modifier_plugins = array();\r
\r
/**\r
* Initialize compiler\r
}\r
\r
/**\r
- * Methode to compile a Smarty template\r
+ * Method to compile a Smarty template\r
*\r
- * @param $template template object to compile\r
+ * @param Smarty_Internal_Template $template template object to compile\r
* @return bool true if compiling succeeded, false if it failed\r
*/\r
- public function compileTemplate($template)\r
+ public function compileTemplate(Smarty_Internal_Template $template)\r
{\r
if (empty($template->properties['nocache_hash'])) {\r
$template->properties['nocache_hash'] = $this->nocache_hash;\r
$this->tag_nocache = false;\r
// save template object in compiler class\r
$this->template = $template;\r
- $this->smarty->_current_file = $saved_filepath = $this->template->getTemplateFilepath();\r
+ // reset has noche code flag\r
+ $this->template->has_nocache_code = false; \r
+ $this->smarty->_current_file = $saved_filepath = $this->template->source->filepath;\r
// template header code\r
$template_header = '';\r
- if (!$template->suppressHeader) {\r
+ if (!$this->suppressHeader) {\r
$template_header .= "<?php /* Smarty version " . Smarty::SMARTY_VERSION . ", created on " . strftime("%Y-%m-%d %H:%M:%S") . "\n";\r
- $template_header .= " compiled from \"" . $this->template->getTemplateFilepath() . "\" */ ?>\n";\r
+ $template_header .= " compiled from \"" . $this->template->source->filepath . "\" */ ?>\n";\r
}\r
\r
do {\r
// flag for aborting current and start recompile\r
$this->abort_and_recompile = false;\r
// get template source\r
- $_content = $template->getTemplateSource();\r
+ $_content = $template->source->content;\r
// run prefilter if required\r
if (isset($this->smarty->autoload_filters['pre']) || isset($this->smarty->registered_filters['pre'])) {\r
- $template->template_source = $_content = Smarty_Internal_Filter_Handler::runFilter('pre', $_content, $template);\r
+ $template->source->content = $_content = Smarty_Internal_Filter_Handler::runFilter('pre', $_content, $template);\r
}\r
// on empty template just return header\r
if ($_content == '') {\r
- if ($template->suppressFileDependency) {\r
- $template->compiled_template = '';\r
+ if ($this->suppressTemplatePropertyHeader) {\r
+ $code = '';\r
} else {\r
- $template->compiled_template = $template_header . $template->createPropertyHeader();\r
+ $code = $template_header . $template->createTemplateCodeFrame();\r
}\r
- return true;\r
+ return $code;\r
}\r
// call compiler\r
$_compiled_code = $this->doCompile($_content);\r
} while ($this->abort_and_recompile);\r
- // restore original filepath which could have been modified by template inheritance\r
- $this->template->template_filepath = $saved_filepath;\r
+ $this->template->source->filepath = $saved_filepath;\r
+ // free memory\r
+ unset($this->parser->root_buffer, $this->parser->current_buffer, $this->parser, $this->lex, $this->template);\r
+ self::$_tag_objects = array();\r
// return compiled code to template object\r
- if ($template->suppressFileDependency) {\r
- $template->compiled_template = $_compiled_code;\r
+ $merged_code = '';\r
+ if (!$this->suppressMergedTemplates) {\r
+ foreach ($this->merged_templates as $code) {\r
+ $merged_code .= $code;\r
+ }\r
+ }\r
+ if ($this->suppressTemplatePropertyHeader) {\r
+ $code = $_compiled_code . $merged_code;\r
} else {\r
- $template->compiled_template = $template_header . $template->createPropertyHeader() . $_compiled_code;\r
+ $code = $template_header . $template->createTemplateCodeFrame($_compiled_code) . $merged_code;\r
}\r
// run postfilter if required\r
if (isset($this->smarty->autoload_filters['post']) || isset($this->smarty->registered_filters['post'])) {\r
- $template->compiled_template = Smarty_Internal_Filter_Handler::runFilter('post', $template->compiled_template, $template);\r
+ $code = Smarty_Internal_Filter_Handler::runFilter('post', $code, $template);\r
}\r
+ return $code;\r
}\r
\r
/**\r
* This is a call back from the lexer/parser\r
* It executes the required compile plugin for the Smarty tag\r
*\r
- * @param string $tag tag name\r
- * @param array $args array with tag attributes\r
- * @param array $parameter array with compilation parameter\r
+ * @param string $tag tag name\r
+ * @param array $args array with tag attributes\r
+ * @param array $parameter array with compilation parameter\r
* @return string compiled code\r
*/\r
public function compileTag($tag, $args, $parameter = array())\r
$this->has_output = false;\r
// log tag/attributes\r
if (isset($this->smarty->get_used_tags) && $this->smarty->get_used_tags) {\r
- $this->used_tags[] = array($tag,$args);\r
+ $this->template->used_tags[] = array($tag, $args);\r
}\r
- // check nocache option flag\r
+ // check nocache option flag\r
if (in_array("'nocache'",$args) || in_array(array('nocache'=>'true'),$args)\r
- || in_array(array('nocache'=>'"true"'),$args) || in_array(array('nocache'=>"'true'"),$args)) {\r
- $this->tag_nocache = true;\r
+ || in_array(array('nocache'=>'"true"'),$args) || in_array(array('nocache'=>"'true'"),$args)) {\r
+ $this->tag_nocache = true;\r
}\r
// compile the smarty tag (required compile classes to compile the tag are autoloaded)\r
if (($_output = $this->callTagCompiler($tag, $args, $parameter)) === false) {\r
if (isset($this->smarty->registered_objects[$tag]) && isset($parameter['object_methode'])) {\r
$methode = $parameter['object_methode'];\r
if (!in_array($methode, $this->smarty->registered_objects[$tag][3]) &&\r
- (empty($this->smarty->registered_objects[$tag][1]) || in_array($methode, $this->smarty->registered_objects[$tag][1]))) {\r
+ (empty($this->smarty->registered_objects[$tag][1]) || in_array($methode, $this->smarty->registered_objects[$tag][1]))) {\r
return $this->callTagCompiler('private_object_function', $args, $parameter, $tag, $methode);\r
} elseif (in_array($methode, $this->smarty->registered_objects[$tag][3])) {\r
return $this->callTagCompiler('private_object_block_function', $args, $parameter, $tag, $methode);\r
}\r
}\r
// check if tag is registered\r
- foreach (array(Smarty::PLUGIN_COMPILER, Smarty::PLUGIN_FUNCTION, Smarty::PLUGIN_BLOCK) as $type) {\r
- if (isset($this->smarty->registered_plugins[$type][$tag])) {\r
+ foreach (array(Smarty::PLUGIN_COMPILER, Smarty::PLUGIN_FUNCTION, Smarty::PLUGIN_BLOCK) as $plugin_type) {\r
+ if (isset($this->smarty->registered_plugins[$plugin_type][$tag])) {\r
// if compiler function plugin call it now\r
- if ($type == Smarty::PLUGIN_COMPILER) {\r
+ if ($plugin_type == Smarty::PLUGIN_COMPILER) {\r
$new_args = array();\r
foreach ($args as $key => $mixed) {\r
if (is_array($mixed)) {\r
$new_args[$key] = $mixed;\r
}\r
}\r
- if (!$this->smarty->registered_plugins[$type][$tag][1]) {\r
+ if (!$this->smarty->registered_plugins[$plugin_type][$tag][1]) {\r
$this->tag_nocache = true;\r
}\r
- $function = $this->smarty->registered_plugins[$type][$tag][0];\r
+ $function = $this->smarty->registered_plugins[$plugin_type][$tag][0];\r
if (!is_array($function)) {\r
return $function($new_args, $this);\r
} else if (is_object($function[0])) {\r
- return $this->smarty->registered_plugins[$type][$tag][0][0]->$function[1]($new_args, $this);\r
+ return $this->smarty->registered_plugins[$plugin_type][$tag][0][0]->$function[1]($new_args, $this);\r
} else {\r
- return call_user_func_array($this->smarty->registered_plugins[$type][$tag][0], array($new_args, $this));\r
+ return call_user_func_array($function, array($new_args, $this));\r
}\r
}\r
// compile registered function or block function\r
- if ($type == Smarty::PLUGIN_FUNCTION || $type == Smarty::PLUGIN_BLOCK) {\r
- return $this->callTagCompiler('private_registered_' . $type, $args, $parameter, $tag);\r
+ if ($plugin_type == Smarty::PLUGIN_FUNCTION || $plugin_type == Smarty::PLUGIN_BLOCK) {\r
+ return $this->callTagCompiler('private_registered_' . $plugin_type, $args, $parameter, $tag);\r
}\r
+\r
}\r
}\r
// check plugins from plugins folder\r
foreach ($this->smarty->plugin_search_order as $plugin_type) {\r
- if ($plugin_type == Smarty::PLUGIN_BLOCK && $this->smarty->loadPlugin('smarty_compiler_' . $tag)) {\r
+ if ($plugin_type == Smarty::PLUGIN_BLOCK && $this->smarty->loadPlugin('smarty_compiler_' . $tag) && (!isset($this->smarty->security_policy) || $this->smarty->security_policy->isTrustedTag($tag, $this))) {\r
$plugin = 'smarty_compiler_' . $tag;\r
if (is_callable($plugin)) {\r
- // convert arguments format for old compiler plugins\r
+ // convert arguments format for old compiler plugins\r
$new_args = array();\r
foreach ($args as $key => $mixed) {\r
if (is_array($mixed)) {\r
throw new SmartyException("Plugin \"{$tag}\" not callable");\r
} else {\r
if ($function = $this->getPlugin($tag, $plugin_type)) {\r
- return $this->callTagCompiler('private_' . $plugin_type . '_plugin', $args, $parameter, $tag, $function);\r
+ if(!isset($this->smarty->security_policy) || $this->smarty->security_policy->isTrustedTag($tag, $this)) {\r
+ return $this->callTagCompiler('private_' . $plugin_type . '_plugin', $args, $parameter, $tag, $function);\r
+ }\r
+ }\r
+ }\r
+ }\r
+ if (is_callable($this->smarty->default_plugin_handler_func)) {\r
+ $found = false;\r
+ // look for already resolved tags\r
+ foreach ($this->smarty->plugin_search_order as $plugin_type) {\r
+ if (isset($this->default_handler_plugins[$plugin_type][$tag])) {\r
+ $found = true;\r
+ break;\r
+ }\r
+ }\r
+ if (!$found) {\r
+ // call default handler\r
+ foreach ($this->smarty->plugin_search_order as $plugin_type) {\r
+ if ($this->getPluginFromDefaultHandler($tag, $plugin_type)) {\r
+ $found = true;\r
+ break;\r
+ }\r
+ }\r
+ }\r
+ if ($found) {\r
+ // if compiler function plugin call it now\r
+ if ($plugin_type == Smarty::PLUGIN_COMPILER) {\r
+ $new_args = array();\r
+ foreach ($args as $mixed) {\r
+ $new_args = array_merge($new_args, $mixed);\r
+ }\r
+ $function = $this->default_handler_plugins[$plugin_type][$tag][0];\r
+ if (!is_array($function)) {\r
+ return $function($new_args, $this);\r
+ } else if (is_object($function[0])) {\r
+ return $this->default_handler_plugins[$plugin_type][$tag][0][0]->$function[1]($new_args, $this);\r
+ } else {\r
+ return call_user_func_array($function, array($new_args, $this));\r
+ }\r
+ } else {\r
+ return $this->callTagCompiler('private_registered_' . $plugin_type, $args, $parameter, $tag);\r
}\r
}\r
}\r
}\r
}\r
// registered block tag ?\r
- if (isset($this->smarty->registered_plugins[Smarty::PLUGIN_BLOCK][$base_tag])) {\r
+ if (isset($this->smarty->registered_plugins[Smarty::PLUGIN_BLOCK][$base_tag]) || isset($this->default_handler_plugins[Smarty::PLUGIN_BLOCK][$base_tag])) {\r
return $this->callTagCompiler('private_registered_block', $args, $parameter, $tag);\r
}\r
// block plugin?\r
* class name format: Smarty_Internal_Compile_TagName\r
* plugin filename format: Smarty_Internal_Tagname.php\r
*\r
- * @param $tag string tag name\r
- * @param $args array with tag attributes\r
- * @param $param1 optional parameter\r
- * @param $param2 optional parameter\r
- * @param $param3 optional parameter\r
+ * @param string $tag tag name\r
+ * @param array $args list of tag attributes\r
+ * @param mixed $param1 optional parameter\r
+ * @param mixed $param2 optional parameter\r
+ * @param mixed $param3 optional parameter\r
* @return string compiled code\r
*/\r
public function callTagCompiler($tag, $args, $param1 = null, $param2 = null, $param3 = null)\r
// lazy load internal compiler plugin\r
$class_name = 'Smarty_Internal_Compile_' . $tag;\r
if ($this->smarty->loadPlugin($class_name)) {\r
+ // check if tag allowed by security\r
+ if (!isset($this->smarty->security_policy) || $this->smarty->security_policy->isTrustedTag($tag, $this)) {\r
// use plugin if found\r
self::$_tag_objects[$tag] = new $class_name;\r
// compile this tag\r
return self::$_tag_objects[$tag]->compile($args, $this, $param1, $param2, $param3);\r
+ }\r
}\r
// no internal compile plugin for this tag\r
return false;\r
/**\r
* Check for plugins and return function name\r
*\r
- * @param $pugin_name string name of plugin or function\r
- * @param $type string type of plugin\r
+ * @param string $pugin_name name of plugin or function\r
+ * @param string $plugin_type type of plugin\r
* @return string call name of function\r
*/\r
- public function getPlugin($plugin_name, $type)\r
+ public function getPlugin($plugin_name, $plugin_type)\r
{\r
$function = null;\r
if ($this->template->caching && ($this->nocache || $this->tag_nocache)) {\r
- if (isset($this->template->required_plugins['nocache'][$plugin_name][$type])) {\r
- $function = $this->template->required_plugins['nocache'][$plugin_name][$type]['function'];\r
- } else if (isset($this->template->required_plugins['compiled'][$plugin_name][$type])) {\r
- $this->template->required_plugins['nocache'][$plugin_name][$type] = $this->template->required_plugins['compiled'][$plugin_name][$type];\r
- $function = $this->template->required_plugins['nocache'][$plugin_name][$type]['function'];\r
+ if (isset($this->template->required_plugins['nocache'][$plugin_name][$plugin_type])) {\r
+ $function = $this->template->required_plugins['nocache'][$plugin_name][$plugin_type]['function'];\r
+ } else if (isset($this->template->required_plugins['compiled'][$plugin_name][$plugin_type])) {\r
+ $this->template->required_plugins['nocache'][$plugin_name][$plugin_type] = $this->template->required_plugins['compiled'][$plugin_name][$plugin_type];\r
+ $function = $this->template->required_plugins['nocache'][$plugin_name][$plugin_type]['function'];\r
}\r
} else {\r
- if (isset($this->template->required_plugins['compiled'][$plugin_name][$type])) {\r
- $function = $this->template->required_plugins['compiled'][$plugin_name][$type]['function'];\r
- } else if (isset($this->template->required_plugins['nocache'][$plugin_name][$type])) {\r
- $this->template->required_plugins['compiled'][$plugin_name][$type] = $this->template->required_plugins['nocache'][$plugin_name][$type];\r
- $function = $this->template->required_plugins['compiled'][$plugin_name][$type]['function'];\r
+ if (isset($this->template->required_plugins['compiled'][$plugin_name][$plugin_type])) {\r
+ $function = $this->template->required_plugins['compiled'][$plugin_name][$plugin_type]['function'];\r
+ } else if (isset($this->template->required_plugins['nocache'][$plugin_name][$plugin_type])) {\r
+ $this->template->required_plugins['compiled'][$plugin_name][$plugin_type] = $this->template->required_plugins['nocache'][$plugin_name][$plugin_type];\r
+ $function = $this->template->required_plugins['compiled'][$plugin_name][$plugin_type]['function'];\r
}\r
}\r
if (isset($function)) {\r
- if ($type == 'modifier') {\r
- $this->template->saved_modifier[$plugin_name] = true;\r
+ if ($plugin_type == 'modifier') {\r
+ $this->modifier_plugins[$plugin_name] = true;\r
}\r
return $function;\r
}\r
// loop through plugin dirs and find the plugin\r
- $function = 'smarty_' . $type . '_' . $plugin_name;\r
- $found = false;\r
- foreach((array)$this->smarty->plugins_dir as $_plugin_dir) {\r
- $file = rtrim($_plugin_dir, '/\\') . DS . $type . '.' . $plugin_name . '.php';\r
- if (file_exists($file)) {\r
- // require_once($file);\r
- $found = true;\r
- break;\r
- }\r
- }\r
- if ($found) {\r
+ $function = 'smarty_' . $plugin_type . '_' . $plugin_name;\r
+ $file = $this->smarty->loadPlugin($function, false);\r
+\r
+ if (is_string($file)) {\r
if ($this->template->caching && ($this->nocache || $this->tag_nocache)) {\r
- $this->template->required_plugins['nocache'][$plugin_name][$type]['file'] = $file;\r
- $this->template->required_plugins['nocache'][$plugin_name][$type]['function'] = $function;\r
+ $this->template->required_plugins['nocache'][$plugin_name][$plugin_type]['file'] = $file;\r
+ $this->template->required_plugins['nocache'][$plugin_name][$plugin_type]['function'] = $function;\r
} else {\r
- $this->template->required_plugins['compiled'][$plugin_name][$type]['file'] = $file;\r
- $this->template->required_plugins['compiled'][$plugin_name][$type]['function'] = $function;\r
+ $this->template->required_plugins['compiled'][$plugin_name][$plugin_type]['file'] = $file;\r
+ $this->template->required_plugins['compiled'][$plugin_name][$plugin_type]['function'] = $function;\r
}\r
- if ($type == 'modifier') {\r
- $this->template->saved_modifier[$plugin_name] = true;\r
+ if ($plugin_type == 'modifier') {\r
+ $this->modifier_plugins[$plugin_name] = true;\r
}\r
return $function;\r
}\r
}\r
return false;\r
}\r
+\r
+ /**\r
+ * Check for plugins by default plugin handler\r
+ *\r
+ * @param string $tag name of tag\r
+ * @param string $plugin_type type of plugin\r
+ * @return boolean true if found\r
+ */\r
+ public function getPluginFromDefaultHandler($tag, $plugin_type)\r
+ {\r
+ $callback = null;\r
+ $script = null;\r
+ $result = call_user_func_array(\r
+ $this->smarty->default_plugin_handler_func,\r
+ array($tag, $plugin_type, $this->template, &$callback, &$script)\r
+ );\r
+ if ($result) {\r
+ if ($script !== null) {\r
+ if (is_file($script)) {\r
+ if ($this->template->caching && ($this->nocache || $this->tag_nocache)) {\r
+ $this->template->required_plugins['nocache'][$tag][$plugin_type]['file'] = $script;\r
+ $this->template->required_plugins['nocache'][$tag][$plugin_type]['function'] = $callback;\r
+ } else {\r
+ $this->template->required_plugins['compiled'][$tag][$plugin_type]['file'] = $script;\r
+ $this->template->required_plugins['compiled'][$tag][$plugin_type]['function'] = $callback;\r
+ }\r
+ include_once $script;\r
+ } else {\r
+ throw new SmartyCompilerException("Plugin or modifer script file $script not found");\r
+ }\r
+ }\r
+ if (is_callable($callback)) {\r
+ $this->default_handler_plugins[$plugin_type][$tag] = array($callback, true, array());\r
+ return true;\r
+ } else {\r
+ throw new SmartyCompilerException("Function for plugin or modifier $tag not callable");\r
+ }\r
+ }\r
+ return false;\r
+ }\r
+\r
/**\r
* Inject inline code for nocache template sections\r
*\r
* If the content is compiled code and it should be not cached the code is injected\r
* into the rendered output.\r
*\r
- * @param string $content content of template element\r
- * @param boolean $tag_nocache true if the parser detected a nocache situation\r
+ * @param string $content content of template element\r
* @param boolean $is_code true if content is compiled code\r
* @return string content\r
*/\r
- public function processNocacheCode ($content, $is_code)\r
+ public function processNocacheCode($content, $is_code)\r
{\r
// If the template is not evaluated and we have a nocache section and or a nocache tag\r
if ($is_code && !empty($content)) {\r
// generate replacement code\r
- if ((!$this->template->resource_object->isEvaluated || $this->template->forceNocache) && $this->template->caching && !$this->suppressNocacheProcessing &&\r
- ($this->nocache || $this->tag_nocache || $this->template->forceNocache == 2)) {\r
+ if ((!($this->template->source->recompiled) || $this->forceNocache) && $this->template->caching && !$this->suppressNocacheProcessing &&\r
+ ($this->nocache || $this->tag_nocache || $this->forceNocache == 2)) {\r
$this->template->has_nocache_code = true;\r
$_output = str_replace("'", "\'", $content);\r
+ $_output = str_replace('\\\\', '\\\\\\\\', $_output);\r
$_output = str_replace("^#^", "'", $_output);\r
- $_output = "<?php echo '/*%%SmartyNocache:{$this->nocache_hash}%%*/" . $_output . "/*/%%SmartyNocache:{$this->nocache_hash}%%*/';?>";\r
+ $_output = "<?php echo '/*%%SmartyNocache:{$this->nocache_hash}%%*/" . $_output . "/*/%%SmartyNocache:{$this->nocache_hash}%%*/';?>\n";\r
// make sure we include modifer plugins for nocache code\r
- if (isset($this->template->saved_modifier)) {\r
- foreach ($this->template->saved_modifier as $plugin_name => $dummy) {\r
- if (isset($this->template->required_plugins['compiled'][$plugin_name]['modifier'])) {\r
- $this->template->required_plugins['nocache'][$plugin_name]['modifier'] = $this->template->required_plugins['compiled'][$plugin_name]['modifier'];\r
- }\r
+ foreach ($this->modifier_plugins as $plugin_name => $dummy) {\r
+ if (isset($this->template->required_plugins['compiled'][$plugin_name]['modifier'])) {\r
+ $this->template->required_plugins['nocache'][$plugin_name]['modifier'] = $this->template->required_plugins['compiled'][$plugin_name]['modifier'];\r
}\r
- $this->template->saved_modifier = null;\r
}\r
} else {\r
$_output = $content;\r
$this->tag_nocache = false;\r
return $_output;\r
}\r
+\r
/**\r
* display compiler error messages without dying\r
*\r
*\r
* If parameter $args contains a string this is used as error message\r
*\r
- * @param $args string individual error message or null\r
+ * @param string $args individual error message or null\r
+ * @param string $line line-number\r
+ * @throws SmartyCompilerException when an unexpected token is found\r
*/\r
public function trigger_template_error($args = null, $line = null)\r
{\r
$line = $this->lex->line;\r
}\r
$match = preg_split("/\n/", $this->lex->data);\r
- $error_text = 'Syntax Error in template "' . $this->template->getTemplateFilepath() . '" on line ' . $line . ' "' . htmlspecialchars(trim(preg_replace('![\t\r\n]+!',' ',$match[$line-1]))) . '" ';\r
+ $error_text = 'Syntax Error in template "' . $this->template->source->filepath . '" on line ' . $line . ' "' . htmlspecialchars(trim(preg_replace('![\t\r\n]+!',' ',$match[$line-1]))) . '" ';\r
if (isset($args)) {\r
// individual error message\r
$error_text .= $args;\r
// expected token from parser\r
$error_text .= ' - Unexpected "' . $this->lex->value.'"';\r
if (count($this->parser->yy_get_expected_tokens($this->parser->yymajor)) <= 4 ) {\r
- foreach ($this->parser->yy_get_expected_tokens($this->parser->yymajor) as $token) {\r
- $exp_token = $this->parser->yyTokenName[$token];\r
- if (isset($this->lex->smarty_token_names[$exp_token])) {\r
- // token type from lexer\r
- $expect[] = '"' . $this->lex->smarty_token_names[$exp_token] . '"';\r
- } else {\r
- // otherwise internal token name\r
- $expect[] = $this->parser->yyTokenName[$token];\r
- }\r
- }\r
- $error_text .= ', expected one of: ' . implode(' , ', $expect);\r
- }\r
+ foreach ($this->parser->yy_get_expected_tokens($this->parser->yymajor) as $token) {\r
+ $exp_token = $this->parser->yyTokenName[$token];\r
+ if (isset($this->lex->smarty_token_names[$exp_token])) {\r
+ // token type from lexer\r
+ $expect[] = '"' . $this->lex->smarty_token_names[$exp_token] . '"';\r
+ } else {\r
+ // otherwise internal token name\r
+ $expect[] = $this->parser->yyTokenName[$token];\r
+ }\r
+ }\r
+ $error_text .= ', expected one of: ' . implode(' , ', $expect);\r
+ }\r
}\r
throw new SmartyCompilerException($error_text);\r
}\r
+\r
}\r
\r
?>
\ No newline at end of file
diff --git a/gosa-core/include/smarty/sysplugins/smarty_internal_templatelexer.php b/gosa-core/include/smarty/sysplugins/smarty_internal_templatelexer.php
index 09bd67a302b6b8abad2f75a8adedc01396b12b80..131153dacd8aef86113400cf1fe2275d9101673c 100644 (file)
'LITERALEND' => 'Literal end',
'LDELSLASH' => 'closing tag',
'COMMENT' => 'comment',
- 'LITERALEND' => 'literal close',
'AS' => 'as',
'TO' => 'to',
);
$this->rdel = preg_quote($this->smarty->right_delimiter,'/');
$this->smarty_token_names['LDEL'] = $this->smarty->left_delimiter;
$this->smarty_token_names['RDEL'] = $this->smarty->right_delimiter;
+ $this->mbstring_overload = ini_get('mbstring.func_overload') & 2;
}
20 => 0,
21 => 0,
22 => 0,
- 23 => 2,
- 26 => 0,
+ 23 => 0,
+ 24 => 2,
27 => 0,
+ 28 => 0,
);
if ($this->counter >= strlen($this->data)) {
return false; // end of input
}
- $yy_global_pattern = "/^(".$this->ldel."[$]smarty\\.block\\.child".$this->rdel.")|^(\\{\\})|^(".$this->ldel."\\*([\S\s]*?)\\*".$this->rdel.")|^([\t ]*[\r\n]+[\t ]*)|^(".$this->ldel."strip".$this->rdel.")|^(".$this->ldel."\\s{1,}strip\\s{1,}".$this->rdel.")|^(".$this->ldel."\/strip".$this->rdel.")|^(".$this->ldel."\\s{1,}\/strip\\s{1,}".$this->rdel.")|^(".$this->ldel."\\s*literal\\s*".$this->rdel.")|^(".$this->ldel."\\s{1,}\/)|^(".$this->ldel."\\s*(if|elseif|else if|while)\\s+)|^(".$this->ldel."\\s*for\\s+)|^(".$this->ldel."\\s*foreach(?![^\s]))|^(".$this->ldel."\\s{1,})|^(".$this->ldel."\/)|^(".$this->ldel.")|^(<\\?(?:php\\w+|=|[a-zA-Z]+)?)|^(\\?>)|^(<%)|^(%>)|^(([\S\s]*?)(?=([\t ]*[\r\n]+[\t ]*|".$this->ldel."|<\\?|\\?>|<%|%>)))|^([\S\s]+)|^(.)/iS";
+ $yy_global_pattern = "/\G(".$this->ldel."[$]smarty\\.block\\.child".$this->rdel.")|\G(\\{\\})|\G(".$this->ldel."\\*([\S\s]*?)\\*".$this->rdel.")|\G([\t ]*[\r\n]+[\t ]*)|\G(".$this->ldel."strip".$this->rdel.")|\G(".$this->ldel."\\s{1,}strip\\s{1,}".$this->rdel.")|\G(".$this->ldel."\/strip".$this->rdel.")|\G(".$this->ldel."\\s{1,}\/strip\\s{1,}".$this->rdel.")|\G(".$this->ldel."\\s*literal\\s*".$this->rdel.")|\G(".$this->ldel."\\s{1,}\/)|\G(".$this->ldel."\\s*(if|elseif|else if|while)\\s+)|\G(".$this->ldel."\\s*for\\s+)|\G(".$this->ldel."\\s*foreach(?![^\s]))|\G(".$this->ldel."\\s*setfilter\\s+)|\G(".$this->ldel."\\s{1,})|\G(".$this->ldel."\/)|\G(".$this->ldel.")|\G(<\\?(?:php\\w+|=|[a-zA-Z]+)?)|\G(\\?>)|\G(<%)|\G(%>)|\G(([\S\s]*?)(?=([\t ]*[\r\n]+[\t ]*|".$this->ldel."|<\\?|\\?>|<%|%>)))|\G([\S\s]+)|\G(.)/iS";
do {
- if (preg_match($yy_global_pattern, substr($this->data, $this->counter), $yymatches)) {
+ if ($this->mbstring_overload ? preg_match($yy_global_pattern, substr($this->data, $this->counter), $yymatches) : preg_match($yy_global_pattern,$this->data, $yymatches, null, $this->counter)) {
$yysubmatches = $yymatches;
$yymatches = array_filter($yymatches, 'strlen'); // remove empty sub-patterns
if (!count($yymatches)) {
throw new Exception('Error: lexing failed because a rule matched' .
- 'an empty string. Input "' . substr($this->data,
+ ' an empty string. Input "' . substr($this->data,
$this->counter, 5) . '... state TEXT');
}
next($yymatches); // skip global match
function yy_r1_16($yy_subpatterns)
{
+ if ($this->smarty->auto_literal && trim(substr($this->value,$this->ldel_length,1)) == '') {
+ $this->token = Smarty_Internal_Templateparser::TP_OTHER;
+ } else {
+ $this->token = Smarty_Internal_Templateparser::TP_LDELSETFILTER;
+ $this->yypushstate(self::SMARTY);
+ $this->taglineno = $this->line;
+ }
+ }
+ function yy_r1_17($yy_subpatterns)
+ {
+
if ($this->smarty->auto_literal) {
$this->token = Smarty_Internal_Templateparser::TP_OTHER;
} else {
$this->taglineno = $this->line;
}
}
- function yy_r1_17($yy_subpatterns)
+ function yy_r1_18($yy_subpatterns)
{
$this->token = Smarty_Internal_Templateparser::TP_LDELSLASH;
$this->yypushstate(self::SMARTY);
$this->taglineno = $this->line;
}
- function yy_r1_18($yy_subpatterns)
+ function yy_r1_19($yy_subpatterns)
{
$this->token = Smarty_Internal_Templateparser::TP_LDEL;
$this->yypushstate(self::SMARTY);
$this->taglineno = $this->line;
}
- function yy_r1_19($yy_subpatterns)
+ function yy_r1_20($yy_subpatterns)
{
if (in_array($this->value, Array('<?', '<?=', '<?php'))) {
$this->value = substr($this->value, 0, 2);
}
}
- function yy_r1_20($yy_subpatterns)
+ function yy_r1_21($yy_subpatterns)
{
$this->token = Smarty_Internal_Templateparser::TP_PHPENDTAG;
}
- function yy_r1_21($yy_subpatterns)
+ function yy_r1_22($yy_subpatterns)
{
$this->token = Smarty_Internal_Templateparser::TP_ASPSTARTTAG;
}
- function yy_r1_22($yy_subpatterns)
+ function yy_r1_23($yy_subpatterns)
{
$this->token = Smarty_Internal_Templateparser::TP_ASPENDTAG;
}
- function yy_r1_23($yy_subpatterns)
+ function yy_r1_24($yy_subpatterns)
{
$this->token = Smarty_Internal_Templateparser::TP_OTHER;
}
- function yy_r1_26($yy_subpatterns)
+ function yy_r1_27($yy_subpatterns)
{
$this->token = Smarty_Internal_Templateparser::TP_OTHER;
}
- function yy_r1_27($yy_subpatterns)
+ function yy_r1_28($yy_subpatterns)
{
$this->token = Smarty_Internal_Templateparser::TP_OTHER;
if ($this->counter >= strlen($this->data)) {
return false; // end of input
}
- $yy_global_pattern = "/^('[^'\\\\]*(?:\\\\.[^'\\\\]*)*')|^(".$this->ldel."\\s{1,}\/)|^(".$this->ldel."\\s*(if|elseif|else if|while)\\s+)|^(".$this->ldel."\\s*for\\s+)|^(".$this->ldel."\\s*foreach(?![^\s]))|^(".$this->ldel."\\s{1,})|^(\\s{1,}".$this->rdel.")|^(".$this->ldel."\/)|^(".$this->ldel.")|^(".$this->rdel.")|^(\\s+is\\s+in\\s+)|^(\\s+as\\s+)|^(\\s+to\\s+)|^(\\s+step\\s+)|^(\\s+instanceof\\s+)|^(\\s*===\\s*)|^(\\s*!==\\s*)|^(\\s*==\\s*|\\s+eq\\s+)|^(\\s*!=\\s*|\\s*<>\\s*|\\s+(ne|neq)\\s+)|^(\\s*>=\\s*|\\s+(ge|gte)\\s+)|^(\\s*<=\\s*|\\s+(le|lte)\\s+)|^(\\s*>\\s*|\\s+gt\\s+)|^(\\s*<\\s*|\\s+lt\\s+)|^(\\s+mod\\s+)|^(!\\s*|not\\s+)|^(\\s*&&\\s*|\\s*and\\s+)|^(\\s*\\|\\|\\s*|\\s*or\\s+)|^(\\s*xor\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\)\\s*)|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\+\\+|--)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(0[xX][0-9a-fA-F]+)|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)/iS";
+ $yy_global_pattern = "/\G('[^'\\\\]*(?:\\\\.[^'\\\\]*)*')|\G(".$this->ldel."\\s{1,}\/)|\G(".$this->ldel."\\s*(if|elseif|else if|while)\\s+)|\G(".$this->ldel."\\s*for\\s+)|\G(".$this->ldel."\\s*foreach(?![^\s]))|\G(".$this->ldel."\\s{1,})|\G(\\s{1,}".$this->rdel.")|\G(".$this->ldel."\/)|\G(".$this->ldel.")|\G(".$this->rdel.")|\G(\\s+is\\s+in\\s+)|\G(\\s+as\\s+)|\G(\\s+to\\s+)|\G(\\s+step\\s+)|\G(\\s+instanceof\\s+)|\G(\\s*===\\s*)|\G(\\s*!==\\s*)|\G(\\s*==\\s*|\\s+eq\\s+)|\G(\\s*!=\\s*|\\s*<>\\s*|\\s+(ne|neq)\\s+)|\G(\\s*>=\\s*|\\s+(ge|gte)\\s+)|\G(\\s*<=\\s*|\\s+(le|lte)\\s+)|\G(\\s*>\\s*|\\s+gt\\s+)|\G(\\s*<\\s*|\\s+lt\\s+)|\G(\\s+mod\\s+)|\G(!\\s*|not\\s+)|\G(\\s*&&\\s*|\\s*and\\s+)|\G(\\s*\\|\\|\\s*|\\s*or\\s+)|\G(\\s*xor\\s+)|\G(\\s+is\\s+odd\\s+by\\s+)|\G(\\s+is\\s+not\\s+odd\\s+by\\s+)|\G(\\s+is\\s+odd)|\G(\\s+is\\s+not\\s+odd)|\G(\\s+is\\s+even\\s+by\\s+)|\G(\\s+is\\s+not\\s+even\\s+by\\s+)|\G(\\s+is\\s+even)|\G(\\s+is\\s+not\\s+even)|\G(\\s+is\\s+div\\s+by\\s+)|\G(\\s+is\\s+not\\s+div\\s+by\\s+)|\G(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\)\\s*)|\G(\\(\\s*)|\G(\\s*\\))|\G(\\[\\s*)|\G(\\s*\\])|\G(\\s*->\\s*)|\G(\\s*=>\\s*)|\G(\\s*=\\s*)|\G(\\+\\+|--)|\G(\\s*(\\+|-)\\s*)|\G(\\s*(\\*|\/|%)\\s*)|\G(\\$)|\G(\\s*;)|\G(::)|\G(\\s*:\\s*)|\G(@)|\G(#)|\G(\")|\G(`)|\G(\\|)|\G(\\.)|\G(\\s*,\\s*)|\G(\\s*&\\s*)|\G(\\s*\\?\\s*)|\G(0[xX][0-9a-fA-F]+)|\G([0-9]*[a-zA-Z_]\\w*)|\G(\\d+)|\G(\\s+)|\G(.)/iS";
do {
- if (preg_match($yy_global_pattern, substr($this->data, $this->counter), $yymatches)) {
+ if ($this->mbstring_overload ? preg_match($yy_global_pattern, substr($this->data, $this->counter), $yymatches) : preg_match($yy_global_pattern,$this->data, $yymatches, null, $this->counter)) {
$yysubmatches = $yymatches;
$yymatches = array_filter($yymatches, 'strlen'); // remove empty sub-patterns
if (!count($yymatches)) {
throw new Exception('Error: lexing failed because a rule matched' .
- 'an empty string. Input "' . substr($this->data,
+ ' an empty string. Input "' . substr($this->data,
$this->counter, 5) . '... state SMARTY');
}
next($yymatches); // skip global match
function yy_r2_8($yy_subpatterns)
{
- $this->token = Smarty_Internal_Templateparser::TP_RDEL;
- $this->yypopstate();
+ $this->token = Smarty_Internal_Templateparser::TP_RDEL;
+ $this->yypopstate();
}
function yy_r2_9($yy_subpatterns)
{
if ($this->counter >= strlen($this->data)) {
return false; // end of input
}
- $yy_global_pattern = "/^(".$this->ldel."\\s*literal\\s*".$this->rdel.")|^(".$this->ldel."\\s*\/literal\\s*".$this->rdel.")|^([\t ]*[\r\n]+[\t ]*)|^(<\\?(?:php\\w+|=|[a-zA-Z]+)?)|^(\\?>)|^(<%)|^(%>)|^(([\S\s]*?)(?=([\t ]*[\r\n]+[\t ]*|".$this->ldel."\/?literal".$this->rdel."|<\\?|<%)))|^(.)/iS";
+ $yy_global_pattern = "/\G(".$this->ldel."\\s*literal\\s*".$this->rdel.")|\G(".$this->ldel."\\s*\/literal\\s*".$this->rdel.")|\G([\t ]*[\r\n]+[\t ]*)|\G(<\\?(?:php\\w+|=|[a-zA-Z]+)?)|\G(\\?>)|\G(<%)|\G(%>)|\G(([\S\s]*?)(?=([\t ]*[\r\n]+[\t ]*|".$this->ldel."\/?literal".$this->rdel."|<\\?|<%)))|\G(.)/iS";
do {
- if (preg_match($yy_global_pattern, substr($this->data, $this->counter), $yymatches)) {
+ if ($this->mbstring_overload ? preg_match($yy_global_pattern, substr($this->data, $this->counter), $yymatches) : preg_match($yy_global_pattern,$this->data, $yymatches, null, $this->counter)) {
$yysubmatches = $yymatches;
$yymatches = array_filter($yymatches, 'strlen'); // remove empty sub-patterns
if (!count($yymatches)) {
throw new Exception('Error: lexing failed because a rule matched' .
- 'an empty string. Input "' . substr($this->data,
+ ' an empty string. Input "' . substr($this->data,
$this->counter, 5) . '... state LITERAL');
}
next($yymatches); // skip global match
if ($this->counter >= strlen($this->data)) {
return false; // end of input
}
- $yy_global_pattern = "/^(".$this->ldel."\\s{1,}\/)|^(".$this->ldel."\\s*(if|elseif|else if|while)\\s+)|^(".$this->ldel."\\s*for\\s+)|^(".$this->ldel."\\s*foreach(?![^\s]))|^(".$this->ldel."\\s{1,})|^(".$this->ldel."\/)|^(".$this->ldel.")|^(\")|^(`\\$)|^(\\$[0-9]*[a-zA-Z_]\\w*)|^(\\$)|^(([^\"\\\\]*?)((?:\\\\.[^\"\\\\]*?)*?)(?=(".$this->ldel."|\\$|`\\$|\")))|^([\S\s]+)|^(.)/iS";
+ $yy_global_pattern = "/\G(".$this->ldel."\\s{1,}\/)|\G(".$this->ldel."\\s*(if|elseif|else if|while)\\s+)|\G(".$this->ldel."\\s*for\\s+)|\G(".$this->ldel."\\s*foreach(?![^\s]))|\G(".$this->ldel."\\s{1,})|\G(".$this->ldel."\/)|\G(".$this->ldel.")|\G(\")|\G(`\\$)|\G(\\$[0-9]*[a-zA-Z_]\\w*)|\G(\\$)|\G(([^\"\\\\]*?)((?:\\\\.[^\"\\\\]*?)*?)(?=(".$this->ldel."|\\$|`\\$|\")))|\G([\S\s]+)|\G(.)/iS";
do {
- if (preg_match($yy_global_pattern, substr($this->data, $this->counter), $yymatches)) {
+ if ($this->mbstring_overload ? preg_match($yy_global_pattern, substr($this->data, $this->counter), $yymatches) : preg_match($yy_global_pattern,$this->data, $yymatches, null, $this->counter)) {
$yysubmatches = $yymatches;
$yymatches = array_filter($yymatches, 'strlen'); // remove empty sub-patterns
if (!count($yymatches)) {
throw new Exception('Error: lexing failed because a rule matched' .
- 'an empty string. Input "' . substr($this->data,
+ ' an empty string. Input "' . substr($this->data,
$this->counter, 5) . '... state DOUBLEQUOTEDSTRING');
}
next($yymatches); // skip global match
diff --git a/gosa-core/include/smarty/sysplugins/smarty_internal_templateparser.php b/gosa-core/include/smarty/sysplugins/smarty_internal_templateparser.php
index 18c35a87c8965683d2e628d8198a5888ba1ec1b3..6dfdeeffecaf5ee158b50ed51ab6d92d7ff19d81 100644 (file)
{
#line 14 "smarty_internal_templateparser.y"
- const Err1 = "Security error: Call to private object member not allowed";
- const Err2 = "Security error: Call to dynamic object member not allowed";
+ const Err1 = "Security error: Call to private object member not allowed";
+ const Err2 = "Security error: Call to dynamic object member not allowed";
+ const Err3 = "PHP in template not allowed. Use SmartyBC to enable it";
// states whether the parse was successful or not
public $successful = true;
public $retvalue = 0;
@@ -102,30 +103,39 @@ class Smarty_Internal_Templateparser#line 79 "smarty_internal_templateparser.php
$this->smarty = $this->compiler->smarty;
$this->template = $this->compiler->template;
$this->compiler->has_variable_string = false;
- $this->compiler->prefix_code = array();
- $this->prefix_number = 0;
- $this->block_nesting_level = 0;
- if ($this->security = isset($this->smarty->security_policy)) {
- $this->php_handling = $this->smarty->security_policy->php_handling;
+ $this->compiler->prefix_code = array();
+ $this->prefix_number = 0;
+ $this->block_nesting_level = 0;
+ if ($this->security = isset($this->smarty->security_policy)) {
+ $this->php_handling = $this->smarty->security_policy->php_handling;
} else {
- $this->php_handling = $this->smarty->php_handling;
+ $this->php_handling = $this->smarty->php_handling;
}
- $this->is_xml = false;
- $this->asp_tags = (ini_get('asp_tags') != '0');
- $this->current_buffer = $this->root_buffer = new _smarty_template_buffer($this);
+ $this->is_xml = false;
+ $this->asp_tags = (ini_get('asp_tags') != '0');
+ $this->current_buffer = $this->root_buffer = new _smarty_template_buffer($this);
}
public static function escape_start_tag($tag_text) {
- $tag = preg_replace('/\A<\?(.*)\z/', '<<?php ?>?\1', $tag_text, -1 , $count); //Escape tag
- return $tag;
+ $tag = preg_replace('/\A<\?(.*)\z/', '<<?php ?>?\1', $tag_text, -1 , $count); //Escape tag
+ return $tag;
}
public static function escape_end_tag($tag_text) {
- return '?<?php ?>>';
+ return '?<?php ?>>';
}
-
-#line 121 "smarty_internal_templateparser.php"
+ public function compileVariable($variable) {
+ if (strpos($variable,'(') == 0) {
+ // not a variable variable
+ $var = trim($variable,'\'');
+ $this->compiler->tag_nocache=$this->compiler->tag_nocache|$this->template->getVariable($var, null, true, false)->nocache;
+ $this->template->properties['variables'][$var] = $this->compiler->tag_nocache|$this->compiler->nocache;
+ }
+// return '(isset($_smarty_tpl->tpl_vars['. $variable .'])?$_smarty_tpl->tpl_vars['. $variable .']->value:$_smarty_tpl->getVariable('. $variable .')->value)';
+ return '$_smarty_tpl->tpl_vars['. $variable .']->value';
+ }
+#line 131 "smarty_internal_templateparser.php"
const TP_VERT = 1;
const TP_COLON = 2;
@@ -157,899 +167,852 @@ class Smarty_Internal_Templateparser#line 79 "smarty_internal_templateparser.php
const TP_SPACE = 28;
const TP_AS = 29;
const TP_APTR = 30;
- const TP_SMARTYBLOCKCHILD = 31;
- const TP_LDELSLASH = 32;
- const TP_INTEGER = 33;
- const TP_COMMA = 34;
- const TP_OPENP = 35;
- const TP_CLOSEP = 36;
- const TP_MATH = 37;
- const TP_UNIMATH = 38;
- const TP_ANDSYM = 39;
- const TP_ISIN = 40;
- const TP_ISDIVBY = 41;
- const TP_ISNOTDIVBY = 42;
- const TP_ISEVEN = 43;
- const TP_ISNOTEVEN = 44;
- const TP_ISEVENBY = 45;
- const TP_ISNOTEVENBY = 46;
- const TP_ISODD = 47;
- const TP_ISNOTODD = 48;
- const TP_ISODDBY = 49;
- const TP_ISNOTODDBY = 50;
- const TP_INSTANCEOF = 51;
- const TP_QMARK = 52;
- const TP_NOT = 53;
- const TP_TYPECAST = 54;
- const TP_HEX = 55;
- const TP_DOT = 56;
- const TP_SINGLEQUOTESTRING = 57;
- const TP_DOUBLECOLON = 58;
- const TP_AT = 59;
- const TP_HATCH = 60;
- const TP_OPENB = 61;
- const TP_CLOSEB = 62;
- const TP_EQUALS = 63;
- const TP_NOTEQUALS = 64;
- const TP_GREATERTHAN = 65;
- const TP_LESSTHAN = 66;
- const TP_GREATEREQUAL = 67;
- const TP_LESSEQUAL = 68;
- const TP_IDENTITY = 69;
- const TP_NONEIDENTITY = 70;
- const TP_MOD = 71;
- const TP_LAND = 72;
- const TP_LOR = 73;
- const TP_LXOR = 74;
- const TP_QUOTE = 75;
- const TP_BACKTICK = 76;
- const TP_DOLLARID = 77;
+ const TP_LDELSETFILTER = 31;
+ const TP_SMARTYBLOCKCHILD = 32;
+ const TP_LDELSLASH = 33;
+ const TP_INTEGER = 34;
+ const TP_COMMA = 35;
+ const TP_OPENP = 36;
+ const TP_CLOSEP = 37;
+ const TP_MATH = 38;
+ const TP_UNIMATH = 39;
+ const TP_ANDSYM = 40;
+ const TP_ISIN = 41;
+ const TP_ISDIVBY = 42;
+ const TP_ISNOTDIVBY = 43;
+ const TP_ISEVEN = 44;
+ const TP_ISNOTEVEN = 45;
+ const TP_ISEVENBY = 46;
+ const TP_ISNOTEVENBY = 47;
+ const TP_ISODD = 48;
+ const TP_ISNOTODD = 49;
+ const TP_ISODDBY = 50;
+ const TP_ISNOTODDBY = 51;
+ const TP_INSTANCEOF = 52;
+ const TP_QMARK = 53;
+ const TP_NOT = 54;
+ const TP_TYPECAST = 55;
+ const TP_HEX = 56;
+ const TP_DOT = 57;
+ const TP_SINGLEQUOTESTRING = 58;
+ const TP_DOUBLECOLON = 59;
+ const TP_AT = 60;
+ const TP_HATCH = 61;
+ const TP_OPENB = 62;
+ const TP_CLOSEB = 63;
+ const TP_EQUALS = 64;
+ const TP_NOTEQUALS = 65;
+ const TP_GREATERTHAN = 66;
+ const TP_LESSTHAN = 67;
+ const TP_GREATEREQUAL = 68;
+ const TP_LESSEQUAL = 69;
+ const TP_IDENTITY = 70;
+ const TP_NONEIDENTITY = 71;
+ const TP_MOD = 72;
+ const TP_LAND = 73;
+ const TP_LOR = 74;
+ const TP_LXOR = 75;
+ const TP_QUOTE = 76;
+ const TP_BACKTICK = 77;
+ const TP_DOLLARID = 78;
const YY_NO_ACTION = 590;
const YY_ACCEPT_ACTION = 589;
const YY_ERROR_ACTION = 588;
- const YY_SZ_ACTTAB = 2637;
+ const YY_SZ_ACTTAB = 2393;
static public $yy_action = array(
- /* 0 */ 223, 300, 294, 293, 288, 287, 286, 290, 291, 301,
- /* 10 */ 197, 13, 211, 40, 283, 373, 284, 8, 13, 7,
- /* 20 */ 107, 283, 41, 203, 16, 147, 234, 16, 16, 276,
- /* 30 */ 245, 589, 97, 296, 297, 299, 50, 46, 48, 45,
- /* 40 */ 14, 28, 330, 352, 38, 32, 353, 371, 36, 34,
- /* 50 */ 223, 311, 306, 307, 285, 303, 295, 297, 299, 197,
- /* 60 */ 312, 316, 379, 359, 358, 357, 366, 319, 274, 270,
- /* 70 */ 267, 255, 256, 258, 362, 35, 21, 16, 141, 169,
- /* 80 */ 223, 199, 17, 3, 146, 337, 50, 46, 48, 45,
- /* 90 */ 14, 28, 330, 352, 38, 32, 353, 371, 36, 34,
- /* 100 */ 341, 109, 180, 25, 242, 161, 137, 206, 3, 26,
- /* 110 */ 360, 259, 379, 359, 358, 357, 366, 319, 274, 270,
- /* 120 */ 267, 255, 256, 258, 223, 304, 347, 206, 172, 142,
- /* 130 */ 47, 137, 244, 75, 127, 454, 262, 259, 19, 356,
- /* 140 */ 13, 329, 266, 283, 41, 343, 321, 454, 310, 104,
- /* 150 */ 163, 16, 383, 203, 3, 217, 236, 237, 220, 259,
- /* 160 */ 50, 46, 48, 45, 14, 28, 330, 352, 38, 32,
- /* 170 */ 353, 371, 36, 34, 191, 206, 13, 137, 4, 283,
- /* 180 */ 24, 200, 332, 259, 227, 263, 379, 359, 358, 357,
- /* 190 */ 366, 319, 274, 270, 267, 255, 256, 258, 223, 304,
- /* 200 */ 110, 162, 223, 142, 192, 332, 244, 75, 127, 451,
- /* 210 */ 259, 13, 223, 260, 283, 329, 266, 384, 161, 343,
- /* 220 */ 321, 451, 310, 108, 183, 16, 206, 268, 3, 216,
- /* 230 */ 27, 246, 174, 259, 50, 46, 48, 45, 14, 28,
- /* 240 */ 330, 352, 38, 32, 353, 371, 36, 34, 173, 206,
- /* 250 */ 5, 137, 47, 13, 211, 227, 283, 259, 381, 8,
- /* 260 */ 379, 359, 358, 357, 366, 319, 274, 270, 267, 255,
- /* 270 */ 256, 258, 223, 304, 170, 181, 324, 142, 196, 332,
- /* 280 */ 244, 66, 118, 238, 259, 13, 335, 204, 283, 329,
- /* 290 */ 266, 39, 161, 343, 321, 281, 310, 243, 16, 232,
- /* 300 */ 239, 3, 23, 23, 386, 365, 251, 231, 50, 46,
- /* 310 */ 48, 45, 14, 28, 330, 352, 38, 32, 353, 371,
- /* 320 */ 36, 34, 111, 326, 137, 23, 13, 376, 223, 283,
- /* 330 */ 136, 198, 42, 161, 379, 359, 358, 357, 366, 319,
- /* 340 */ 274, 270, 267, 255, 256, 258, 223, 304, 166, 188,
- /* 350 */ 178, 142, 281, 298, 244, 75, 127, 259, 259, 13,
- /* 360 */ 223, 368, 283, 329, 266, 16, 278, 343, 321, 281,
- /* 370 */ 310, 136, 16, 203, 2, 272, 13, 215, 16, 252,
- /* 380 */ 138, 247, 50, 46, 48, 45, 14, 28, 330, 352,
- /* 390 */ 38, 32, 353, 371, 36, 34, 223, 177, 317, 223,
- /* 400 */ 314, 190, 327, 236, 238, 248, 259, 148, 379, 359,
- /* 410 */ 358, 357, 366, 319, 274, 270, 267, 255, 256, 258,
- /* 420 */ 195, 310, 203, 106, 236, 261, 13, 206, 184, 218,
- /* 430 */ 103, 250, 50, 46, 48, 45, 14, 28, 330, 352,
- /* 440 */ 38, 32, 353, 371, 36, 34, 223, 22, 176, 47,
- /* 450 */ 235, 362, 132, 13, 206, 320, 226, 259, 379, 359,
- /* 460 */ 358, 357, 366, 319, 274, 270, 267, 255, 256, 258,
- /* 470 */ 133, 322, 185, 203, 13, 223, 345, 230, 149, 241,
- /* 480 */ 145, 259, 50, 46, 48, 45, 14, 28, 330, 352,
- /* 490 */ 38, 32, 353, 371, 36, 34, 223, 203, 175, 134,
- /* 500 */ 281, 354, 16, 121, 131, 37, 202, 119, 379, 359,
- /* 510 */ 358, 357, 366, 319, 274, 270, 267, 255, 256, 258,
- /* 520 */ 338, 171, 377, 96, 382, 385, 305, 31, 328, 149,
- /* 530 */ 259, 367, 50, 46, 48, 45, 14, 28, 330, 352,
- /* 540 */ 38, 32, 353, 371, 36, 34, 223, 224, 9, 374,
- /* 550 */ 228, 140, 5, 129, 42, 139, 372, 370, 379, 359,
- /* 560 */ 358, 357, 366, 319, 274, 270, 267, 255, 256, 258,
- /* 570 */ 193, 309, 168, 279, 324, 12, 281, 20, 16, 44,
- /* 580 */ 378, 135, 50, 46, 48, 45, 14, 28, 330, 352,
- /* 590 */ 38, 32, 353, 371, 36, 34, 223, 112, 313, 323,
- /* 600 */ 323, 323, 323, 323, 323, 323, 323, 99, 379, 359,
- /* 610 */ 358, 357, 366, 319, 274, 270, 267, 255, 256, 258,
- /* 620 */ 338, 348, 323, 16, 323, 323, 323, 323, 323, 323,
- /* 630 */ 323, 323, 50, 46, 48, 45, 14, 28, 330, 352,
- /* 640 */ 38, 32, 353, 371, 36, 34, 323, 323, 323, 323,
- /* 650 */ 323, 323, 323, 323, 323, 323, 323, 323, 379, 359,
- /* 660 */ 358, 357, 366, 319, 274, 270, 267, 255, 256, 258,
- /* 670 */ 223, 223, 323, 304, 101, 165, 223, 142, 228, 323,
- /* 680 */ 244, 53, 118, 126, 259, 11, 456, 29, 15, 329,
- /* 690 */ 266, 456, 201, 343, 321, 30, 310, 323, 456, 233,
- /* 700 */ 206, 323, 323, 456, 323, 223, 50, 46, 48, 45,
- /* 710 */ 14, 28, 330, 352, 38, 32, 353, 371, 36, 34,
- /* 720 */ 269, 47, 224, 323, 323, 323, 47, 323, 323, 323,
- /* 730 */ 323, 323, 379, 359, 358, 357, 366, 319, 274, 270,
- /* 740 */ 267, 255, 256, 258, 223, 323, 323, 323, 194, 186,
- /* 750 */ 323, 257, 363, 289, 323, 325, 264, 254, 259, 205,
- /* 760 */ 43, 29, 15, 16, 16, 16, 7, 107, 16, 16,
- /* 770 */ 323, 323, 147, 323, 206, 323, 276, 245, 323, 323,
- /* 780 */ 50, 46, 48, 45, 14, 28, 330, 352, 38, 32,
- /* 790 */ 353, 371, 36, 34, 223, 323, 323, 323, 323, 323,
- /* 800 */ 323, 323, 323, 323, 323, 124, 379, 359, 358, 357,
- /* 810 */ 366, 319, 274, 270, 267, 255, 256, 258, 338, 323,
- /* 820 */ 344, 18, 336, 323, 323, 323, 323, 323, 323, 323,
- /* 830 */ 50, 46, 48, 45, 14, 28, 330, 352, 38, 32,
- /* 840 */ 353, 371, 36, 34, 323, 323, 323, 323, 323, 323,
- /* 850 */ 323, 323, 323, 323, 323, 369, 379, 359, 358, 357,
- /* 860 */ 366, 319, 274, 270, 267, 255, 256, 258, 223, 304,
- /* 870 */ 323, 164, 361, 142, 323, 339, 244, 80, 127, 167,
- /* 880 */ 259, 342, 375, 275, 16, 329, 266, 16, 259, 343,
- /* 890 */ 321, 281, 310, 16, 16, 323, 323, 323, 323, 281,
- /* 900 */ 323, 323, 323, 323, 50, 46, 48, 45, 14, 28,
- /* 910 */ 330, 352, 38, 32, 353, 371, 36, 34, 223, 323,
- /* 920 */ 323, 323, 323, 323, 323, 323, 323, 323, 323, 117,
- /* 930 */ 379, 359, 358, 357, 366, 319, 274, 270, 267, 255,
- /* 940 */ 256, 258, 338, 323, 323, 323, 240, 323, 323, 323,
- /* 950 */ 323, 323, 323, 323, 50, 46, 48, 45, 14, 28,
- /* 960 */ 330, 352, 38, 32, 353, 371, 36, 34, 223, 323,
- /* 970 */ 323, 323, 323, 323, 323, 323, 323, 323, 323, 102,
- /* 980 */ 379, 359, 358, 357, 366, 319, 274, 270, 267, 255,
- /* 990 */ 256, 258, 338, 323, 323, 323, 323, 323, 323, 323,
- /* 1000 */ 323, 323, 323, 323, 50, 46, 48, 45, 14, 28,
- /* 1010 */ 330, 352, 38, 32, 353, 371, 36, 34, 323, 335,
- /* 1020 */ 323, 323, 323, 323, 323, 323, 161, 323, 323, 323,
- /* 1030 */ 379, 359, 358, 357, 366, 319, 274, 270, 267, 255,
- /* 1040 */ 256, 258, 50, 46, 48, 45, 14, 28, 330, 352,
- /* 1050 */ 38, 32, 353, 371, 36, 34, 351, 323, 323, 323,
- /* 1060 */ 323, 323, 323, 323, 136, 323, 223, 323, 379, 359,
- /* 1070 */ 358, 357, 366, 319, 274, 270, 267, 255, 256, 258,
- /* 1080 */ 150, 271, 160, 323, 40, 323, 143, 210, 323, 323,
- /* 1090 */ 7, 107, 281, 302, 253, 338, 147, 323, 325, 323,
- /* 1100 */ 276, 245, 229, 43, 33, 16, 16, 51, 323, 7,
- /* 1110 */ 107, 323, 323, 323, 323, 147, 323, 323, 323, 276,
- /* 1120 */ 245, 194, 52, 49, 380, 225, 349, 105, 323, 106,
- /* 1130 */ 1, 355, 323, 223, 29, 15, 323, 280, 315, 40,
- /* 1140 */ 338, 143, 214, 223, 98, 7, 107, 206, 453, 16,
- /* 1150 */ 16, 147, 323, 323, 323, 276, 245, 229, 450, 33,
- /* 1160 */ 453, 265, 51, 350, 18, 336, 362, 304, 323, 115,
- /* 1170 */ 16, 152, 323, 16, 244, 323, 127, 52, 49, 380,
- /* 1180 */ 225, 349, 338, 47, 106, 1, 323, 343, 321, 223,
- /* 1190 */ 310, 318, 323, 323, 40, 323, 138, 214, 304, 98,
- /* 1200 */ 7, 107, 159, 16, 346, 244, 147, 127, 249, 323,
- /* 1210 */ 276, 245, 229, 340, 10, 273, 16, 51, 343, 321,
- /* 1220 */ 323, 310, 304, 3, 323, 16, 153, 323, 323, 244,
- /* 1230 */ 323, 127, 52, 49, 380, 225, 349, 323, 331, 106,
- /* 1240 */ 1, 323, 343, 321, 223, 310, 137, 223, 277, 40,
- /* 1250 */ 16, 128, 92, 223, 98, 7, 107, 323, 323, 450,
- /* 1260 */ 16, 147, 282, 323, 292, 276, 245, 229, 308, 33,
- /* 1270 */ 362, 16, 51, 323, 16, 16, 16, 304, 323, 144,
- /* 1280 */ 16, 157, 323, 323, 244, 323, 127, 52, 49, 380,
- /* 1290 */ 225, 349, 338, 323, 106, 1, 323, 343, 321, 100,
- /* 1300 */ 310, 323, 323, 47, 40, 323, 143, 212, 323, 98,
- /* 1310 */ 7, 107, 338, 323, 323, 323, 147, 323, 323, 323,
- /* 1320 */ 276, 245, 229, 323, 33, 323, 323, 51, 323, 323,
- /* 1330 */ 323, 323, 304, 323, 323, 323, 151, 323, 323, 244,
- /* 1340 */ 323, 127, 52, 49, 380, 225, 349, 323, 323, 106,
- /* 1350 */ 1, 323, 343, 321, 323, 310, 323, 323, 323, 40,
- /* 1360 */ 323, 125, 214, 323, 98, 7, 107, 323, 323, 323,
- /* 1370 */ 323, 147, 323, 323, 323, 276, 245, 229, 323, 33,
- /* 1380 */ 323, 323, 51, 323, 323, 323, 323, 304, 323, 323,
- /* 1390 */ 323, 155, 323, 323, 244, 323, 127, 52, 49, 380,
- /* 1400 */ 225, 349, 323, 323, 106, 1, 323, 343, 321, 323,
- /* 1410 */ 310, 323, 323, 323, 40, 323, 130, 214, 323, 98,
- /* 1420 */ 7, 107, 323, 323, 323, 323, 147, 323, 323, 323,
- /* 1430 */ 276, 245, 229, 323, 6, 323, 323, 51, 323, 323,
- /* 1440 */ 323, 323, 304, 323, 323, 323, 154, 323, 323, 244,
- /* 1450 */ 323, 127, 52, 49, 380, 225, 349, 323, 323, 106,
- /* 1460 */ 1, 323, 343, 321, 323, 310, 323, 323, 323, 40,
- /* 1470 */ 323, 143, 209, 323, 98, 7, 107, 323, 323, 323,
- /* 1480 */ 323, 147, 323, 323, 323, 276, 245, 229, 323, 33,
- /* 1490 */ 323, 323, 51, 323, 323, 323, 323, 304, 323, 323,
- /* 1500 */ 323, 158, 323, 323, 244, 323, 127, 52, 49, 380,
- /* 1510 */ 225, 349, 323, 323, 106, 1, 323, 343, 321, 323,
- /* 1520 */ 310, 323, 323, 323, 40, 323, 143, 208, 323, 98,
- /* 1530 */ 7, 107, 323, 323, 323, 323, 147, 323, 323, 323,
- /* 1540 */ 276, 245, 222, 323, 33, 323, 323, 51, 323, 323,
- /* 1550 */ 323, 323, 323, 323, 323, 323, 323, 323, 323, 323,
- /* 1560 */ 323, 323, 52, 49, 380, 225, 349, 323, 323, 106,
- /* 1570 */ 1, 323, 323, 323, 323, 323, 323, 323, 323, 40,
- /* 1580 */ 323, 143, 207, 323, 98, 7, 107, 323, 323, 323,
- /* 1590 */ 323, 147, 323, 323, 323, 276, 245, 229, 323, 33,
- /* 1600 */ 323, 323, 51, 323, 323, 323, 323, 323, 323, 323,
- /* 1610 */ 323, 323, 323, 323, 323, 323, 323, 52, 49, 380,
- /* 1620 */ 225, 349, 323, 323, 106, 1, 323, 323, 323, 323,
- /* 1630 */ 323, 323, 323, 323, 40, 323, 138, 214, 323, 98,
- /* 1640 */ 7, 107, 323, 323, 323, 323, 147, 323, 323, 323,
- /* 1650 */ 276, 245, 229, 323, 10, 323, 323, 51, 323, 323,
- /* 1660 */ 323, 323, 323, 323, 323, 323, 323, 194, 182, 323,
- /* 1670 */ 323, 323, 52, 49, 380, 225, 349, 259, 323, 106,
- /* 1680 */ 29, 15, 323, 323, 323, 323, 323, 323, 323, 40,
- /* 1690 */ 323, 138, 213, 206, 98, 7, 107, 323, 323, 323,
- /* 1700 */ 323, 147, 323, 323, 323, 276, 245, 229, 323, 10,
- /* 1710 */ 323, 323, 51, 323, 323, 323, 323, 323, 323, 323,
- /* 1720 */ 323, 323, 323, 323, 323, 323, 499, 52, 49, 380,
- /* 1730 */ 225, 349, 323, 499, 106, 499, 499, 323, 499, 499,
- /* 1740 */ 323, 323, 323, 323, 499, 3, 499, 323, 323, 98,
- /* 1750 */ 323, 323, 323, 323, 323, 323, 323, 323, 304, 323,
- /* 1760 */ 323, 499, 120, 323, 323, 244, 73, 127, 137, 323,
- /* 1770 */ 323, 323, 499, 323, 329, 266, 323, 323, 343, 321,
- /* 1780 */ 323, 310, 323, 323, 323, 323, 499, 323, 323, 323,
- /* 1790 */ 304, 323, 219, 334, 120, 323, 323, 244, 73, 127,
- /* 1800 */ 323, 323, 323, 323, 323, 323, 329, 266, 323, 323,
- /* 1810 */ 343, 321, 304, 310, 323, 323, 114, 323, 323, 244,
- /* 1820 */ 77, 127, 323, 323, 323, 333, 194, 187, 329, 266,
- /* 1830 */ 323, 323, 343, 321, 323, 310, 259, 323, 323, 29,
- /* 1840 */ 15, 304, 323, 323, 323, 142, 323, 323, 221, 68,
- /* 1850 */ 127, 323, 206, 194, 179, 323, 323, 329, 266, 323,
- /* 1860 */ 323, 343, 321, 259, 310, 323, 29, 15, 323, 304,
- /* 1870 */ 323, 323, 323, 142, 323, 323, 244, 64, 127, 206,
- /* 1880 */ 323, 194, 189, 323, 323, 329, 266, 323, 323, 343,
- /* 1890 */ 321, 259, 310, 304, 29, 15, 323, 113, 323, 323,
- /* 1900 */ 244, 62, 127, 323, 323, 323, 323, 206, 323, 329,
- /* 1910 */ 266, 304, 323, 343, 321, 142, 310, 323, 244, 69,
- /* 1920 */ 127, 323, 323, 323, 323, 323, 323, 329, 266, 323,
- /* 1930 */ 323, 343, 321, 304, 310, 323, 323, 142, 323, 323,
- /* 1940 */ 244, 88, 127, 323, 323, 323, 323, 323, 323, 329,
- /* 1950 */ 266, 323, 323, 343, 321, 323, 310, 323, 323, 304,
- /* 1960 */ 323, 323, 323, 142, 323, 323, 244, 90, 127, 323,
- /* 1970 */ 323, 323, 323, 323, 323, 329, 266, 323, 323, 343,
- /* 1980 */ 321, 323, 310, 304, 323, 323, 323, 116, 323, 323,
- /* 1990 */ 244, 82, 127, 323, 323, 323, 323, 323, 323, 329,
- /* 2000 */ 266, 304, 323, 343, 321, 142, 310, 323, 244, 72,
- /* 2010 */ 127, 323, 323, 323, 323, 323, 323, 329, 266, 323,
- /* 2020 */ 323, 343, 321, 304, 310, 323, 323, 142, 323, 323,
- /* 2030 */ 244, 63, 127, 323, 323, 323, 323, 323, 323, 329,
- /* 2040 */ 266, 323, 323, 343, 321, 323, 310, 323, 323, 304,
- /* 2050 */ 323, 323, 323, 142, 323, 323, 244, 91, 127, 323,
- /* 2060 */ 323, 323, 323, 323, 323, 329, 266, 323, 323, 343,
- /* 2070 */ 321, 323, 310, 304, 323, 323, 323, 142, 323, 323,
- /* 2080 */ 244, 60, 127, 323, 323, 323, 323, 323, 323, 329,
- /* 2090 */ 266, 304, 323, 343, 321, 142, 310, 323, 244, 89,
- /* 2100 */ 127, 323, 323, 323, 323, 323, 323, 329, 266, 323,
- /* 2110 */ 323, 343, 321, 304, 310, 323, 323, 142, 323, 323,
- /* 2120 */ 244, 70, 127, 323, 323, 323, 323, 323, 323, 329,
- /* 2130 */ 266, 323, 323, 343, 321, 323, 310, 323, 323, 304,
- /* 2140 */ 323, 323, 323, 142, 323, 323, 244, 78, 127, 323,
- /* 2150 */ 323, 323, 323, 323, 323, 329, 266, 323, 323, 343,
- /* 2160 */ 321, 323, 310, 304, 323, 323, 323, 142, 323, 323,
- /* 2170 */ 244, 61, 127, 323, 323, 323, 323, 323, 323, 329,
- /* 2180 */ 266, 304, 323, 343, 321, 142, 310, 323, 244, 76,
- /* 2190 */ 127, 323, 323, 323, 323, 323, 323, 329, 266, 323,
- /* 2200 */ 323, 343, 321, 304, 310, 323, 323, 142, 323, 323,
- /* 2210 */ 244, 74, 127, 323, 323, 323, 323, 323, 323, 329,
- /* 2220 */ 266, 323, 323, 343, 321, 323, 310, 323, 323, 304,
- /* 2230 */ 323, 323, 323, 142, 323, 323, 244, 87, 127, 323,
- /* 2240 */ 323, 323, 323, 323, 323, 329, 266, 323, 323, 343,
- /* 2250 */ 321, 323, 310, 304, 323, 323, 323, 142, 323, 323,
- /* 2260 */ 244, 67, 127, 323, 323, 323, 323, 323, 323, 329,
- /* 2270 */ 266, 304, 323, 343, 321, 142, 310, 323, 244, 83,
- /* 2280 */ 127, 323, 323, 323, 323, 323, 323, 329, 266, 323,
- /* 2290 */ 323, 343, 321, 304, 310, 323, 323, 142, 323, 323,
- /* 2300 */ 244, 58, 127, 323, 323, 323, 323, 323, 323, 329,
- /* 2310 */ 266, 323, 323, 343, 321, 323, 310, 323, 323, 304,
- /* 2320 */ 323, 323, 323, 94, 323, 323, 93, 59, 123, 323,
- /* 2330 */ 323, 323, 323, 323, 323, 329, 266, 323, 323, 343,
- /* 2340 */ 321, 323, 310, 304, 323, 323, 323, 142, 323, 323,
- /* 2350 */ 244, 86, 127, 323, 323, 323, 323, 323, 323, 329,
- /* 2360 */ 266, 304, 323, 343, 321, 142, 310, 323, 244, 85,
- /* 2370 */ 127, 323, 323, 323, 323, 323, 323, 329, 266, 323,
- /* 2380 */ 323, 343, 321, 304, 310, 323, 323, 142, 323, 323,
- /* 2390 */ 244, 57, 127, 323, 323, 323, 323, 323, 323, 329,
- /* 2400 */ 266, 323, 323, 343, 321, 323, 310, 323, 323, 304,
- /* 2410 */ 323, 323, 323, 142, 323, 323, 244, 66, 127, 323,
- /* 2420 */ 323, 323, 323, 323, 323, 329, 266, 323, 323, 343,
- /* 2430 */ 321, 323, 310, 304, 323, 323, 323, 142, 323, 323,
- /* 2440 */ 244, 79, 127, 323, 323, 323, 323, 323, 323, 329,
- /* 2450 */ 266, 304, 323, 343, 321, 142, 310, 323, 244, 65,
- /* 2460 */ 127, 323, 323, 323, 323, 323, 323, 329, 266, 323,
- /* 2470 */ 323, 343, 321, 304, 310, 323, 323, 142, 323, 323,
- /* 2480 */ 244, 81, 127, 323, 323, 323, 323, 323, 323, 329,
- /* 2490 */ 266, 323, 323, 343, 321, 323, 310, 323, 323, 304,
- /* 2500 */ 323, 323, 323, 94, 323, 323, 95, 56, 123, 323,
- /* 2510 */ 323, 323, 323, 323, 323, 329, 266, 323, 323, 343,
- /* 2520 */ 321, 323, 310, 304, 323, 323, 323, 142, 323, 323,
- /* 2530 */ 244, 71, 127, 323, 323, 323, 323, 323, 323, 329,
- /* 2540 */ 266, 304, 323, 343, 321, 142, 310, 323, 244, 54,
- /* 2550 */ 127, 323, 323, 323, 323, 323, 323, 329, 266, 323,
- /* 2560 */ 323, 343, 321, 304, 310, 323, 323, 122, 323, 323,
- /* 2570 */ 244, 55, 127, 323, 323, 323, 323, 323, 323, 329,
- /* 2580 */ 266, 323, 323, 343, 321, 323, 310, 323, 323, 304,
- /* 2590 */ 323, 323, 323, 142, 323, 323, 244, 84, 127, 323,
- /* 2600 */ 323, 323, 323, 323, 323, 329, 266, 323, 323, 343,
- /* 2610 */ 321, 323, 310, 304, 323, 323, 323, 156, 323, 323,
- /* 2620 */ 244, 323, 127, 323, 323, 323, 323, 323, 323, 323,
- /* 2630 */ 364, 323, 323, 343, 321, 323, 310,
+ /* 0 */ 211, 316, 317, 319, 318, 315, 314, 310, 309, 311,
+ /* 10 */ 312, 313, 320, 189, 304, 161, 38, 589, 95, 265,
+ /* 20 */ 317, 319, 7, 106, 289, 37, 26, 30, 146, 283,
+ /* 30 */ 10, 285, 250, 286, 238, 280, 287, 49, 48, 46,
+ /* 40 */ 45, 20, 29, 365, 366, 28, 32, 373, 374, 15,
+ /* 50 */ 11, 328, 323, 322, 324, 327, 231, 211, 4, 189,
+ /* 60 */ 329, 332, 211, 382, 383, 384, 385, 381, 380, 376,
+ /* 70 */ 375, 377, 281, 378, 379, 211, 360, 450, 180, 251,
+ /* 80 */ 117, 144, 196, 74, 135, 260, 17, 451, 26, 30,
+ /* 90 */ 307, 283, 299, 361, 35, 158, 225, 368, 362, 451,
+ /* 100 */ 343, 30, 30, 226, 44, 203, 285, 4, 47, 203,
+ /* 110 */ 218, 259, 49, 48, 46, 45, 20, 29, 365, 366,
+ /* 120 */ 28, 32, 373, 374, 15, 11, 351, 108, 176, 334,
+ /* 130 */ 144, 193, 337, 23, 129, 134, 371, 289, 382, 383,
+ /* 140 */ 384, 385, 381, 380, 376, 375, 377, 281, 378, 379,
+ /* 150 */ 211, 360, 372, 26, 203, 142, 283, 31, 68, 122,
+ /* 160 */ 242, 26, 109, 353, 283, 346, 454, 299, 361, 25,
+ /* 170 */ 185, 225, 368, 362, 30, 343, 239, 30, 454, 289,
+ /* 180 */ 4, 41, 26, 143, 165, 283, 4, 49, 48, 46,
+ /* 190 */ 45, 20, 29, 365, 366, 28, 32, 373, 374, 15,
+ /* 200 */ 11, 101, 160, 144, 26, 208, 34, 283, 31, 144,
+ /* 210 */ 8, 289, 4, 382, 383, 384, 385, 381, 380, 376,
+ /* 220 */ 375, 377, 281, 378, 379, 211, 360, 227, 203, 357,
+ /* 230 */ 142, 197, 19, 73, 135, 144, 211, 302, 9, 158,
+ /* 240 */ 340, 26, 299, 361, 283, 158, 225, 368, 362, 228,
+ /* 250 */ 343, 294, 30, 6, 331, 235, 330, 221, 195, 337,
+ /* 260 */ 126, 240, 49, 48, 46, 45, 20, 29, 365, 366,
+ /* 270 */ 28, 32, 373, 374, 15, 11, 211, 16, 129, 244,
+ /* 280 */ 249, 219, 208, 192, 337, 302, 228, 8, 382, 383,
+ /* 290 */ 384, 385, 381, 380, 376, 375, 377, 281, 378, 379,
+ /* 300 */ 163, 211, 107, 188, 105, 40, 40, 266, 277, 289,
+ /* 310 */ 241, 232, 289, 49, 48, 46, 45, 20, 29, 365,
+ /* 320 */ 366, 28, 32, 373, 374, 15, 11, 211, 168, 203,
+ /* 330 */ 40, 2, 278, 167, 175, 244, 242, 289, 350, 382,
+ /* 340 */ 383, 384, 385, 381, 380, 376, 375, 377, 281, 378,
+ /* 350 */ 379, 191, 47, 184, 204, 234, 169, 198, 287, 386,
+ /* 360 */ 203, 203, 289, 124, 49, 48, 46, 45, 20, 29,
+ /* 370 */ 365, 366, 28, 32, 373, 374, 15, 11, 211, 204,
+ /* 380 */ 182, 26, 26, 26, 283, 212, 224, 118, 131, 289,
+ /* 390 */ 382, 383, 384, 385, 381, 380, 376, 375, 377, 281,
+ /* 400 */ 378, 379, 370, 172, 244, 270, 204, 130, 211, 164,
+ /* 410 */ 26, 287, 289, 229, 178, 49, 48, 46, 45, 20,
+ /* 420 */ 29, 365, 366, 28, 32, 373, 374, 15, 11, 204,
+ /* 430 */ 364, 298, 5, 26, 100, 30, 247, 148, 148, 99,
+ /* 440 */ 159, 382, 383, 384, 385, 381, 380, 376, 375, 377,
+ /* 450 */ 281, 378, 379, 211, 354, 370, 360, 174, 26, 369,
+ /* 460 */ 142, 283, 360, 73, 135, 158, 157, 123, 24, 155,
+ /* 470 */ 135, 30, 299, 361, 211, 190, 225, 368, 362, 272,
+ /* 480 */ 343, 252, 225, 368, 362, 343, 343, 222, 223, 306,
+ /* 490 */ 49, 48, 46, 45, 20, 29, 365, 366, 28, 32,
+ /* 500 */ 373, 374, 15, 11, 129, 43, 236, 9, 269, 258,
+ /* 510 */ 199, 133, 33, 14, 202, 103, 382, 383, 384, 385,
+ /* 520 */ 381, 380, 376, 375, 377, 281, 378, 379, 211, 360,
+ /* 530 */ 370, 170, 262, 142, 360, 36, 73, 135, 151, 141,
+ /* 540 */ 289, 245, 135, 276, 211, 299, 361, 211, 44, 225,
+ /* 550 */ 368, 362, 287, 343, 225, 368, 362, 119, 343, 295,
+ /* 560 */ 216, 267, 282, 296, 211, 49, 48, 46, 45, 20,
+ /* 570 */ 29, 365, 366, 28, 32, 373, 374, 15, 11, 284,
+ /* 580 */ 181, 223, 333, 138, 302, 236, 297, 6, 127, 289,
+ /* 590 */ 116, 382, 383, 384, 385, 381, 380, 376, 375, 377,
+ /* 600 */ 281, 378, 379, 211, 360, 370, 177, 94, 142, 303,
+ /* 610 */ 292, 54, 122, 139, 162, 289, 150, 261, 264, 293,
+ /* 620 */ 299, 361, 30, 289, 225, 368, 362, 287, 343, 30,
+ /* 630 */ 287, 30, 132, 300, 308, 287, 158, 211, 30, 334,
+ /* 640 */ 49, 48, 46, 45, 20, 29, 365, 366, 28, 32,
+ /* 650 */ 373, 374, 15, 11, 211, 204, 166, 12, 275, 287,
+ /* 660 */ 273, 248, 342, 98, 97, 113, 382, 383, 384, 385,
+ /* 670 */ 381, 380, 376, 375, 377, 281, 378, 379, 370, 370,
+ /* 680 */ 370, 110, 18, 321, 324, 324, 324, 324, 324, 324,
+ /* 690 */ 246, 49, 48, 46, 45, 20, 29, 365, 366, 28,
+ /* 700 */ 32, 373, 374, 15, 11, 211, 324, 324, 324, 324,
+ /* 710 */ 324, 324, 324, 324, 112, 136, 104, 382, 383, 384,
+ /* 720 */ 385, 381, 380, 376, 375, 377, 281, 378, 379, 370,
+ /* 730 */ 370, 370, 324, 324, 324, 324, 324, 324, 324, 324,
+ /* 740 */ 324, 256, 49, 48, 46, 45, 20, 29, 365, 366,
+ /* 750 */ 28, 32, 373, 374, 15, 11, 211, 324, 324, 324,
+ /* 760 */ 324, 324, 324, 324, 324, 324, 324, 324, 382, 383,
+ /* 770 */ 384, 385, 381, 380, 376, 375, 377, 281, 378, 379,
+ /* 780 */ 351, 324, 324, 30, 324, 324, 324, 324, 324, 324,
+ /* 790 */ 324, 324, 324, 49, 48, 46, 45, 20, 29, 365,
+ /* 800 */ 366, 28, 32, 373, 374, 15, 11, 211, 324, 324,
+ /* 810 */ 324, 324, 324, 324, 324, 324, 324, 355, 324, 382,
+ /* 820 */ 383, 384, 385, 381, 380, 376, 375, 377, 281, 378,
+ /* 830 */ 379, 324, 324, 324, 324, 324, 324, 324, 324, 324,
+ /* 840 */ 324, 324, 324, 324, 49, 48, 46, 45, 20, 29,
+ /* 850 */ 365, 366, 28, 32, 373, 374, 15, 11, 324, 324,
+ /* 860 */ 324, 324, 324, 324, 324, 324, 324, 324, 324, 257,
+ /* 870 */ 382, 383, 384, 385, 381, 380, 376, 375, 377, 281,
+ /* 880 */ 378, 379, 211, 324, 324, 324, 194, 360, 211, 288,
+ /* 890 */ 255, 145, 324, 352, 336, 135, 324, 200, 42, 22,
+ /* 900 */ 27, 30, 30, 341, 7, 106, 30, 225, 368, 362,
+ /* 910 */ 146, 343, 324, 203, 250, 286, 238, 324, 211, 49,
+ /* 920 */ 48, 46, 45, 20, 29, 365, 366, 28, 32, 373,
+ /* 930 */ 374, 15, 11, 305, 324, 324, 324, 324, 324, 47,
+ /* 940 */ 324, 324, 324, 324, 324, 382, 383, 384, 385, 381,
+ /* 950 */ 380, 376, 375, 377, 281, 378, 379, 211, 324, 359,
+ /* 960 */ 39, 349, 360, 326, 348, 291, 156, 324, 352, 344,
+ /* 970 */ 135, 324, 201, 42, 324, 30, 30, 30, 324, 7,
+ /* 980 */ 106, 30, 225, 368, 362, 146, 343, 324, 324, 250,
+ /* 990 */ 286, 238, 324, 324, 49, 48, 46, 45, 20, 29,
+ /* 1000 */ 365, 366, 28, 32, 373, 374, 15, 11, 211, 324,
+ /* 1010 */ 324, 324, 324, 324, 324, 324, 324, 324, 324, 324,
+ /* 1020 */ 382, 383, 384, 385, 381, 380, 376, 375, 377, 281,
+ /* 1030 */ 378, 379, 324, 324, 358, 39, 349, 324, 324, 324,
+ /* 1040 */ 324, 324, 324, 324, 324, 49, 48, 46, 45, 20,
+ /* 1050 */ 29, 365, 366, 28, 32, 373, 374, 15, 11, 324,
+ /* 1060 */ 324, 324, 324, 324, 324, 324, 324, 324, 324, 324,
+ /* 1070 */ 324, 382, 383, 384, 385, 381, 380, 376, 375, 377,
+ /* 1080 */ 281, 378, 379, 324, 49, 48, 46, 45, 20, 29,
+ /* 1090 */ 365, 366, 28, 32, 373, 374, 15, 11, 324, 324,
+ /* 1100 */ 324, 324, 324, 324, 324, 324, 324, 324, 324, 324,
+ /* 1110 */ 382, 383, 384, 385, 381, 380, 376, 375, 377, 281,
+ /* 1120 */ 378, 379, 324, 324, 324, 324, 38, 324, 140, 207,
+ /* 1130 */ 324, 360, 7, 106, 290, 147, 324, 356, 146, 135,
+ /* 1140 */ 324, 324, 250, 286, 238, 230, 30, 13, 367, 30,
+ /* 1150 */ 51, 225, 368, 362, 324, 343, 360, 324, 324, 324,
+ /* 1160 */ 152, 324, 324, 324, 135, 50, 52, 301, 237, 363,
+ /* 1170 */ 324, 360, 105, 1, 254, 154, 225, 368, 362, 135,
+ /* 1180 */ 343, 324, 38, 324, 140, 214, 324, 96, 7, 106,
+ /* 1190 */ 279, 225, 368, 362, 146, 343, 347, 345, 250, 286,
+ /* 1200 */ 238, 230, 30, 13, 274, 324, 51, 338, 30, 30,
+ /* 1210 */ 360, 324, 324, 324, 121, 324, 30, 53, 135, 30,
+ /* 1220 */ 211, 50, 52, 301, 237, 363, 299, 361, 105, 1,
+ /* 1230 */ 225, 368, 362, 211, 343, 453, 324, 268, 38, 324,
+ /* 1240 */ 128, 214, 324, 96, 7, 106, 253, 453, 339, 30,
+ /* 1250 */ 146, 335, 233, 324, 250, 286, 238, 230, 30, 3,
+ /* 1260 */ 30, 324, 51, 30, 271, 324, 360, 324, 4, 324,
+ /* 1270 */ 142, 47, 324, 84, 135, 324, 30, 50, 52, 301,
+ /* 1280 */ 237, 363, 299, 361, 105, 1, 225, 368, 362, 324,
+ /* 1290 */ 343, 144, 324, 324, 38, 324, 125, 92, 324, 96,
+ /* 1300 */ 7, 106, 324, 324, 324, 324, 146, 324, 324, 324,
+ /* 1310 */ 250, 286, 238, 230, 324, 13, 324, 324, 51, 324,
+ /* 1320 */ 324, 324, 360, 324, 324, 324, 142, 324, 324, 89,
+ /* 1330 */ 135, 324, 211, 50, 52, 301, 237, 363, 299, 361,
+ /* 1340 */ 105, 1, 225, 368, 362, 324, 343, 456, 324, 324,
+ /* 1350 */ 38, 324, 126, 214, 324, 96, 7, 106, 324, 456,
+ /* 1360 */ 243, 324, 146, 324, 324, 324, 250, 286, 238, 230,
+ /* 1370 */ 324, 21, 324, 324, 51, 324, 324, 324, 360, 324,
+ /* 1380 */ 324, 324, 142, 47, 324, 87, 135, 324, 211, 50,
+ /* 1390 */ 52, 301, 237, 363, 299, 361, 105, 1, 225, 368,
+ /* 1400 */ 362, 324, 343, 456, 324, 324, 38, 324, 140, 210,
+ /* 1410 */ 324, 96, 7, 106, 324, 456, 324, 324, 146, 324,
+ /* 1420 */ 324, 324, 250, 286, 238, 230, 324, 13, 324, 324,
+ /* 1430 */ 51, 324, 324, 324, 360, 324, 324, 324, 142, 47,
+ /* 1440 */ 324, 63, 135, 324, 211, 50, 52, 301, 237, 363,
+ /* 1450 */ 299, 361, 105, 1, 225, 368, 362, 324, 343, 325,
+ /* 1460 */ 324, 324, 38, 324, 137, 214, 324, 96, 7, 106,
+ /* 1470 */ 324, 30, 324, 324, 146, 324, 324, 324, 250, 286,
+ /* 1480 */ 238, 230, 324, 13, 324, 324, 51, 324, 324, 324,
+ /* 1490 */ 360, 324, 324, 324, 142, 47, 324, 80, 135, 324,
+ /* 1500 */ 324, 50, 52, 301, 237, 363, 299, 361, 105, 1,
+ /* 1510 */ 225, 368, 362, 324, 343, 324, 324, 324, 38, 324,
+ /* 1520 */ 140, 206, 324, 96, 7, 106, 324, 324, 324, 324,
+ /* 1530 */ 146, 324, 324, 324, 250, 286, 238, 220, 324, 13,
+ /* 1540 */ 324, 324, 51, 324, 324, 324, 360, 324, 324, 324,
+ /* 1550 */ 114, 324, 324, 75, 135, 324, 324, 50, 52, 301,
+ /* 1560 */ 237, 363, 299, 361, 105, 1, 225, 368, 362, 324,
+ /* 1570 */ 343, 324, 324, 324, 38, 324, 140, 205, 324, 96,
+ /* 1580 */ 7, 106, 324, 324, 324, 324, 146, 324, 324, 324,
+ /* 1590 */ 250, 286, 238, 230, 324, 13, 324, 324, 51, 324,
+ /* 1600 */ 324, 324, 360, 324, 324, 324, 142, 324, 324, 77,
+ /* 1610 */ 135, 324, 324, 50, 52, 301, 237, 363, 299, 361,
+ /* 1620 */ 105, 1, 225, 368, 362, 324, 343, 324, 324, 324,
+ /* 1630 */ 38, 324, 140, 209, 324, 96, 7, 106, 324, 324,
+ /* 1640 */ 324, 324, 146, 324, 324, 324, 250, 286, 238, 230,
+ /* 1650 */ 324, 13, 324, 324, 51, 324, 324, 324, 360, 324,
+ /* 1660 */ 324, 324, 142, 324, 324, 85, 135, 324, 324, 50,
+ /* 1670 */ 52, 301, 237, 363, 299, 361, 105, 1, 225, 368,
+ /* 1680 */ 362, 324, 343, 324, 324, 324, 38, 324, 126, 213,
+ /* 1690 */ 324, 96, 7, 106, 324, 324, 324, 324, 146, 324,
+ /* 1700 */ 324, 324, 250, 286, 238, 230, 324, 21, 324, 324,
+ /* 1710 */ 51, 324, 324, 324, 360, 324, 324, 324, 142, 324,
+ /* 1720 */ 324, 71, 135, 324, 324, 50, 52, 301, 237, 363,
+ /* 1730 */ 299, 361, 105, 324, 225, 368, 362, 324, 343, 324,
+ /* 1740 */ 324, 324, 38, 324, 126, 214, 324, 96, 7, 106,
+ /* 1750 */ 324, 324, 324, 324, 146, 324, 324, 324, 250, 286,
+ /* 1760 */ 238, 230, 324, 21, 102, 186, 51, 324, 324, 324,
+ /* 1770 */ 324, 324, 324, 324, 289, 324, 324, 22, 27, 324,
+ /* 1780 */ 499, 50, 52, 301, 237, 363, 324, 499, 105, 499,
+ /* 1790 */ 499, 203, 499, 499, 324, 324, 324, 324, 324, 499,
+ /* 1800 */ 4, 499, 324, 96, 324, 324, 324, 324, 324, 324,
+ /* 1810 */ 324, 324, 324, 360, 324, 324, 499, 117, 324, 324,
+ /* 1820 */ 74, 135, 324, 144, 324, 324, 324, 499, 324, 299,
+ /* 1830 */ 361, 324, 324, 225, 368, 362, 324, 343, 360, 324,
+ /* 1840 */ 324, 499, 142, 324, 324, 66, 135, 324, 263, 324,
+ /* 1850 */ 324, 324, 324, 324, 299, 361, 324, 324, 225, 368,
+ /* 1860 */ 362, 324, 343, 324, 360, 324, 324, 324, 142, 324,
+ /* 1870 */ 324, 79, 135, 324, 360, 324, 324, 324, 149, 324,
+ /* 1880 */ 299, 361, 135, 360, 225, 368, 362, 142, 343, 324,
+ /* 1890 */ 81, 135, 324, 324, 225, 368, 362, 324, 343, 299,
+ /* 1900 */ 361, 324, 324, 225, 368, 362, 324, 343, 324, 324,
+ /* 1910 */ 324, 360, 324, 324, 324, 115, 324, 324, 83, 135,
+ /* 1920 */ 324, 324, 360, 324, 324, 324, 142, 299, 361, 72,
+ /* 1930 */ 135, 225, 368, 362, 324, 343, 324, 324, 299, 361,
+ /* 1940 */ 324, 324, 225, 368, 362, 324, 343, 324, 360, 324,
+ /* 1950 */ 324, 324, 142, 324, 324, 70, 135, 324, 360, 324,
+ /* 1960 */ 324, 324, 153, 324, 299, 361, 135, 360, 225, 368,
+ /* 1970 */ 362, 142, 343, 324, 68, 135, 324, 324, 225, 368,
+ /* 1980 */ 362, 324, 343, 299, 361, 324, 324, 225, 368, 362,
+ /* 1990 */ 324, 343, 324, 324, 324, 360, 324, 324, 324, 142,
+ /* 2000 */ 324, 324, 90, 135, 324, 324, 360, 324, 324, 324,
+ /* 2010 */ 142, 299, 361, 86, 135, 225, 368, 362, 324, 343,
+ /* 2020 */ 324, 324, 299, 361, 324, 324, 225, 368, 362, 324,
+ /* 2030 */ 343, 324, 360, 194, 183, 324, 142, 324, 324, 91,
+ /* 2040 */ 135, 324, 324, 289, 324, 324, 22, 27, 299, 361,
+ /* 2050 */ 324, 360, 225, 368, 362, 142, 343, 324, 61, 135,
+ /* 2060 */ 203, 324, 324, 324, 194, 171, 324, 299, 361, 324,
+ /* 2070 */ 324, 225, 368, 362, 289, 343, 324, 22, 27, 360,
+ /* 2080 */ 324, 324, 324, 142, 324, 324, 88, 135, 324, 324,
+ /* 2090 */ 360, 203, 324, 324, 142, 299, 361, 69, 135, 225,
+ /* 2100 */ 368, 362, 324, 343, 324, 324, 299, 361, 324, 324,
+ /* 2110 */ 225, 368, 362, 324, 343, 324, 360, 194, 179, 324,
+ /* 2120 */ 142, 324, 324, 76, 135, 324, 324, 289, 324, 324,
+ /* 2130 */ 22, 27, 299, 361, 324, 360, 225, 368, 362, 142,
+ /* 2140 */ 343, 324, 65, 135, 203, 324, 324, 324, 194, 187,
+ /* 2150 */ 324, 299, 361, 324, 324, 225, 368, 362, 289, 343,
+ /* 2160 */ 324, 22, 27, 360, 324, 324, 324, 111, 324, 324,
+ /* 2170 */ 64, 135, 324, 324, 360, 203, 324, 324, 142, 299,
+ /* 2180 */ 361, 62, 135, 225, 368, 362, 324, 343, 324, 324,
+ /* 2190 */ 299, 361, 324, 324, 225, 368, 362, 324, 343, 324,
+ /* 2200 */ 360, 194, 173, 324, 142, 324, 324, 82, 135, 324,
+ /* 2210 */ 324, 289, 324, 324, 22, 27, 299, 361, 324, 360,
+ /* 2220 */ 225, 368, 362, 142, 343, 324, 60, 135, 203, 324,
+ /* 2230 */ 324, 324, 324, 324, 324, 299, 361, 324, 324, 225,
+ /* 2240 */ 368, 362, 324, 343, 324, 324, 324, 360, 324, 324,
+ /* 2250 */ 324, 93, 324, 324, 57, 120, 324, 324, 360, 324,
+ /* 2260 */ 324, 324, 142, 299, 361, 58, 135, 225, 368, 362,
+ /* 2270 */ 324, 343, 324, 324, 299, 361, 324, 324, 225, 368,
+ /* 2280 */ 362, 324, 343, 324, 360, 324, 324, 324, 142, 324,
+ /* 2290 */ 324, 59, 135, 324, 324, 324, 324, 324, 324, 324,
+ /* 2300 */ 299, 361, 324, 360, 225, 368, 362, 93, 343, 324,
+ /* 2310 */ 55, 120, 324, 324, 324, 324, 324, 324, 324, 299,
+ /* 2320 */ 361, 324, 324, 215, 368, 362, 324, 343, 324, 324,
+ /* 2330 */ 324, 360, 324, 324, 324, 142, 324, 324, 56, 135,
+ /* 2340 */ 324, 324, 360, 324, 324, 324, 142, 299, 361, 78,
+ /* 2350 */ 135, 225, 368, 362, 324, 343, 324, 324, 299, 361,
+ /* 2360 */ 324, 324, 225, 368, 362, 324, 343, 324, 360, 324,
+ /* 2370 */ 324, 324, 142, 324, 324, 67, 135, 324, 324, 324,
+ /* 2380 */ 324, 324, 324, 324, 299, 361, 324, 324, 217, 368,
+ /* 2390 */ 362, 324, 343,
);
static public $yy_lookahead = array(
- /* 0 */ 1, 3, 4, 5, 6, 7, 8, 9, 10, 11,
- /* 10 */ 12, 15, 56, 15, 18, 16, 16, 61, 15, 21,
- /* 20 */ 22, 18, 19, 113, 28, 27, 30, 28, 28, 31,
- /* 30 */ 32, 79, 80, 81, 82, 83, 37, 38, 39, 40,
+ /* 0 */ 1, 82, 83, 84, 3, 4, 5, 6, 7, 8,
+ /* 10 */ 9, 10, 11, 12, 18, 89, 15, 80, 81, 82,
+ /* 20 */ 83, 84, 21, 22, 98, 26, 15, 28, 27, 18,
+ /* 30 */ 19, 116, 31, 32, 33, 24, 110, 38, 39, 40,
/* 40 */ 41, 42, 43, 44, 45, 46, 47, 48, 49, 50,
- /* 50 */ 1, 4, 5, 6, 7, 8, 81, 82, 83, 12,
- /* 60 */ 13, 14, 63, 64, 65, 66, 67, 68, 69, 70,
- /* 70 */ 71, 72, 73, 74, 24, 26, 15, 28, 17, 18,
- /* 80 */ 1, 87, 15, 35, 17, 18, 37, 38, 39, 40,
- /* 90 */ 41, 42, 43, 44, 45, 46, 47, 48, 49, 50,
- /* 100 */ 33, 87, 88, 30, 56, 20, 58, 113, 35, 30,
- /* 110 */ 62, 97, 63, 64, 65, 66, 67, 68, 69, 70,
- /* 120 */ 71, 72, 73, 74, 1, 82, 76, 113, 88, 86,
- /* 130 */ 51, 58, 89, 90, 91, 16, 28, 97, 19, 16,
- /* 140 */ 15, 98, 99, 18, 19, 102, 103, 28, 105, 87,
- /* 150 */ 88, 28, 110, 113, 35, 112, 91, 92, 93, 97,
- /* 160 */ 37, 38, 39, 40, 41, 42, 43, 44, 45, 46,
- /* 170 */ 47, 48, 49, 50, 88, 113, 15, 58, 35, 18,
- /* 180 */ 19, 109, 110, 97, 59, 24, 63, 64, 65, 66,
- /* 190 */ 67, 68, 69, 70, 71, 72, 73, 74, 1, 82,
- /* 200 */ 87, 88, 1, 86, 109, 110, 89, 90, 91, 16,
- /* 210 */ 97, 15, 1, 16, 18, 98, 99, 16, 20, 102,
- /* 220 */ 103, 28, 105, 87, 88, 28, 113, 16, 35, 112,
- /* 230 */ 15, 20, 106, 97, 37, 38, 39, 40, 41, 42,
- /* 240 */ 43, 44, 45, 46, 47, 48, 49, 50, 88, 113,
- /* 250 */ 35, 58, 51, 15, 56, 59, 18, 97, 18, 61,
- /* 260 */ 63, 64, 65, 66, 67, 68, 69, 70, 71, 72,
- /* 270 */ 73, 74, 1, 82, 106, 88, 107, 86, 109, 110,
- /* 280 */ 89, 90, 91, 92, 97, 15, 82, 16, 18, 98,
- /* 290 */ 99, 19, 20, 102, 103, 108, 105, 59, 28, 59,
- /* 300 */ 30, 35, 34, 34, 36, 36, 17, 18, 37, 38,
- /* 310 */ 39, 40, 41, 42, 43, 44, 45, 46, 47, 48,
- /* 320 */ 49, 50, 118, 119, 58, 34, 15, 36, 1, 18,
- /* 330 */ 58, 114, 19, 20, 63, 64, 65, 66, 67, 68,
- /* 340 */ 69, 70, 71, 72, 73, 74, 1, 82, 88, 88,
- /* 350 */ 106, 86, 108, 16, 89, 90, 91, 97, 97, 15,
- /* 360 */ 1, 16, 18, 98, 99, 28, 16, 102, 103, 108,
- /* 370 */ 105, 58, 28, 113, 34, 16, 15, 112, 28, 18,
- /* 380 */ 17, 18, 37, 38, 39, 40, 41, 42, 43, 44,
- /* 390 */ 45, 46, 47, 48, 49, 50, 1, 88, 83, 1,
- /* 400 */ 85, 87, 62, 91, 92, 89, 97, 91, 63, 64,
- /* 410 */ 65, 66, 67, 68, 69, 70, 71, 72, 73, 74,
- /* 420 */ 114, 105, 113, 60, 91, 92, 15, 113, 87, 18,
- /* 430 */ 106, 36, 37, 38, 39, 40, 41, 42, 43, 44,
- /* 440 */ 45, 46, 47, 48, 49, 50, 1, 2, 88, 51,
- /* 450 */ 94, 24, 17, 15, 113, 18, 18, 97, 63, 64,
- /* 460 */ 65, 66, 67, 68, 69, 70, 71, 72, 73, 74,
- /* 470 */ 35, 104, 88, 113, 15, 1, 18, 18, 111, 18,
- /* 480 */ 17, 97, 37, 38, 39, 40, 41, 42, 43, 44,
- /* 490 */ 45, 46, 47, 48, 49, 50, 1, 113, 106, 17,
- /* 500 */ 108, 62, 28, 18, 18, 52, 18, 95, 63, 64,
- /* 510 */ 65, 66, 67, 68, 69, 70, 71, 72, 73, 74,
- /* 520 */ 108, 88, 104, 18, 60, 60, 36, 25, 18, 111,
- /* 530 */ 97, 36, 37, 38, 39, 40, 41, 42, 43, 44,
- /* 540 */ 45, 46, 47, 48, 49, 50, 1, 56, 2, 33,
- /* 550 */ 2, 17, 35, 17, 19, 17, 33, 18, 63, 64,
- /* 560 */ 65, 66, 67, 68, 69, 70, 71, 72, 73, 74,
- /* 570 */ 23, 115, 106, 97, 107, 94, 108, 28, 28, 2,
- /* 580 */ 111, 34, 37, 38, 39, 40, 41, 42, 43, 44,
- /* 590 */ 45, 46, 47, 48, 49, 50, 1, 84, 13, 120,
- /* 600 */ 120, 120, 120, 120, 120, 120, 120, 95, 63, 64,
- /* 610 */ 65, 66, 67, 68, 69, 70, 71, 72, 73, 74,
- /* 620 */ 108, 76, 120, 28, 120, 120, 120, 120, 120, 120,
- /* 630 */ 120, 120, 37, 38, 39, 40, 41, 42, 43, 44,
- /* 640 */ 45, 46, 47, 48, 49, 50, 120, 120, 120, 120,
- /* 650 */ 120, 120, 120, 120, 120, 120, 120, 120, 63, 64,
- /* 660 */ 65, 66, 67, 68, 69, 70, 71, 72, 73, 74,
- /* 670 */ 1, 1, 120, 82, 87, 88, 1, 86, 2, 120,
- /* 680 */ 89, 90, 91, 92, 97, 19, 16, 100, 101, 98,
- /* 690 */ 99, 16, 23, 102, 103, 19, 105, 120, 28, 29,
- /* 700 */ 113, 120, 120, 28, 120, 1, 37, 38, 39, 40,
- /* 710 */ 41, 42, 43, 44, 45, 46, 47, 48, 49, 50,
- /* 720 */ 16, 51, 56, 120, 120, 120, 51, 120, 120, 120,
- /* 730 */ 120, 120, 63, 64, 65, 66, 67, 68, 69, 70,
- /* 740 */ 71, 72, 73, 74, 1, 120, 120, 120, 87, 88,
- /* 750 */ 120, 16, 16, 16, 120, 10, 16, 16, 97, 16,
- /* 760 */ 15, 100, 101, 28, 28, 28, 21, 22, 28, 28,
- /* 770 */ 120, 120, 27, 120, 113, 120, 31, 32, 120, 120,
- /* 780 */ 37, 38, 39, 40, 41, 42, 43, 44, 45, 46,
- /* 790 */ 47, 48, 49, 50, 1, 120, 120, 120, 120, 120,
- /* 800 */ 120, 120, 120, 120, 120, 95, 63, 64, 65, 66,
- /* 810 */ 67, 68, 69, 70, 71, 72, 73, 74, 108, 120,
- /* 820 */ 75, 76, 77, 120, 120, 120, 120, 120, 120, 120,
- /* 830 */ 37, 38, 39, 40, 41, 42, 43, 44, 45, 46,
- /* 840 */ 47, 48, 49, 50, 120, 120, 120, 120, 120, 120,
- /* 850 */ 120, 120, 120, 120, 120, 62, 63, 64, 65, 66,
- /* 860 */ 67, 68, 69, 70, 71, 72, 73, 74, 1, 82,
- /* 870 */ 120, 88, 16, 86, 120, 16, 89, 90, 91, 88,
- /* 880 */ 97, 16, 16, 16, 28, 98, 99, 28, 97, 102,
- /* 890 */ 103, 108, 105, 28, 28, 120, 120, 120, 120, 108,
- /* 900 */ 120, 120, 120, 120, 37, 38, 39, 40, 41, 42,
- /* 910 */ 43, 44, 45, 46, 47, 48, 49, 50, 1, 120,
- /* 920 */ 120, 120, 120, 120, 120, 120, 120, 120, 120, 95,
- /* 930 */ 63, 64, 65, 66, 67, 68, 69, 70, 71, 72,
- /* 940 */ 73, 74, 108, 120, 120, 120, 29, 120, 120, 120,
- /* 950 */ 120, 120, 120, 120, 37, 38, 39, 40, 41, 42,
- /* 960 */ 43, 44, 45, 46, 47, 48, 49, 50, 1, 120,
- /* 970 */ 120, 120, 120, 120, 120, 120, 120, 120, 120, 95,
- /* 980 */ 63, 64, 65, 66, 67, 68, 69, 70, 71, 72,
- /* 990 */ 73, 74, 108, 120, 120, 120, 120, 120, 120, 120,
- /* 1000 */ 120, 120, 120, 120, 37, 38, 39, 40, 41, 42,
- /* 1010 */ 43, 44, 45, 46, 47, 48, 49, 50, 120, 82,
- /* 1020 */ 120, 120, 120, 120, 120, 120, 20, 120, 120, 120,
- /* 1030 */ 63, 64, 65, 66, 67, 68, 69, 70, 71, 72,
- /* 1040 */ 73, 74, 37, 38, 39, 40, 41, 42, 43, 44,
- /* 1050 */ 45, 46, 47, 48, 49, 50, 119, 120, 120, 120,
- /* 1060 */ 120, 120, 120, 120, 58, 120, 1, 120, 63, 64,
- /* 1070 */ 65, 66, 67, 68, 69, 70, 71, 72, 73, 74,
- /* 1080 */ 96, 16, 95, 120, 15, 120, 17, 18, 120, 120,
- /* 1090 */ 21, 22, 108, 16, 16, 108, 27, 120, 10, 120,
- /* 1100 */ 31, 32, 33, 15, 35, 28, 28, 38, 120, 21,
- /* 1110 */ 22, 120, 120, 120, 120, 27, 120, 120, 120, 31,
- /* 1120 */ 32, 87, 53, 54, 55, 56, 57, 95, 120, 60,
- /* 1130 */ 61, 62, 120, 1, 100, 101, 120, 16, 16, 15,
- /* 1140 */ 108, 17, 18, 1, 75, 21, 22, 113, 16, 28,
- /* 1150 */ 28, 27, 120, 120, 120, 31, 32, 33, 16, 35,
- /* 1160 */ 28, 16, 38, 75, 76, 77, 24, 82, 120, 95,
- /* 1170 */ 28, 86, 120, 28, 89, 120, 91, 53, 54, 55,
- /* 1180 */ 56, 57, 108, 51, 60, 61, 120, 102, 103, 1,
- /* 1190 */ 105, 16, 120, 120, 15, 120, 17, 18, 82, 75,
- /* 1200 */ 21, 22, 86, 28, 16, 89, 27, 91, 20, 120,
- /* 1210 */ 31, 32, 33, 16, 35, 99, 28, 38, 102, 103,
- /* 1220 */ 120, 105, 82, 35, 120, 28, 86, 120, 120, 89,
- /* 1230 */ 120, 91, 53, 54, 55, 56, 57, 120, 16, 60,
- /* 1240 */ 61, 120, 102, 103, 1, 105, 58, 1, 16, 15,
- /* 1250 */ 28, 17, 18, 1, 75, 21, 22, 120, 120, 16,
- /* 1260 */ 28, 27, 16, 16, 16, 31, 32, 33, 16, 35,
- /* 1270 */ 24, 28, 38, 120, 28, 28, 28, 82, 120, 95,
- /* 1280 */ 28, 86, 120, 120, 89, 120, 91, 53, 54, 55,
- /* 1290 */ 56, 57, 108, 120, 60, 61, 120, 102, 103, 95,
- /* 1300 */ 105, 120, 120, 51, 15, 120, 17, 18, 120, 75,
- /* 1310 */ 21, 22, 108, 120, 120, 120, 27, 120, 120, 120,
- /* 1320 */ 31, 32, 33, 120, 35, 120, 120, 38, 120, 120,
- /* 1330 */ 120, 120, 82, 120, 120, 120, 86, 120, 120, 89,
- /* 1340 */ 120, 91, 53, 54, 55, 56, 57, 120, 120, 60,
- /* 1350 */ 61, 120, 102, 103, 120, 105, 120, 120, 120, 15,
- /* 1360 */ 120, 17, 18, 120, 75, 21, 22, 120, 120, 120,
- /* 1370 */ 120, 27, 120, 120, 120, 31, 32, 33, 120, 35,
- /* 1380 */ 120, 120, 38, 120, 120, 120, 120, 82, 120, 120,
- /* 1390 */ 120, 86, 120, 120, 89, 120, 91, 53, 54, 55,
- /* 1400 */ 56, 57, 120, 120, 60, 61, 120, 102, 103, 120,
- /* 1410 */ 105, 120, 120, 120, 15, 120, 17, 18, 120, 75,
- /* 1420 */ 21, 22, 120, 120, 120, 120, 27, 120, 120, 120,
- /* 1430 */ 31, 32, 33, 120, 35, 120, 120, 38, 120, 120,
- /* 1440 */ 120, 120, 82, 120, 120, 120, 86, 120, 120, 89,
- /* 1450 */ 120, 91, 53, 54, 55, 56, 57, 120, 120, 60,
- /* 1460 */ 61, 120, 102, 103, 120, 105, 120, 120, 120, 15,
- /* 1470 */ 120, 17, 18, 120, 75, 21, 22, 120, 120, 120,
- /* 1480 */ 120, 27, 120, 120, 120, 31, 32, 33, 120, 35,
- /* 1490 */ 120, 120, 38, 120, 120, 120, 120, 82, 120, 120,
- /* 1500 */ 120, 86, 120, 120, 89, 120, 91, 53, 54, 55,
- /* 1510 */ 56, 57, 120, 120, 60, 61, 120, 102, 103, 120,
- /* 1520 */ 105, 120, 120, 120, 15, 120, 17, 18, 120, 75,
- /* 1530 */ 21, 22, 120, 120, 120, 120, 27, 120, 120, 120,
- /* 1540 */ 31, 32, 33, 120, 35, 120, 120, 38, 120, 120,
- /* 1550 */ 120, 120, 120, 120, 120, 120, 120, 120, 120, 120,
- /* 1560 */ 120, 120, 53, 54, 55, 56, 57, 120, 120, 60,
- /* 1570 */ 61, 120, 120, 120, 120, 120, 120, 120, 120, 15,
- /* 1580 */ 120, 17, 18, 120, 75, 21, 22, 120, 120, 120,
- /* 1590 */ 120, 27, 120, 120, 120, 31, 32, 33, 120, 35,
- /* 1600 */ 120, 120, 38, 120, 120, 120, 120, 120, 120, 120,
- /* 1610 */ 120, 120, 120, 120, 120, 120, 120, 53, 54, 55,
- /* 1620 */ 56, 57, 120, 120, 60, 61, 120, 120, 120, 120,
- /* 1630 */ 120, 120, 120, 120, 15, 120, 17, 18, 120, 75,
- /* 1640 */ 21, 22, 120, 120, 120, 120, 27, 120, 120, 120,
- /* 1650 */ 31, 32, 33, 120, 35, 120, 120, 38, 120, 120,
- /* 1660 */ 120, 120, 120, 120, 120, 120, 120, 87, 88, 120,
- /* 1670 */ 120, 120, 53, 54, 55, 56, 57, 97, 120, 60,
- /* 1680 */ 100, 101, 120, 120, 120, 120, 120, 120, 120, 15,
- /* 1690 */ 120, 17, 18, 113, 75, 21, 22, 120, 120, 120,
- /* 1700 */ 120, 27, 120, 120, 120, 31, 32, 33, 120, 35,
- /* 1710 */ 120, 120, 38, 120, 120, 120, 120, 120, 120, 120,
- /* 1720 */ 120, 120, 120, 120, 120, 120, 16, 53, 54, 55,
- /* 1730 */ 56, 57, 120, 23, 60, 25, 26, 120, 28, 29,
- /* 1740 */ 120, 120, 120, 120, 34, 35, 36, 120, 120, 75,
- /* 1750 */ 120, 120, 120, 120, 120, 120, 120, 120, 82, 120,
- /* 1760 */ 120, 51, 86, 120, 120, 89, 90, 91, 58, 120,
- /* 1770 */ 120, 120, 62, 120, 98, 99, 120, 120, 102, 103,
- /* 1780 */ 120, 105, 120, 120, 120, 120, 76, 120, 120, 120,
- /* 1790 */ 82, 120, 116, 117, 86, 120, 120, 89, 90, 91,
- /* 1800 */ 120, 120, 120, 120, 120, 120, 98, 99, 120, 120,
- /* 1810 */ 102, 103, 82, 105, 120, 120, 86, 120, 120, 89,
- /* 1820 */ 90, 91, 120, 120, 120, 117, 87, 88, 98, 99,
- /* 1830 */ 120, 120, 102, 103, 120, 105, 97, 120, 120, 100,
- /* 1840 */ 101, 82, 120, 120, 120, 86, 120, 120, 89, 90,
- /* 1850 */ 91, 120, 113, 87, 88, 120, 120, 98, 99, 120,
- /* 1860 */ 120, 102, 103, 97, 105, 120, 100, 101, 120, 82,
- /* 1870 */ 120, 120, 120, 86, 120, 120, 89, 90, 91, 113,
- /* 1880 */ 120, 87, 88, 120, 120, 98, 99, 120, 120, 102,
- /* 1890 */ 103, 97, 105, 82, 100, 101, 120, 86, 120, 120,
- /* 1900 */ 89, 90, 91, 120, 120, 120, 120, 113, 120, 98,
- /* 1910 */ 99, 82, 120, 102, 103, 86, 105, 120, 89, 90,
- /* 1920 */ 91, 120, 120, 120, 120, 120, 120, 98, 99, 120,
- /* 1930 */ 120, 102, 103, 82, 105, 120, 120, 86, 120, 120,
- /* 1940 */ 89, 90, 91, 120, 120, 120, 120, 120, 120, 98,
- /* 1950 */ 99, 120, 120, 102, 103, 120, 105, 120, 120, 82,
- /* 1960 */ 120, 120, 120, 86, 120, 120, 89, 90, 91, 120,
- /* 1970 */ 120, 120, 120, 120, 120, 98, 99, 120, 120, 102,
- /* 1980 */ 103, 120, 105, 82, 120, 120, 120, 86, 120, 120,
- /* 1990 */ 89, 90, 91, 120, 120, 120, 120, 120, 120, 98,
- /* 2000 */ 99, 82, 120, 102, 103, 86, 105, 120, 89, 90,
- /* 2010 */ 91, 120, 120, 120, 120, 120, 120, 98, 99, 120,
- /* 2020 */ 120, 102, 103, 82, 105, 120, 120, 86, 120, 120,
- /* 2030 */ 89, 90, 91, 120, 120, 120, 120, 120, 120, 98,
- /* 2040 */ 99, 120, 120, 102, 103, 120, 105, 120, 120, 82,
- /* 2050 */ 120, 120, 120, 86, 120, 120, 89, 90, 91, 120,
- /* 2060 */ 120, 120, 120, 120, 120, 98, 99, 120, 120, 102,
- /* 2070 */ 103, 120, 105, 82, 120, 120, 120, 86, 120, 120,
- /* 2080 */ 89, 90, 91, 120, 120, 120, 120, 120, 120, 98,
- /* 2090 */ 99, 82, 120, 102, 103, 86, 105, 120, 89, 90,
- /* 2100 */ 91, 120, 120, 120, 120, 120, 120, 98, 99, 120,
- /* 2110 */ 120, 102, 103, 82, 105, 120, 120, 86, 120, 120,
- /* 2120 */ 89, 90, 91, 120, 120, 120, 120, 120, 120, 98,
- /* 2130 */ 99, 120, 120, 102, 103, 120, 105, 120, 120, 82,
- /* 2140 */ 120, 120, 120, 86, 120, 120, 89, 90, 91, 120,
- /* 2150 */ 120, 120, 120, 120, 120, 98, 99, 120, 120, 102,
- /* 2160 */ 103, 120, 105, 82, 120, 120, 120, 86, 120, 120,
- /* 2170 */ 89, 90, 91, 120, 120, 120, 120, 120, 120, 98,
- /* 2180 */ 99, 82, 120, 102, 103, 86, 105, 120, 89, 90,
- /* 2190 */ 91, 120, 120, 120, 120, 120, 120, 98, 99, 120,
- /* 2200 */ 120, 102, 103, 82, 105, 120, 120, 86, 120, 120,
- /* 2210 */ 89, 90, 91, 120, 120, 120, 120, 120, 120, 98,
- /* 2220 */ 99, 120, 120, 102, 103, 120, 105, 120, 120, 82,
- /* 2230 */ 120, 120, 120, 86, 120, 120, 89, 90, 91, 120,
- /* 2240 */ 120, 120, 120, 120, 120, 98, 99, 120, 120, 102,
- /* 2250 */ 103, 120, 105, 82, 120, 120, 120, 86, 120, 120,
- /* 2260 */ 89, 90, 91, 120, 120, 120, 120, 120, 120, 98,
- /* 2270 */ 99, 82, 120, 102, 103, 86, 105, 120, 89, 90,
- /* 2280 */ 91, 120, 120, 120, 120, 120, 120, 98, 99, 120,
- /* 2290 */ 120, 102, 103, 82, 105, 120, 120, 86, 120, 120,
- /* 2300 */ 89, 90, 91, 120, 120, 120, 120, 120, 120, 98,
- /* 2310 */ 99, 120, 120, 102, 103, 120, 105, 120, 120, 82,
- /* 2320 */ 120, 120, 120, 86, 120, 120, 89, 90, 91, 120,
- /* 2330 */ 120, 120, 120, 120, 120, 98, 99, 120, 120, 102,
- /* 2340 */ 103, 120, 105, 82, 120, 120, 120, 86, 120, 120,
- /* 2350 */ 89, 90, 91, 120, 120, 120, 120, 120, 120, 98,
- /* 2360 */ 99, 82, 120, 102, 103, 86, 105, 120, 89, 90,
- /* 2370 */ 91, 120, 120, 120, 120, 120, 120, 98, 99, 120,
- /* 2380 */ 120, 102, 103, 82, 105, 120, 120, 86, 120, 120,
- /* 2390 */ 89, 90, 91, 120, 120, 120, 120, 120, 120, 98,
- /* 2400 */ 99, 120, 120, 102, 103, 120, 105, 120, 120, 82,
- /* 2410 */ 120, 120, 120, 86, 120, 120, 89, 90, 91, 120,
- /* 2420 */ 120, 120, 120, 120, 120, 98, 99, 120, 120, 102,
- /* 2430 */ 103, 120, 105, 82, 120, 120, 120, 86, 120, 120,
- /* 2440 */ 89, 90, 91, 120, 120, 120, 120, 120, 120, 98,
- /* 2450 */ 99, 82, 120, 102, 103, 86, 105, 120, 89, 90,
- /* 2460 */ 91, 120, 120, 120, 120, 120, 120, 98, 99, 120,
- /* 2470 */ 120, 102, 103, 82, 105, 120, 120, 86, 120, 120,
- /* 2480 */ 89, 90, 91, 120, 120, 120, 120, 120, 120, 98,
- /* 2490 */ 99, 120, 120, 102, 103, 120, 105, 120, 120, 82,
- /* 2500 */ 120, 120, 120, 86, 120, 120, 89, 90, 91, 120,
- /* 2510 */ 120, 120, 120, 120, 120, 98, 99, 120, 120, 102,
- /* 2520 */ 103, 120, 105, 82, 120, 120, 120, 86, 120, 120,
- /* 2530 */ 89, 90, 91, 120, 120, 120, 120, 120, 120, 98,
- /* 2540 */ 99, 82, 120, 102, 103, 86, 105, 120, 89, 90,
- /* 2550 */ 91, 120, 120, 120, 120, 120, 120, 98, 99, 120,
- /* 2560 */ 120, 102, 103, 82, 105, 120, 120, 86, 120, 120,
- /* 2570 */ 89, 90, 91, 120, 120, 120, 120, 120, 120, 98,
- /* 2580 */ 99, 120, 120, 102, 103, 120, 105, 120, 120, 82,
- /* 2590 */ 120, 120, 120, 86, 120, 120, 89, 90, 91, 120,
- /* 2600 */ 120, 120, 120, 120, 120, 98, 99, 120, 120, 102,
- /* 2610 */ 103, 120, 105, 82, 120, 120, 120, 86, 120, 120,
- /* 2620 */ 89, 120, 91, 120, 120, 120, 120, 120, 120, 120,
- /* 2630 */ 99, 120, 120, 102, 103, 120, 105,
+ /* 50 */ 51, 4, 5, 6, 7, 8, 60, 1, 36, 12,
+ /* 60 */ 13, 14, 1, 64, 65, 66, 67, 68, 69, 70,
+ /* 70 */ 71, 72, 73, 74, 75, 1, 83, 16, 88, 57,
+ /* 80 */ 87, 59, 88, 90, 91, 63, 30, 16, 15, 28,
+ /* 90 */ 16, 18, 99, 100, 19, 20, 103, 104, 105, 28,
+ /* 100 */ 107, 28, 28, 30, 2, 115, 116, 36, 52, 115,
+ /* 110 */ 117, 118, 38, 39, 40, 41, 42, 43, 44, 45,
+ /* 120 */ 46, 47, 48, 49, 50, 51, 83, 88, 89, 109,
+ /* 130 */ 59, 111, 112, 15, 59, 17, 18, 98, 64, 65,
+ /* 140 */ 66, 67, 68, 69, 70, 71, 72, 73, 74, 75,
+ /* 150 */ 1, 83, 34, 15, 115, 87, 18, 19, 90, 91,
+ /* 160 */ 92, 15, 119, 120, 18, 16, 16, 99, 100, 19,
+ /* 170 */ 89, 103, 104, 105, 28, 107, 30, 28, 28, 98,
+ /* 180 */ 36, 15, 15, 17, 18, 18, 36, 38, 39, 40,
+ /* 190 */ 41, 42, 43, 44, 45, 46, 47, 48, 49, 50,
+ /* 200 */ 51, 88, 89, 59, 15, 57, 30, 18, 19, 59,
+ /* 210 */ 62, 98, 36, 64, 65, 66, 67, 68, 69, 70,
+ /* 220 */ 71, 72, 73, 74, 75, 1, 83, 60, 115, 16,
+ /* 230 */ 87, 97, 15, 90, 91, 59, 1, 24, 19, 20,
+ /* 240 */ 16, 15, 99, 100, 18, 20, 103, 104, 105, 60,
+ /* 250 */ 107, 16, 28, 36, 84, 20, 86, 114, 111, 112,
+ /* 260 */ 17, 18, 38, 39, 40, 41, 42, 43, 44, 45,
+ /* 270 */ 46, 47, 48, 49, 50, 51, 1, 2, 59, 91,
+ /* 280 */ 92, 93, 57, 111, 112, 24, 60, 62, 64, 65,
+ /* 290 */ 66, 67, 68, 69, 70, 71, 72, 73, 74, 75,
+ /* 300 */ 89, 1, 88, 89, 61, 35, 35, 37, 37, 98,
+ /* 310 */ 17, 18, 98, 38, 39, 40, 41, 42, 43, 44,
+ /* 320 */ 45, 46, 47, 48, 49, 50, 51, 1, 89, 115,
+ /* 330 */ 35, 35, 37, 88, 88, 91, 92, 98, 77, 64,
+ /* 340 */ 65, 66, 67, 68, 69, 70, 71, 72, 73, 74,
+ /* 350 */ 75, 23, 52, 89, 115, 29, 108, 97, 110, 63,
+ /* 360 */ 115, 115, 98, 35, 38, 39, 40, 41, 42, 43,
+ /* 370 */ 44, 45, 46, 47, 48, 49, 50, 51, 1, 115,
+ /* 380 */ 89, 15, 15, 15, 18, 18, 18, 95, 17, 98,
+ /* 390 */ 64, 65, 66, 67, 68, 69, 70, 71, 72, 73,
+ /* 400 */ 74, 75, 110, 89, 91, 92, 115, 36, 1, 108,
+ /* 410 */ 15, 110, 98, 18, 108, 38, 39, 40, 41, 42,
+ /* 420 */ 43, 44, 45, 46, 47, 48, 49, 50, 51, 115,
+ /* 430 */ 106, 106, 36, 15, 97, 28, 18, 113, 113, 108,
+ /* 440 */ 95, 64, 65, 66, 67, 68, 69, 70, 71, 72,
+ /* 450 */ 73, 74, 75, 1, 77, 110, 83, 108, 15, 18,
+ /* 460 */ 87, 18, 83, 90, 91, 20, 87, 17, 19, 91,
+ /* 470 */ 91, 28, 99, 100, 1, 23, 103, 104, 105, 100,
+ /* 480 */ 107, 103, 103, 104, 105, 107, 107, 114, 2, 16,
+ /* 490 */ 38, 39, 40, 41, 42, 43, 44, 45, 46, 47,
+ /* 500 */ 48, 49, 50, 51, 59, 19, 57, 19, 37, 61,
+ /* 510 */ 18, 17, 53, 2, 18, 95, 64, 65, 66, 67,
+ /* 520 */ 68, 69, 70, 71, 72, 73, 74, 75, 1, 83,
+ /* 530 */ 110, 89, 63, 87, 83, 25, 90, 91, 87, 17,
+ /* 540 */ 98, 18, 91, 16, 1, 99, 100, 1, 2, 103,
+ /* 550 */ 104, 105, 110, 107, 103, 104, 105, 18, 107, 16,
+ /* 560 */ 114, 61, 16, 34, 1, 38, 39, 40, 41, 42,
+ /* 570 */ 43, 44, 45, 46, 47, 48, 49, 50, 51, 16,
+ /* 580 */ 89, 2, 18, 17, 24, 57, 34, 36, 17, 98,
+ /* 590 */ 95, 64, 65, 66, 67, 68, 69, 70, 71, 72,
+ /* 600 */ 73, 74, 75, 1, 83, 110, 89, 18, 87, 18,
+ /* 610 */ 16, 90, 91, 92, 89, 98, 96, 16, 16, 16,
+ /* 620 */ 99, 100, 28, 98, 103, 104, 105, 110, 107, 28,
+ /* 630 */ 110, 28, 18, 18, 98, 110, 20, 1, 28, 109,
+ /* 640 */ 38, 39, 40, 41, 42, 43, 44, 45, 46, 47,
+ /* 650 */ 48, 49, 50, 51, 1, 115, 108, 28, 113, 110,
+ /* 660 */ 28, 94, 112, 95, 95, 95, 64, 65, 66, 67,
+ /* 670 */ 68, 69, 70, 71, 72, 73, 74, 75, 110, 110,
+ /* 680 */ 110, 85, 94, 13, 121, 121, 121, 121, 121, 121,
+ /* 690 */ 37, 38, 39, 40, 41, 42, 43, 44, 45, 46,
+ /* 700 */ 47, 48, 49, 50, 51, 1, 121, 121, 121, 121,
+ /* 710 */ 121, 121, 121, 121, 95, 95, 95, 64, 65, 66,
+ /* 720 */ 67, 68, 69, 70, 71, 72, 73, 74, 75, 110,
+ /* 730 */ 110, 110, 121, 121, 121, 121, 121, 121, 121, 121,
+ /* 740 */ 121, 37, 38, 39, 40, 41, 42, 43, 44, 45,
+ /* 750 */ 46, 47, 48, 49, 50, 51, 1, 121, 121, 121,
+ /* 760 */ 121, 121, 121, 121, 121, 121, 121, 121, 64, 65,
+ /* 770 */ 66, 67, 68, 69, 70, 71, 72, 73, 74, 75,
+ /* 780 */ 83, 121, 121, 28, 121, 121, 121, 121, 121, 121,
+ /* 790 */ 121, 121, 121, 38, 39, 40, 41, 42, 43, 44,
+ /* 800 */ 45, 46, 47, 48, 49, 50, 51, 1, 121, 121,
+ /* 810 */ 121, 121, 121, 121, 121, 121, 121, 120, 121, 64,
+ /* 820 */ 65, 66, 67, 68, 69, 70, 71, 72, 73, 74,
+ /* 830 */ 75, 121, 121, 121, 121, 121, 121, 121, 121, 121,
+ /* 840 */ 121, 121, 121, 121, 38, 39, 40, 41, 42, 43,
+ /* 850 */ 44, 45, 46, 47, 48, 49, 50, 51, 121, 121,
+ /* 860 */ 121, 121, 121, 121, 121, 121, 121, 121, 121, 63,
+ /* 870 */ 64, 65, 66, 67, 68, 69, 70, 71, 72, 73,
+ /* 880 */ 74, 75, 1, 121, 121, 121, 88, 83, 1, 16,
+ /* 890 */ 16, 87, 121, 10, 16, 91, 121, 16, 15, 101,
+ /* 900 */ 102, 28, 28, 16, 21, 22, 28, 103, 104, 105,
+ /* 910 */ 27, 107, 121, 115, 31, 32, 33, 121, 1, 38,
+ /* 920 */ 39, 40, 41, 42, 43, 44, 45, 46, 47, 48,
+ /* 930 */ 49, 50, 51, 16, 121, 121, 121, 121, 121, 52,
+ /* 940 */ 121, 121, 121, 121, 121, 64, 65, 66, 67, 68,
+ /* 950 */ 69, 70, 71, 72, 73, 74, 75, 1, 121, 76,
+ /* 960 */ 77, 78, 83, 16, 16, 16, 87, 121, 10, 16,
+ /* 970 */ 91, 121, 16, 15, 121, 28, 28, 28, 121, 21,
+ /* 980 */ 22, 28, 103, 104, 105, 27, 107, 121, 121, 31,
+ /* 990 */ 32, 33, 121, 121, 38, 39, 40, 41, 42, 43,
+ /* 1000 */ 44, 45, 46, 47, 48, 49, 50, 51, 1, 121,
+ /* 1010 */ 121, 121, 121, 121, 121, 121, 121, 121, 121, 121,
+ /* 1020 */ 64, 65, 66, 67, 68, 69, 70, 71, 72, 73,
+ /* 1030 */ 74, 75, 121, 121, 76, 77, 78, 121, 121, 121,
+ /* 1040 */ 121, 121, 121, 121, 121, 38, 39, 40, 41, 42,
+ /* 1050 */ 43, 44, 45, 46, 47, 48, 49, 50, 51, 121,
+ /* 1060 */ 121, 121, 121, 121, 121, 121, 121, 121, 121, 121,
+ /* 1070 */ 121, 64, 65, 66, 67, 68, 69, 70, 71, 72,
+ /* 1080 */ 73, 74, 75, 121, 38, 39, 40, 41, 42, 43,
+ /* 1090 */ 44, 45, 46, 47, 48, 49, 50, 51, 121, 121,
+ /* 1100 */ 121, 121, 121, 121, 121, 121, 121, 121, 121, 121,
+ /* 1110 */ 64, 65, 66, 67, 68, 69, 70, 71, 72, 73,
+ /* 1120 */ 74, 75, 121, 121, 121, 121, 15, 121, 17, 18,
+ /* 1130 */ 121, 83, 21, 22, 16, 87, 121, 16, 27, 91,
+ /* 1140 */ 121, 121, 31, 32, 33, 34, 28, 36, 100, 28,
+ /* 1150 */ 39, 103, 104, 105, 121, 107, 83, 121, 121, 121,
+ /* 1160 */ 87, 121, 121, 121, 91, 54, 55, 56, 57, 58,
+ /* 1170 */ 121, 83, 61, 62, 63, 87, 103, 104, 105, 91,
+ /* 1180 */ 107, 121, 15, 121, 17, 18, 121, 76, 21, 22,
+ /* 1190 */ 16, 103, 104, 105, 27, 107, 16, 16, 31, 32,
+ /* 1200 */ 33, 34, 28, 36, 16, 121, 39, 16, 28, 28,
+ /* 1210 */ 83, 121, 121, 121, 87, 121, 28, 90, 91, 28,
+ /* 1220 */ 1, 54, 55, 56, 57, 58, 99, 100, 61, 62,
+ /* 1230 */ 103, 104, 105, 1, 107, 16, 121, 16, 15, 121,
+ /* 1240 */ 17, 18, 121, 76, 21, 22, 16, 28, 16, 28,
+ /* 1250 */ 27, 16, 20, 121, 31, 32, 33, 34, 28, 36,
+ /* 1260 */ 28, 121, 39, 28, 16, 121, 83, 121, 36, 121,
+ /* 1270 */ 87, 52, 121, 90, 91, 121, 28, 54, 55, 56,
+ /* 1280 */ 57, 58, 99, 100, 61, 62, 103, 104, 105, 121,
+ /* 1290 */ 107, 59, 121, 121, 15, 121, 17, 18, 121, 76,
+ /* 1300 */ 21, 22, 121, 121, 121, 121, 27, 121, 121, 121,
+ /* 1310 */ 31, 32, 33, 34, 121, 36, 121, 121, 39, 121,
+ /* 1320 */ 121, 121, 83, 121, 121, 121, 87, 121, 121, 90,
+ /* 1330 */ 91, 121, 1, 54, 55, 56, 57, 58, 99, 100,
+ /* 1340 */ 61, 62, 103, 104, 105, 121, 107, 16, 121, 121,
+ /* 1350 */ 15, 121, 17, 18, 121, 76, 21, 22, 121, 28,
+ /* 1360 */ 29, 121, 27, 121, 121, 121, 31, 32, 33, 34,
+ /* 1370 */ 121, 36, 121, 121, 39, 121, 121, 121, 83, 121,
+ /* 1380 */ 121, 121, 87, 52, 121, 90, 91, 121, 1, 54,
+ /* 1390 */ 55, 56, 57, 58, 99, 100, 61, 62, 103, 104,
+ /* 1400 */ 105, 121, 107, 16, 121, 121, 15, 121, 17, 18,
+ /* 1410 */ 121, 76, 21, 22, 121, 28, 121, 121, 27, 121,
+ /* 1420 */ 121, 121, 31, 32, 33, 34, 121, 36, 121, 121,
+ /* 1430 */ 39, 121, 121, 121, 83, 121, 121, 121, 87, 52,
+ /* 1440 */ 121, 90, 91, 121, 1, 54, 55, 56, 57, 58,
+ /* 1450 */ 99, 100, 61, 62, 103, 104, 105, 121, 107, 16,
+ /* 1460 */ 121, 121, 15, 121, 17, 18, 121, 76, 21, 22,
+ /* 1470 */ 121, 28, 121, 121, 27, 121, 121, 121, 31, 32,
+ /* 1480 */ 33, 34, 121, 36, 121, 121, 39, 121, 121, 121,
+ /* 1490 */ 83, 121, 121, 121, 87, 52, 121, 90, 91, 121,
+ /* 1500 */ 121, 54, 55, 56, 57, 58, 99, 100, 61, 62,
+ /* 1510 */ 103, 104, 105, 121, 107, 121, 121, 121, 15, 121,
+ /* 1520 */ 17, 18, 121, 76, 21, 22, 121, 121, 121, 121,
+ /* 1530 */ 27, 121, 121, 121, 31, 32, 33, 34, 121, 36,
+ /* 1540 */ 121, 121, 39, 121, 121, 121, 83, 121, 121, 121,
+ /* 1550 */ 87, 121, 121, 90, 91, 121, 121, 54, 55, 56,
+ /* 1560 */ 57, 58, 99, 100, 61, 62, 103, 104, 105, 121,
+ /* 1570 */ 107, 121, 121, 121, 15, 121, 17, 18, 121, 76,
+ /* 1580 */ 21, 22, 121, 121, 121, 121, 27, 121, 121, 121,
+ /* 1590 */ 31, 32, 33, 34, 121, 36, 121, 121, 39, 121,
+ /* 1600 */ 121, 121, 83, 121, 121, 121, 87, 121, 121, 90,
+ /* 1610 */ 91, 121, 121, 54, 55, 56, 57, 58, 99, 100,
+ /* 1620 */ 61, 62, 103, 104, 105, 121, 107, 121, 121, 121,
+ /* 1630 */ 15, 121, 17, 18, 121, 76, 21, 22, 121, 121,
+ /* 1640 */ 121, 121, 27, 121, 121, 121, 31, 32, 33, 34,
+ /* 1650 */ 121, 36, 121, 121, 39, 121, 121, 121, 83, 121,
+ /* 1660 */ 121, 121, 87, 121, 121, 90, 91, 121, 121, 54,
+ /* 1670 */ 55, 56, 57, 58, 99, 100, 61, 62, 103, 104,
+ /* 1680 */ 105, 121, 107, 121, 121, 121, 15, 121, 17, 18,
+ /* 1690 */ 121, 76, 21, 22, 121, 121, 121, 121, 27, 121,
+ /* 1700 */ 121, 121, 31, 32, 33, 34, 121, 36, 121, 121,
+ /* 1710 */ 39, 121, 121, 121, 83, 121, 121, 121, 87, 121,
+ /* 1720 */ 121, 90, 91, 121, 121, 54, 55, 56, 57, 58,
+ /* 1730 */ 99, 100, 61, 121, 103, 104, 105, 121, 107, 121,
+ /* 1740 */ 121, 121, 15, 121, 17, 18, 121, 76, 21, 22,
+ /* 1750 */ 121, 121, 121, 121, 27, 121, 121, 121, 31, 32,
+ /* 1760 */ 33, 34, 121, 36, 88, 89, 39, 121, 121, 121,
+ /* 1770 */ 121, 121, 121, 121, 98, 121, 121, 101, 102, 121,
+ /* 1780 */ 16, 54, 55, 56, 57, 58, 121, 23, 61, 25,
+ /* 1790 */ 26, 115, 28, 29, 121, 121, 121, 121, 121, 35,
+ /* 1800 */ 36, 37, 121, 76, 121, 121, 121, 121, 121, 121,
+ /* 1810 */ 121, 121, 121, 83, 121, 121, 52, 87, 121, 121,
+ /* 1820 */ 90, 91, 121, 59, 121, 121, 121, 63, 121, 99,
+ /* 1830 */ 100, 121, 121, 103, 104, 105, 121, 107, 83, 121,
+ /* 1840 */ 121, 77, 87, 121, 121, 90, 91, 121, 118, 121,
+ /* 1850 */ 121, 121, 121, 121, 99, 100, 121, 121, 103, 104,
+ /* 1860 */ 105, 121, 107, 121, 83, 121, 121, 121, 87, 121,
+ /* 1870 */ 121, 90, 91, 121, 83, 121, 121, 121, 87, 121,
+ /* 1880 */ 99, 100, 91, 83, 103, 104, 105, 87, 107, 121,
+ /* 1890 */ 90, 91, 121, 121, 103, 104, 105, 121, 107, 99,
+ /* 1900 */ 100, 121, 121, 103, 104, 105, 121, 107, 121, 121,
+ /* 1910 */ 121, 83, 121, 121, 121, 87, 121, 121, 90, 91,
+ /* 1920 */ 121, 121, 83, 121, 121, 121, 87, 99, 100, 90,
+ /* 1930 */ 91, 103, 104, 105, 121, 107, 121, 121, 99, 100,
+ /* 1940 */ 121, 121, 103, 104, 105, 121, 107, 121, 83, 121,
+ /* 1950 */ 121, 121, 87, 121, 121, 90, 91, 121, 83, 121,
+ /* 1960 */ 121, 121, 87, 121, 99, 100, 91, 83, 103, 104,
+ /* 1970 */ 105, 87, 107, 121, 90, 91, 121, 121, 103, 104,
+ /* 1980 */ 105, 121, 107, 99, 100, 121, 121, 103, 104, 105,
+ /* 1990 */ 121, 107, 121, 121, 121, 83, 121, 121, 121, 87,
+ /* 2000 */ 121, 121, 90, 91, 121, 121, 83, 121, 121, 121,
+ /* 2010 */ 87, 99, 100, 90, 91, 103, 104, 105, 121, 107,
+ /* 2020 */ 121, 121, 99, 100, 121, 121, 103, 104, 105, 121,
+ /* 2030 */ 107, 121, 83, 88, 89, 121, 87, 121, 121, 90,
+ /* 2040 */ 91, 121, 121, 98, 121, 121, 101, 102, 99, 100,
+ /* 2050 */ 121, 83, 103, 104, 105, 87, 107, 121, 90, 91,
+ /* 2060 */ 115, 121, 121, 121, 88, 89, 121, 99, 100, 121,
+ /* 2070 */ 121, 103, 104, 105, 98, 107, 121, 101, 102, 83,
+ /* 2080 */ 121, 121, 121, 87, 121, 121, 90, 91, 121, 121,
+ /* 2090 */ 83, 115, 121, 121, 87, 99, 100, 90, 91, 103,
+ /* 2100 */ 104, 105, 121, 107, 121, 121, 99, 100, 121, 121,
+ /* 2110 */ 103, 104, 105, 121, 107, 121, 83, 88, 89, 121,
+ /* 2120 */ 87, 121, 121, 90, 91, 121, 121, 98, 121, 121,
+ /* 2130 */ 101, 102, 99, 100, 121, 83, 103, 104, 105, 87,
+ /* 2140 */ 107, 121, 90, 91, 115, 121, 121, 121, 88, 89,
+ /* 2150 */ 121, 99, 100, 121, 121, 103, 104, 105, 98, 107,
+ /* 2160 */ 121, 101, 102, 83, 121, 121, 121, 87, 121, 121,
+ /* 2170 */ 90, 91, 121, 121, 83, 115, 121, 121, 87, 99,
+ /* 2180 */ 100, 90, 91, 103, 104, 105, 121, 107, 121, 121,
+ /* 2190 */ 99, 100, 121, 121, 103, 104, 105, 121, 107, 121,
+ /* 2200 */ 83, 88, 89, 121, 87, 121, 121, 90, 91, 121,
+ /* 2210 */ 121, 98, 121, 121, 101, 102, 99, 100, 121, 83,
+ /* 2220 */ 103, 104, 105, 87, 107, 121, 90, 91, 115, 121,
+ /* 2230 */ 121, 121, 121, 121, 121, 99, 100, 121, 121, 103,
+ /* 2240 */ 104, 105, 121, 107, 121, 121, 121, 83, 121, 121,
+ /* 2250 */ 121, 87, 121, 121, 90, 91, 121, 121, 83, 121,
+ /* 2260 */ 121, 121, 87, 99, 100, 90, 91, 103, 104, 105,
+ /* 2270 */ 121, 107, 121, 121, 99, 100, 121, 121, 103, 104,
+ /* 2280 */ 105, 121, 107, 121, 83, 121, 121, 121, 87, 121,
+ /* 2290 */ 121, 90, 91, 121, 121, 121, 121, 121, 121, 121,
+ /* 2300 */ 99, 100, 121, 83, 103, 104, 105, 87, 107, 121,
+ /* 2310 */ 90, 91, 121, 121, 121, 121, 121, 121, 121, 99,
+ /* 2320 */ 100, 121, 121, 103, 104, 105, 121, 107, 121, 121,
+ /* 2330 */ 121, 83, 121, 121, 121, 87, 121, 121, 90, 91,
+ /* 2340 */ 121, 121, 83, 121, 121, 121, 87, 99, 100, 90,
+ /* 2350 */ 91, 103, 104, 105, 121, 107, 121, 121, 99, 100,
+ /* 2360 */ 121, 121, 103, 104, 105, 121, 107, 121, 83, 121,
+ /* 2370 */ 121, 121, 87, 121, 121, 90, 91, 121, 121, 121,
+ /* 2380 */ 121, 121, 121, 121, 99, 100, 121, 121, 103, 104,
+ /* 2390 */ 105, 121, 107,
);
- const YY_SHIFT_USE_DFLT = -45;
+ const YY_SHIFT_USE_DFLT = -5;
const YY_SHIFT_MAX = 252;
static public $yy_shift_ofst = array(
- /* 0 */ -2, 1289, 1289, 1124, 1124, 1124, 1399, 1399, 1069, 1564,
- /* 10 */ 1124, 1124, 1124, 1124, 1124, 1124, 1509, 1124, 1124, 1454,
- /* 20 */ 1509, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124,
- /* 30 */ 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1344, 1124, 1124,
- /* 40 */ 1234, 1124, 1124, 1234, 1179, 1179, 1619, 1674, 1619, 1619,
- /* 50 */ 1619, 1619, 1619, 197, 49, -1, 123, 595, 595, 595,
- /* 60 */ 793, 867, 917, 495, 345, 271, 395, 445, 545, 743,
- /* 70 */ 669, 967, 967, 967, 967, 967, 967, 967, 967, 967,
- /* 80 */ 967, 967, 967, 967, 967, 967, 967, 967, 967, 967,
- /* 90 */ 1005, 1005, 1188, 1142, 1252, 1246, 474, -2, 745, 270,
- /* 100 */ -4, 1243, 344, 198, 1243, 344, 363, 435, 474, 474,
- /* 110 */ 474, 1088, 47, 670, 1132, 161, 675, 125, 313, 3,
- /* 120 */ 79, 211, 201, 272, 196, 361, 1248, 1006, 411, 311,
- /* 130 */ 438, 1065, 311, 435, 311, 435, 289, 289, 311, 311,
- /* 140 */ 311, 459, 398, 438, 311, 311, 311, 549, 85, 85,
- /* 150 */ 550, 327, 327, 327, 327, 327, 327, 327, 327, -45,
- /* 160 */ 238, 61, 350, 337, 0, 856, 736, 741, -44, 215,
- /* 170 */ -44, 737, 740, 735, -44, -44, 1197, 1175, -44, 1222,
- /* 180 */ 1247, 1232, 1145, 865, 359, 859, 866, 1122, 1121, 1077,
- /* 190 */ 704, 1078, 85, 108, 327, 577, 85, 585, 577, 327,
- /* 200 */ 85, 108, 143, -45, -45, -45, -45, 1710, 119, 193,
- /* 210 */ 48, 67, 73, 266, 266, 268, 269, 291, 676, 340,
- /* 220 */ 547, 50, 666, 240, 523, 516, 548, 437, 510, 491,
- /* 230 */ 143, 517, 539, 538, 536, 534, 535, 502, 490, 463,
- /* 240 */ 482, 439, 461, 458, 427, 485, 486, 465, 464, 505,
- /* 250 */ 453, 488, 546,
+ /* 0 */ 1, 1391, 1391, 1223, 1167, 1167, 1167, 1223, 1111, 1167,
+ /* 10 */ 1167, 1167, 1503, 1167, 1559, 1167, 1167, 1167, 1167, 1167,
+ /* 20 */ 1167, 1167, 1167, 1167, 1167, 1615, 1167, 1167, 1167, 1167,
+ /* 30 */ 1503, 1167, 1167, 1447, 1167, 1167, 1167, 1167, 1279, 1167,
+ /* 40 */ 1167, 1167, 1279, 1167, 1335, 1335, 1727, 1671, 1727, 1727,
+ /* 50 */ 1727, 1727, 1727, 224, 74, 149, -1, 755, 755, 755,
+ /* 60 */ 956, 881, 806, 527, 326, 704, 275, 377, 653, 602,
+ /* 70 */ 452, 1007, 1007, 1007, 1007, 1007, 1007, 1007, 1007, 1007,
+ /* 80 */ 1007, 1007, 1007, 1007, 1007, 1007, 1007, 1007, 1007, 1007,
+ /* 90 */ 1046, 1046, 1232, 1443, 407, 1, 958, 73, 146, 225,
+ /* 100 */ 546, 61, 61, 443, 443, 243, 371, 407, 407, 883,
+ /* 110 */ 47, 1331, 11, 189, 1387, 1219, 226, 56, 138, 235,
+ /* 120 */ 75, 887, 219, 366, 371, 367, 366, 366, 368, 293,
+ /* 130 */ 371, 366, 917, 366, 366, 445, 366, 418, 366, 1248,
+ /* 140 */ 368, 366, 300, 395, 293, 636, 629, 636, 616, 636,
+ /* 150 */ 610, 636, 636, 636, 636, 616, 636, -5, 166, 167,
+ /* 160 */ 601, 603, 873, 594, 148, 217, 148, 473, 947, 148,
+ /* 170 */ 874, 878, 948, 1235, 148, 543, 1191, 1221, 148, 1230,
+ /* 180 */ 563, 1188, 1121, 1118, 953, 949, 1181, 1174, 1180, 670,
+ /* 190 */ 632, 632, 616, 616, 636, 616, 636, 102, 102, 396,
+ /* 200 */ -5, -5, -5, -5, -5, 1764, 150, 22, 118, 71,
+ /* 210 */ 176, -4, 486, 144, 144, 213, 270, 261, 296, 328,
+ /* 220 */ 449, 271, 295, 615, 579, 560, 566, 441, 564, 396,
+ /* 230 */ 528, 591, 551, 589, 571, 614, 552, 529, 539, 494,
+ /* 240 */ 448, 492, 471, 450, 488, 469, 459, 511, 522, 510,
+ /* 250 */ 496, 523, 500,
);
- const YY_REDUCE_USE_DFLT = -91;
- const YY_REDUCE_MAX = 206;
+ const YY_REDUCE_USE_DFLT = -86;
+ const YY_REDUCE_MAX = 204;
static public $yy_reduce_ofst = array(
- /* 0 */ -48, 1676, 1708, 117, 43, 265, 191, 591, 1991, 1967,
- /* 10 */ 1941, 2009, 2031, 2081, 2057, 1919, 1901, 1787, 1759, 1730,
- /* 20 */ 1811, 1829, 1877, 1851, 2099, 2121, 2391, 2369, 2351, 2441,
- /* 30 */ 2481, 2459, 2507, 2327, 787, 2301, 2189, 2171, 2147, 2211,
- /* 40 */ 2237, 2279, 2261, 2417, 1116, 2531, 1250, 1305, 1085, 1195,
- /* 50 */ 1140, 1360, 1415, 1580, 1739, 661, 587, 1794, 1766, 587,
- /* 60 */ 1034, 1034, 1034, 1034, 1034, 1034, 1034, 1034, 1034, 1034,
- /* 70 */ 1034, 1034, 1034, 1034, 1034, 1034, 1034, 1034, 1034, 1034,
- /* 80 */ 1034, 1034, 1034, 1034, 1034, 1034, 1034, 1034, 1034, 1034,
- /* 90 */ 1034, 1034, 14, 113, 62, 113, 136, -25, 204, 187,
- /* 100 */ 783, 260, 261, 169, 309, 791, 316, 65, 360, 384,
- /* 110 */ 40, 937, 315, -6, -6, 984, -6, 244, 95, 244,
- /* 120 */ -6, 341, -6, 95, 244, 710, 433, 95, 710, 884,
- /* 130 */ 834, 314, 412, 312, 512, 333, 367, 418, 710, 1204,
- /* 140 */ 1074, 1184, -6, 710, 392, 1032, 987, 160, 95, 72,
- /* 150 */ 86, -6, -6, -6, -6, -6, -6, -6, -6, -6,
- /* 160 */ 468, 469, 476, 476, 476, 476, 476, 476, 467, 466,
- /* 170 */ 467, 476, 476, 476, 467, 467, 476, 476, 467, 476,
- /* 180 */ 476, 476, 476, 476, -90, 476, 476, 476, 476, 476,
- /* 190 */ -90, 476, 42, 481, -90, 456, 42, 513, 456, -90,
- /* 200 */ 42, 356, 324, 217, 126, 168, 306,
+ /* 0 */ -63, -7, 1730, 68, 446, 373, 143, 521, 2091, 2117,
+ /* 10 */ 1800, 1407, 2080, 1884, 1912, 1575, 1949, 1923, 1865, 1968,
+ /* 20 */ 1996, 2052, 2033, 2007, 1839, 1828, 1351, 1295, 1183, 1239,
+ /* 30 */ 1463, 1519, 1781, 1755, 1631, 2175, 2248, 2201, 2164, 2285,
+ /* 40 */ 2259, 2136, 2220, 1127, 379, 1048, 451, 1073, 804, 879,
+ /* 50 */ 1875, 1791, 1088, 1976, 1945, 1676, 2060, 1676, 2113, 2029,
+ /* 60 */ 798, 798, 798, 798, 798, 798, 798, 798, 798, 798,
+ /* 70 */ 798, 798, 798, 798, 798, 798, 798, 798, 798, 798,
+ /* 80 */ 798, 798, 798, 798, 798, 798, 798, 798, 798, 798,
+ /* 90 */ 798, 798, 39, 113, 214, -81, 43, 442, -74, 20,
+ /* 100 */ -10, 239, 264, 525, 517, 378, 188, 314, 291, 697,
+ /* 110 */ 170, -6, 520, 248, -6, -6, 248, -6, 248, 246,
+ /* 120 */ 172, -6, 172, 568, 313, 495, 495, 569, 570, 324,
+ /* 130 */ 244, 292, 245, 420, 345, 172, 301, 495, 621, 491,
+ /* 140 */ 495, 619, -6, 620, 325, -6, 211, -6, 147, -6,
+ /* 150 */ 81, -6, -6, -6, -6, 172, -6, -6, 545, 549,
+ /* 160 */ 536, 536, 536, 536, 530, 548, 530, 540, 536, 530,
+ /* 170 */ 536, 536, 536, 536, 530, 540, 536, 536, 530, 536,
+ /* 180 */ 540, 536, 536, 536, 536, 536, 536, 536, 536, 596,
+ /* 190 */ 567, 588, 550, 550, 540, 550, 540, -85, -85, 331,
+ /* 200 */ 306, 349, 337, 260, 134,
);
static public $yyExpectedTokens = array(
- /* 0 */ array(3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 15, 21, 22, 27, 31, 32, ),
- /* 1 */ array(15, 17, 18, 21, 22, 27, 31, 32, 33, 35, 38, 53, 54, 55, 56, 57, 60, 61, 75, ),
- /* 2 */ array(15, 17, 18, 21, 22, 27, 31, 32, 33, 35, 38, 53, 54, 55, 56, 57, 60, 61, 75, ),
- /* 3 */ array(15, 17, 18, 21, 22, 27, 31, 32, 33, 35, 38, 53, 54, 55, 56, 57, 60, 61, 75, ),
- /* 4 */ array(15, 17, 18, 21, 22, 27, 31, 32, 33, 35, 38, 53, 54, 55, 56, 57, 60, 61, 75, ),
- /* 5 */ array(15, 17, 18, 21, 22, 27, 31, 32, 33, 35, 38, 53, 54, 55, 56, 57, 60, 61, 75, ),
- /* 6 */ array(15, 17, 18, 21, 22, 27, 31, 32, 33, 35, 38, 53, 54, 55, 56, 57, 60, 61, 75, ),
- /* 7 */ array(15, 17, 18, 21, 22, 27, 31, 32, 33, 35, 38, 53, 54, 55, 56, 57, 60, 61, 75, ),
- /* 8 */ array(15, 17, 18, 21, 22, 27, 31, 32, 33, 35, 38, 53, 54, 55, 56, 57, 60, 61, 62, 75, ),
- /* 9 */ array(15, 17, 18, 21, 22, 27, 31, 32, 33, 35, 38, 53, 54, 55, 56, 57, 60, 61, 75, ),
- /* 10 */ array(15, 17, 18, 21, 22, 27, 31, 32, 33, 35, 38, 53, 54, 55, 56, 57, 60, 61, 75, ),
- /* 11 */ array(15, 17, 18, 21, 22, 27, 31, 32, 33, 35, 38, 53, 54, 55, 56, 57, 60, 61, 75, ),
- /* 12 */ array(15, 17, 18, 21, 22, 27, 31, 32, 33, 35, 38, 53, 54, 55, 56, 57, 60, 61, 75, ),
- /* 13 */ array(15, 17, 18, 21, 22, 27, 31, 32, 33, 35, 38, 53, 54, 55, 56, 57, 60, 61, 75, ),
- /* 14 */ array(15, 17, 18, 21, 22, 27, 31, 32, 33, 35, 38, 53, 54, 55, 56, 57, 60, 61, 75, ),
- /* 15 */ array(15, 17, 18, 21, 22, 27, 31, 32, 33, 35, 38, 53, 54, 55, 56, 57, 60, 61, 75, ),
- /* 16 */ array(15, 17, 18, 21, 22, 27, 31, 32, 33, 35, 38, 53, 54, 55, 56, 57, 60, 61, 75, ),
- /* 17 */ array(15, 17, 18, 21, 22, 27, 31, 32, 33, 35, 38, 53, 54, 55, 56, 57, 60, 61, 75, ),
- /* 18 */ array(15, 17, 18, 21, 22, 27, 31, 32, 33, 35, 38, 53, 54, 55, 56, 57, 60, 61, 75, ),
- /* 19 */ array(15, 17, 18, 21, 22, 27, 31, 32, 33, 35, 38, 53, 54, 55, 56, 57, 60, 61, 75, ),
- /* 20 */ array(15, 17, 18, 21, 22, 27, 31, 32, 33, 35, 38, 53, 54, 55, 56, 57, 60, 61, 75, ),
- /* 21 */ array(15, 17, 18, 21, 22, 27, 31, 32, 33, 35, 38, 53, 54, 55, 56, 57, 60, 61, 75, ),
- /* 22 */ array(15, 17, 18, 21, 22, 27, 31, 32, 33, 35, 38, 53, 54, 55, 56, 57, 60, 61, 75, ),
- /* 23 */ array(15, 17, 18, 21, 22, 27, 31, 32, 33, 35, 38, 53, 54, 55, 56, 57, 60, 61, 75, ),
- /* 24 */ array(15, 17, 18, 21, 22, 27, 31, 32, 33, 35, 38, 53, 54, 55, 56, 57, 60, 61, 75, ),
- /* 25 */ array(15, 17, 18, 21, 22, 27, 31, 32, 33, 35, 38, 53, 54, 55, 56, 57, 60, 61, 75, ),
- /* 26 */ array(15, 17, 18, 21, 22, 27, 31, 32, 33, 35, 38, 53, 54, 55, 56, 57, 60, 61, 75, ),
- /* 27 */ array(15, 17, 18, 21, 22, 27, 31, 32, 33, 35, 38, 53, 54, 55, 56, 57, 60, 61, 75, ),
- /* 28 */ array(15, 17, 18, 21, 22, 27, 31, 32, 33, 35, 38, 53, 54, 55, 56, 57, 60, 61, 75, ),
- /* 29 */ array(15, 17, 18, 21, 22, 27, 31, 32, 33, 35, 38, 53, 54, 55, 56, 57, 60, 61, 75, ),
- /* 30 */ array(15, 17, 18, 21, 22, 27, 31, 32, 33, 35, 38, 53, 54, 55, 56, 57, 60, 61, 75, ),
- /* 31 */ array(15, 17, 18, 21, 22, 27, 31, 32, 33, 35, 38, 53, 54, 55, 56, 57, 60, 61, 75, ),
- /* 32 */ array(15, 17, 18, 21, 22, 27, 31, 32, 33, 35, 38, 53, 54, 55, 56, 57, 60, 61, 75, ),
- /* 33 */ array(15, 17, 18, 21, 22, 27, 31, 32, 33, 35, 38, 53, 54, 55, 56, 57, 60, 61, 75, ),
- /* 34 */ array(15, 17, 18, 21, 22, 27, 31, 32, 33, 35, 38, 53, 54, 55, 56, 57, 60, 61, 75, ),
- /* 35 */ array(15, 17, 18, 21, 22, 27, 31, 32, 33, 35, 38, 53, 54, 55, 56, 57, 60, 61, 75, ),
- /* 36 */ array(15, 17, 18, 21, 22, 27, 31, 32, 33, 35, 38, 53, 54, 55, 56, 57, 60, 61, 75, ),
- /* 37 */ array(15, 17, 18, 21, 22, 27, 31, 32, 33, 35, 38, 53, 54, 55, 56, 57, 60, 61, 75, ),
- /* 38 */ array(15, 17, 18, 21, 22, 27, 31, 32, 33, 35, 38, 53, 54, 55, 56, 57, 60, 61, 75, ),
- /* 39 */ array(15, 17, 18, 21, 22, 27, 31, 32, 33, 35, 38, 53, 54, 55, 56, 57, 60, 61, 75, ),
- /* 40 */ array(15, 17, 18, 21, 22, 27, 31, 32, 33, 35, 38, 53, 54, 55, 56, 57, 60, 61, 75, ),
- /* 41 */ array(15, 17, 18, 21, 22, 27, 31, 32, 33, 35, 38, 53, 54, 55, 56, 57, 60, 61, 75, ),
- /* 42 */ array(15, 17, 18, 21, 22, 27, 31, 32, 33, 35, 38, 53, 54, 55, 56, 57, 60, 61, 75, ),
- /* 43 */ array(15, 17, 18, 21, 22, 27, 31, 32, 33, 35, 38, 53, 54, 55, 56, 57, 60, 61, 75, ),
- /* 44 */ array(15, 17, 18, 21, 22, 27, 31, 32, 33, 35, 38, 53, 54, 55, 56, 57, 60, 61, 75, ),
- /* 45 */ array(15, 17, 18, 21, 22, 27, 31, 32, 33, 35, 38, 53, 54, 55, 56, 57, 60, 61, 75, ),
- /* 46 */ array(15, 17, 18, 21, 22, 27, 31, 32, 33, 35, 38, 53, 54, 55, 56, 57, 60, 75, ),
- /* 47 */ array(15, 17, 18, 21, 22, 27, 31, 32, 33, 35, 38, 53, 54, 55, 56, 57, 60, 75, ),
- /* 48 */ array(15, 17, 18, 21, 22, 27, 31, 32, 33, 35, 38, 53, 54, 55, 56, 57, 60, 75, ),
- /* 49 */ array(15, 17, 18, 21, 22, 27, 31, 32, 33, 35, 38, 53, 54, 55, 56, 57, 60, 75, ),
- /* 50 */ array(15, 17, 18, 21, 22, 27, 31, 32, 33, 35, 38, 53, 54, 55, 56, 57, 60, 75, ),
- /* 51 */ array(15, 17, 18, 21, 22, 27, 31, 32, 33, 35, 38, 53, 54, 55, 56, 57, 60, 75, ),
- /* 52 */ array(15, 17, 18, 21, 22, 27, 31, 32, 33, 35, 38, 53, 54, 55, 56, 57, 60, 75, ),
- /* 53 */ array(1, 16, 28, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, ),
- /* 54 */ array(1, 26, 28, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, ),
- /* 55 */ array(1, 16, 28, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, ),
- /* 56 */ array(1, 16, 28, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, ),
- /* 57 */ array(1, 28, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, ),
- /* 58 */ array(1, 28, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, ),
- /* 59 */ array(1, 28, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, ),
- /* 60 */ array(1, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, ),
- /* 61 */ array(1, 16, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, ),
- /* 62 */ array(1, 29, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, ),
- /* 63 */ array(1, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, ),
- /* 64 */ array(1, 16, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, ),
- /* 65 */ array(1, 16, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, ),
- /* 66 */ array(1, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, ),
- /* 67 */ array(1, 2, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, ),
- /* 68 */ array(1, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 76, ),
- /* 69 */ array(1, 16, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, ),
- /* 70 */ array(1, 23, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, ),
- /* 71 */ array(1, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, ),
- /* 72 */ array(1, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, ),
- /* 73 */ array(1, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, ),
- /* 74 */ array(1, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, ),
- /* 75 */ array(1, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, ),
- /* 76 */ array(1, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, ),
- /* 77 */ array(1, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, ),
- /* 78 */ array(1, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, ),
- /* 79 */ array(1, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, ),
- /* 80 */ array(1, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, ),
- /* 81 */ array(1, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, ),
- /* 82 */ array(1, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, ),
- /* 83 */ array(1, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, ),
- /* 84 */ array(1, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, ),
- /* 85 */ array(1, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, ),
- /* 86 */ array(1, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, ),
- /* 87 */ array(1, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, ),
- /* 88 */ array(1, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, ),
- /* 89 */ array(1, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, ),
- /* 90 */ array(37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, ),
- /* 91 */ array(37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, ),
- /* 92 */ array(1, 16, 20, 28, 35, 58, ),
- /* 93 */ array(1, 16, 24, 28, ),
- /* 94 */ array(1, 16, 28, 51, ),
- /* 95 */ array(1, 16, 24, 28, ),
- /* 96 */ array(1, 28, ),
- /* 97 */ array(3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 15, 21, 22, 27, 31, 32, ),
- /* 98 */ array(10, 15, 21, 22, 27, 31, 32, 75, 76, 77, ),
- /* 99 */ array(15, 18, 28, 30, ),
- /* 100 */ array(15, 18, 28, 30, ),
+ /* 0 */ array(3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 15, 21, 22, 27, 31, 32, 33, ),
+ /* 1 */ array(15, 17, 18, 21, 22, 27, 31, 32, 33, 34, 36, 39, 54, 55, 56, 57, 58, 61, 62, 76, ),
+ /* 2 */ array(15, 17, 18, 21, 22, 27, 31, 32, 33, 34, 36, 39, 54, 55, 56, 57, 58, 61, 62, 76, ),
+ /* 3 */ array(15, 17, 18, 21, 22, 27, 31, 32, 33, 34, 36, 39, 54, 55, 56, 57, 58, 61, 62, 76, ),
+ /* 4 */ array(15, 17, 18, 21, 22, 27, 31, 32, 33, 34, 36, 39, 54, 55, 56, 57, 58, 61, 62, 76, ),
+ /* 5 */ array(15, 17, 18, 21, 22, 27, 31, 32, 33, 34, 36, 39, 54, 55, 56, 57, 58, 61, 62, 76, ),
+ /* 6 */ array(15, 17, 18, 21, 22, 27, 31, 32, 33, 34, 36, 39, 54, 55, 56, 57, 58, 61, 62, 76, ),
+ /* 7 */ array(15, 17, 18, 21, 22, 27, 31, 32, 33, 34, 36, 39, 54, 55, 56, 57, 58, 61, 62, 76, ),
+ /* 8 */ array(15, 17, 18, 21, 22, 27, 31, 32, 33, 34, 36, 39, 54, 55, 56, 57, 58, 61, 62, 63, 76, ),
+ /* 9 */ array(15, 17, 18, 21, 22, 27, 31, 32, 33, 34, 36, 39, 54, 55, 56, 57, 58, 61, 62, 76, ),
+ /* 10 */ array(15, 17, 18, 21, 22, 27, 31, 32, 33, 34, 36, 39, 54, 55, 56, 57, 58, 61, 62, 76, ),
+ /* 11 */ array(15, 17, 18, 21, 22, 27, 31, 32, 33, 34, 36, 39, 54, 55, 56, 57, 58, 61, 62, 76, ),
+ /* 12 */ array(15, 17, 18, 21, 22, 27, 31, 32, 33, 34, 36, 39, 54, 55, 56, 57, 58, 61, 62, 76, ),
+ /* 13 */ array(15, 17, 18, 21, 22, 27, 31, 32, 33, 34, 36, 39, 54, 55, 56, 57, 58, 61, 62, 76, ),
+ /* 14 */ array(15, 17, 18, 21, 22, 27, 31, 32, 33, 34, 36, 39, 54, 55, 56, 57, 58, 61, 62, 76, ),
+ /* 15 */ array(15, 17, 18, 21, 22, 27, 31, 32, 33, 34, 36, 39, 54, 55, 56, 57, 58, 61, 62, 76, ),
+ /* 16 */ array(15, 17, 18, 21, 22, 27, 31, 32, 33, 34, 36, 39, 54, 55, 56, 57, 58, 61, 62, 76, ),
+ /* 17 */ array(15, 17, 18, 21, 22, 27, 31, 32, 33, 34, 36, 39, 54, 55, 56, 57, 58, 61, 62, 76, ),
+ /* 18 */ array(15, 17, 18, 21, 22, 27, 31, 32, 33, 34, 36, 39, 54, 55, 56, 57, 58, 61, 62, 76, ),
+ /* 19 */ array(15, 17, 18, 21, 22, 27, 31, 32, 33, 34, 36, 39, 54, 55, 56, 57, 58, 61, 62, 76, ),
+ /* 20 */ array(15, 17, 18, 21, 22, 27, 31, 32, 33, 34, 36, 39, 54, 55, 56, 57, 58, 61, 62, 76, ),
+ /* 21 */ array(15, 17, 18, 21, 22, 27, 31, 32, 33, 34, 36, 39, 54, 55, 56, 57, 58, 61, 62, 76, ),
+ /* 22 */ array(15, 17, 18, 21, 22, 27, 31, 32, 33, 34, 36, 39, 54, 55, 56, 57, 58, 61, 62, 76, ),
+ /* 23 */ array(15, 17, 18, 21, 22, 27, 31, 32, 33, 34, 36, 39, 54, 55, 56, 57, 58, 61, 62, 76, ),
+ /* 24 */ array(15, 17, 18, 21, 22, 27, 31, 32, 33, 34, 36, 39, 54, 55, 56, 57, 58, 61, 62, 76, ),
+ /* 25 */ array(15, 17, 18, 21, 22, 27, 31, 32, 33, 34, 36, 39, 54, 55, 56, 57, 58, 61, 62, 76, ),
+ /* 26 */ array(15, 17, 18, 21, 22, 27, 31, 32, 33, 34, 36, 39, 54, 55, 56, 57, 58, 61, 62, 76, ),
+ /* 27 */ array(15, 17, 18, 21, 22, 27, 31, 32, 33, 34, 36, 39, 54, 55, 56, 57, 58, 61, 62, 76, ),
+ /* 28 */ array(15, 17, 18, 21, 22, 27, 31, 32, 33, 34, 36, 39, 54, 55, 56, 57, 58, 61, 62, 76, ),
+ /* 29 */ array(15, 17, 18, 21, 22, 27, 31, 32, 33, 34, 36, 39, 54, 55, 56, 57, 58, 61, 62, 76, ),
+ /* 30 */ array(15, 17, 18, 21, 22, 27, 31, 32, 33, 34, 36, 39, 54, 55, 56, 57, 58, 61, 62, 76, ),
+ /* 31 */ array(15, 17, 18, 21, 22, 27, 31, 32, 33, 34, 36, 39, 54, 55, 56, 57, 58, 61, 62, 76, ),
+ /* 32 */ array(15, 17, 18, 21, 22, 27, 31, 32, 33, 34, 36, 39, 54, 55, 56, 57, 58, 61, 62, 76, ),
+ /* 33 */ array(15, 17, 18, 21, 22, 27, 31, 32, 33, 34, 36, 39, 54, 55, 56, 57, 58, 61, 62, 76, ),
+ /* 34 */ array(15, 17, 18, 21, 22, 27, 31, 32, 33, 34, 36, 39, 54, 55, 56, 57, 58, 61, 62, 76, ),
+ /* 35 */ array(15, 17, 18, 21, 22, 27, 31, 32, 33, 34, 36, 39, 54, 55, 56, 57, 58, 61, 62, 76, ),
+ /* 36 */ array(15, 17, 18, 21, 22, 27, 31, 32, 33, 34, 36, 39, 54, 55, 56, 57, 58, 61, 62, 76, ),
+ /* 37 */ array(15, 17, 18, 21, 22, 27, 31, 32, 33, 34, 36, 39, 54, 55, 56, 57, 58, 61, 62, 76, ),
+ /* 38 */ array(15, 17, 18, 21, 22, 27, 31, 32, 33, 34, 36, 39, 54, 55, 56, 57, 58, 61, 62, 76, ),
+ /* 39 */ array(15, 17, 18, 21, 22, 27, 31, 32, 33, 34, 36, 39, 54, 55, 56, 57, 58, 61, 62, 76, ),
+ /* 40 */ array(15, 17, 18, 21, 22, 27, 31, 32, 33, 34, 36, 39, 54, 55, 56, 57, 58, 61, 62, 76, ),
+ /* 41 */ array(15, 17, 18, 21, 22, 27, 31, 32, 33, 34, 36, 39, 54, 55, 56, 57, 58, 61, 62, 76, ),
+ /* 42 */ array(15, 17, 18, 21, 22, 27, 31, 32, 33, 34, 36, 39, 54, 55, 56, 57, 58, 61, 62, 76, ),
+ /* 43 */ array(15, 17, 18, 21, 22, 27, 31, 32, 33, 34, 36, 39, 54, 55, 56, 57, 58, 61, 62, 76, ),
+ /* 44 */ array(15, 17, 18, 21, 22, 27, 31, 32, 33, 34, 36, 39, 54, 55, 56, 57, 58, 61, 62, 76, ),
+ /* 45 */ array(15, 17, 18, 21, 22, 27, 31, 32, 33, 34, 36, 39, 54, 55, 56, 57, 58, 61, 62, 76, ),
+ /* 46 */ array(15, 17, 18, 21, 22, 27, 31, 32, 33, 34, 36, 39, 54, 55, 56, 57, 58, 61, 76, ),
+ /* 47 */ array(15, 17, 18, 21, 22, 27, 31, 32, 33, 34, 36, 39, 54, 55, 56, 57, 58, 61, 76, ),
+ /* 48 */ array(15, 17, 18, 21, 22, 27, 31, 32, 33, 34, 36, 39, 54, 55, 56, 57, 58, 61, 76, ),
+ /* 49 */ array(15, 17, 18, 21, 22, 27, 31, 32, 33, 34, 36, 39, 54, 55, 56, 57, 58, 61, 76, ),
+ /* 50 */ array(15, 17, 18, 21, 22, 27, 31, 32, 33, 34, 36, 39, 54, 55, 56, 57, 58, 61, 76, ),
+ /* 51 */ array(15, 17, 18, 21, 22, 27, 31, 32, 33, 34, 36, 39, 54, 55, 56, 57, 58, 61, 76, ),
+ /* 52 */ array(15, 17, 18, 21, 22, 27, 31, 32, 33, 34, 36, 39, 54, 55, 56, 57, 58, 61, 76, ),
+ /* 53 */ array(1, 16, 28, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, ),
+ /* 54 */ array(1, 16, 28, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, ),
+ /* 55 */ array(1, 16, 28, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, ),
+ /* 56 */ array(1, 26, 28, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, ),
+ /* 57 */ array(1, 28, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, ),
+ /* 58 */ array(1, 28, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, ),
+ /* 59 */ array(1, 28, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, ),
+ /* 60 */ array(1, 16, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, ),
+ /* 61 */ array(1, 16, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, ),
+ /* 62 */ array(1, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, ),
+ /* 63 */ array(1, 16, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, ),
+ /* 64 */ array(1, 29, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, ),
+ /* 65 */ array(1, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, ),
+ /* 66 */ array(1, 2, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, ),
+ /* 67 */ array(1, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 77, ),
+ /* 68 */ array(1, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, ),
+ /* 69 */ array(1, 16, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, ),
+ /* 70 */ array(1, 23, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, ),
+ /* 71 */ array(1, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, ),
+ /* 72 */ array(1, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, ),
+ /* 73 */ array(1, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, ),
+ /* 74 */ array(1, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, ),
+ /* 75 */ array(1, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, ),
+ /* 76 */ array(1, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, ),
+ /* 77 */ array(1, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, ),
+ /* 78 */ array(1, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, ),
+ /* 79 */ array(1, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, ),
+ /* 80 */ array(1, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, ),
+ /* 81 */ array(1, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, ),
+ /* 82 */ array(1, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, ),
+ /* 83 */ array(1, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, ),
+ /* 84 */ array(1, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, ),
+ /* 85 */ array(1, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, ),
+ /* 86 */ array(1, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, ),
+ /* 87 */ array(1, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, ),
+ /* 88 */ array(1, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, ),
+ /* 89 */ array(1, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, ),
+ /* 90 */ array(38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, ),
+ /* 91 */ array(38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, ),
+ /* 92 */ array(1, 16, 20, 28, 36, 59, ),
+ /* 93 */ array(1, 16, 28, 52, ),
+ /* 94 */ array(1, 28, ),
+ /* 95 */ array(3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 15, 21, 22, 27, 31, 32, 33, ),
+ /* 96 */ array(10, 15, 21, 22, 27, 31, 32, 33, 76, 77, 78, ),
+ /* 97 */ array(15, 18, 28, 30, ),
+ /* 98 */ array(15, 18, 28, 30, ),
+ /* 99 */ array(20, 57, 62, ),
+ /* 100 */ array(1, 2, 16, ),
/* 101 */ array(1, 16, 28, ),
- /* 102 */ array(15, 18, 28, ),
- /* 103 */ array(20, 56, 61, ),
- /* 104 */ array(1, 16, 28, ),
- /* 105 */ array(15, 18, 28, ),
- /* 106 */ array(17, 18, 60, ),
- /* 107 */ array(17, 35, ),
+ /* 102 */ array(1, 16, 28, ),
+ /* 103 */ array(15, 18, 28, ),
+ /* 104 */ array(15, 18, 28, ),
+ /* 105 */ array(17, 18, 61, ),
+ /* 106 */ array(17, 36, ),
+ /* 107 */ array(1, 28, ),
/* 108 */ array(1, 28, ),
- /* 109 */ array(1, 28, ),
- /* 110 */ array(1, 28, ),
- /* 111 */ array(10, 15, 21, 22, 27, 31, 32, 75, 76, 77, ),
- /* 112 */ array(4, 5, 6, 7, 8, 12, 13, 14, ),
- /* 113 */ array(1, 16, 28, 29, 51, ),
- /* 114 */ array(1, 16, 28, 51, ),
- /* 115 */ array(15, 18, 19, 24, ),
- /* 116 */ array(1, 16, 28, 51, ),
- /* 117 */ array(15, 18, 19, 59, ),
- /* 118 */ array(19, 20, 58, ),
- /* 119 */ array(15, 18, 19, ),
- /* 120 */ array(1, 30, 51, ),
- /* 121 */ array(1, 16, 20, ),
- /* 122 */ array(1, 16, 51, ),
- /* 123 */ array(19, 20, 58, ),
- /* 124 */ array(15, 18, 59, ),
+ /* 109 */ array(10, 15, 21, 22, 27, 31, 32, 33, 76, 77, 78, ),
+ /* 110 */ array(4, 5, 6, 7, 8, 12, 13, 14, ),
+ /* 111 */ array(1, 16, 28, 29, 52, ),
+ /* 112 */ array(15, 18, 19, 24, ),
+ /* 113 */ array(15, 18, 19, 60, ),
+ /* 114 */ array(1, 16, 28, 52, ),
+ /* 115 */ array(1, 16, 28, 52, ),
+ /* 116 */ array(15, 18, 60, ),
+ /* 117 */ array(1, 30, 52, ),
+ /* 118 */ array(15, 18, 19, ),
+ /* 119 */ array(1, 16, 20, ),
+ /* 120 */ array(19, 20, 59, ),
+ /* 121 */ array(1, 16, 52, ),
+ /* 122 */ array(19, 20, 59, ),
+ /* 123 */ array(15, 18, ),
+ /* 124 */ array(17, 36, ),
/* 125 */ array(15, 18, ),
- /* 126 */ array(16, 28, ),
- /* 127 */ array(20, 58, ),
+ /* 126 */ array(15, 18, ),
+ /* 127 */ array(15, 18, ),
/* 128 */ array(15, 18, ),
- /* 129 */ array(15, 18, ),
- /* 130 */ array(15, 18, ),
- /* 131 */ array(1, 16, ),
- /* 132 */ array(15, 18, ),
- /* 133 */ array(17, 35, ),
+ /* 129 */ array(17, 18, ),
+ /* 130 */ array(17, 36, ),
+ /* 131 */ array(15, 18, ),
+ /* 132 */ array(1, 16, ),
+ /* 133 */ array(15, 18, ),
/* 134 */ array(15, 18, ),
- /* 135 */ array(17, 35, ),
- /* 136 */ array(17, 18, ),
- /* 137 */ array(17, 18, ),
+ /* 135 */ array(20, 59, ),
+ /* 136 */ array(15, 18, ),
+ /* 137 */ array(15, 18, ),
/* 138 */ array(15, 18, ),
- /* 139 */ array(15, 18, ),
+ /* 139 */ array(16, 28, ),
/* 140 */ array(15, 18, ),
/* 141 */ array(15, 18, ),
- /* 142 */ array(1, 51, ),
+ /* 142 */ array(1, 52, ),
/* 143 */ array(15, 18, ),
- /* 144 */ array(15, 18, ),
- /* 145 */ array(15, 18, ),
- /* 146 */ array(15, 18, ),
- /* 147 */ array(28, ),
+ /* 144 */ array(17, 18, ),
+ /* 145 */ array(1, ),
+ /* 146 */ array(28, ),
+ /* 147 */ array(1, ),
/* 148 */ array(20, ),
- /* 149 */ array(20, ),
+ /* 149 */ array(1, ),
/* 150 */ array(28, ),
/* 151 */ array(1, ),
/* 152 */ array(1, ),
/* 153 */ array(1, ),
/* 154 */ array(1, ),
- /* 155 */ array(1, ),
+ /* 155 */ array(20, ),
/* 156 */ array(1, ),
- /* 157 */ array(1, ),
- /* 158 */ array(1, ),
- /* 159 */ array(),
- /* 160 */ array(15, 18, 59, ),
- /* 161 */ array(15, 17, 18, ),
+ /* 157 */ array(),
+ /* 158 */ array(15, 17, 18, ),
+ /* 159 */ array(15, 18, 60, ),
+ /* 160 */ array(16, 28, ),
+ /* 161 */ array(16, 28, ),
/* 162 */ array(16, 28, ),
/* 163 */ array(16, 28, ),
- /* 164 */ array(16, 28, ),
- /* 165 */ array(16, 28, ),
- /* 166 */ array(16, 28, ),
- /* 167 */ array(16, 28, ),
- /* 168 */ array(56, 61, ),
- /* 169 */ array(15, 35, ),
- /* 170 */ array(56, 61, ),
+ /* 164 */ array(57, 62, ),
+ /* 165 */ array(15, 36, ),
+ /* 166 */ array(57, 62, ),
+ /* 167 */ array(1, 16, ),
+ /* 168 */ array(16, 28, ),
+ /* 169 */ array(57, 62, ),
+ /* 170 */ array(16, 28, ),
/* 171 */ array(16, 28, ),
/* 172 */ array(16, 28, ),
/* 173 */ array(16, 28, ),
- /* 174 */ array(56, 61, ),
- /* 175 */ array(56, 61, ),
+ /* 174 */ array(57, 62, ),
+ /* 175 */ array(1, 16, ),
/* 176 */ array(16, 28, ),
/* 177 */ array(16, 28, ),
- /* 178 */ array(56, 61, ),
+ /* 178 */ array(57, 62, ),
/* 179 */ array(16, 28, ),
- /* 180 */ array(16, 28, ),
+ /* 180 */ array(1, 16, ),
/* 181 */ array(16, 28, ),
/* 182 */ array(16, 28, ),
/* 183 */ array(16, 28, ),
- /* 184 */ array(1, 16, ),
+ /* 184 */ array(16, 28, ),
/* 185 */ array(16, 28, ),
/* 186 */ array(16, 28, ),
/* 187 */ array(16, 28, ),
/* 188 */ array(16, 28, ),
- /* 189 */ array(16, 28, ),
- /* 190 */ array(1, 16, ),
- /* 191 */ array(16, 28, ),
+ /* 189 */ array(13, ),
+ /* 190 */ array(28, ),
+ /* 191 */ array(28, ),
/* 192 */ array(20, ),
- /* 193 */ array(28, ),
+ /* 193 */ array(20, ),
/* 194 */ array(1, ),
- /* 195 */ array(2, ),
- /* 196 */ array(20, ),
- /* 197 */ array(13, ),
+ /* 195 */ array(20, ),
+ /* 196 */ array(1, ),
+ /* 197 */ array(2, ),
/* 198 */ array(2, ),
- /* 199 */ array(1, ),
- /* 200 */ array(20, ),
- /* 201 */ array(28, ),
- /* 202 */ array(35, ),
+ /* 199 */ array(36, ),
+ /* 200 */ array(),
+ /* 201 */ array(),
+ /* 202 */ array(),
/* 203 */ array(),
/* 204 */ array(),
- /* 205 */ array(),
- /* 206 */ array(),
- /* 207 */ array(16, 23, 25, 26, 28, 29, 34, 35, 36, 51, 58, 62, 76, ),
- /* 208 */ array(16, 19, 28, 35, 58, ),
- /* 209 */ array(16, 28, 35, 58, ),
- /* 210 */ array(35, 56, 58, 62, ),
- /* 211 */ array(15, 17, 18, 33, ),
- /* 212 */ array(30, 35, 58, ),
- /* 213 */ array(35, 58, ),
- /* 214 */ array(35, 58, ),
- /* 215 */ array(34, 36, ),
- /* 216 */ array(34, 36, ),
- /* 217 */ array(34, 36, ),
- /* 218 */ array(2, 19, ),
- /* 219 */ array(34, 62, ),
- /* 220 */ array(23, 34, ),
- /* 221 */ array(24, 76, ),
- /* 222 */ array(19, 56, ),
- /* 223 */ array(18, 59, ),
- /* 224 */ array(33, ),
- /* 225 */ array(33, ),
- /* 226 */ array(2, ),
+ /* 205 */ array(16, 23, 25, 26, 28, 29, 35, 36, 37, 52, 59, 63, 77, ),
+ /* 206 */ array(16, 19, 28, 36, 59, ),
+ /* 207 */ array(36, 57, 59, 63, ),
+ /* 208 */ array(15, 17, 18, 34, ),
+ /* 209 */ array(16, 28, 36, 59, ),
+ /* 210 */ array(30, 36, 59, ),
+ /* 211 */ array(18, 60, ),
+ /* 212 */ array(2, 19, ),
+ /* 213 */ array(36, 59, ),
+ /* 214 */ array(36, 59, ),
+ /* 215 */ array(16, 24, ),
+ /* 216 */ array(35, 37, ),
+ /* 217 */ array(24, 77, ),
+ /* 218 */ array(35, 63, ),
+ /* 219 */ array(23, 35, ),
+ /* 220 */ array(19, 57, ),
+ /* 221 */ array(35, 37, ),
+ /* 222 */ array(35, 37, ),
+ /* 223 */ array(18, ),
+ /* 224 */ array(2, ),
+ /* 225 */ array(24, ),
+ /* 226 */ array(17, ),
/* 227 */ array(18, ),
/* 228 */ array(18, ),
- /* 229 */ array(56, ),
- /* 230 */ array(35, ),
- /* 231 */ array(35, ),
- /* 232 */ array(18, ),
- /* 233 */ array(17, ),
+ /* 229 */ array(36, ),
+ /* 230 */ array(57, ),
+ /* 231 */ array(18, ),
+ /* 232 */ array(36, ),
+ /* 233 */ array(18, ),
/* 234 */ array(17, ),
- /* 235 */ array(17, ),
- /* 236 */ array(19, ),
- /* 237 */ array(25, ),
- /* 238 */ array(36, ),
+ /* 235 */ array(18, ),
+ /* 236 */ array(34, ),
+ /* 237 */ array(34, ),
+ /* 238 */ array(18, ),
/* 239 */ array(17, ),
- /* 240 */ array(17, ),
- /* 241 */ array(62, ),
- /* 242 */ array(18, ),
- /* 243 */ array(18, ),
- /* 244 */ array(24, ),
- /* 245 */ array(18, ),
- /* 246 */ array(18, ),
- /* 247 */ array(60, ),
- /* 248 */ array(60, ),
- /* 249 */ array(18, ),
- /* 250 */ array(52, ),
+ /* 240 */ array(61, ),
+ /* 241 */ array(18, ),
+ /* 242 */ array(37, ),
+ /* 243 */ array(17, ),
+ /* 244 */ array(19, ),
+ /* 245 */ array(63, ),
+ /* 246 */ array(53, ),
+ /* 247 */ array(2, ),
+ /* 248 */ array(17, ),
+ /* 249 */ array(25, ),
+ /* 250 */ array(18, ),
/* 251 */ array(18, ),
- /* 252 */ array(2, ),
+ /* 252 */ array(61, ),
/* 253 */ array(),
/* 254 */ array(),
/* 255 */ array(),
/* 386 */ array(),
);
static public $yy_default = array(
- /* 0 */ 390, 571, 588, 542, 542, 542, 588, 588, 588, 588,
+ /* 0 */ 390, 571, 588, 588, 542, 542, 542, 588, 588, 588,
/* 10 */ 588, 588, 588, 588, 588, 588, 588, 588, 588, 588,
/* 20 */ 588, 588, 588, 588, 588, 588, 588, 588, 588, 588,
/* 30 */ 588, 588, 588, 588, 588, 588, 588, 588, 588, 588,
/* 40 */ 588, 588, 588, 588, 588, 588, 588, 588, 588, 588,
- /* 50 */ 588, 588, 588, 588, 450, 588, 588, 450, 450, 450,
- /* 60 */ 588, 588, 455, 588, 588, 588, 588, 588, 588, 588,
- /* 70 */ 588, 471, 474, 574, 573, 541, 434, 452, 475, 476,
- /* 80 */ 484, 572, 455, 483, 480, 460, 461, 479, 540, 457,
- /* 90 */ 488, 487, 499, 489, 463, 489, 450, 387, 588, 450,
- /* 100 */ 450, 470, 450, 554, 507, 450, 588, 588, 450, 450,
- /* 110 */ 450, 588, 588, 463, 463, 588, 463, 515, 508, 515,
- /* 120 */ 463, 588, 463, 508, 515, 588, 588, 508, 588, 588,
- /* 130 */ 588, 588, 588, 588, 588, 588, 588, 588, 588, 588,
- /* 140 */ 588, 588, 463, 588, 515, 588, 588, 450, 508, 551,
- /* 150 */ 450, 467, 468, 466, 490, 486, 473, 492, 491, 549,
- /* 160 */ 516, 588, 588, 588, 588, 588, 588, 588, 532, 515,
- /* 170 */ 534, 588, 588, 588, 535, 533, 588, 588, 513, 588,
- /* 180 */ 588, 588, 588, 588, 588, 588, 588, 588, 588, 588,
- /* 190 */ 588, 588, 529, 587, 470, 544, 555, 405, 543, 507,
- /* 200 */ 552, 587, 515, 548, 515, 515, 548, 465, 499, 499,
- /* 210 */ 499, 588, 499, 485, 499, 588, 588, 588, 527, 588,
- /* 220 */ 588, 489, 495, 588, 497, 588, 527, 588, 588, 495,
- /* 230 */ 527, 553, 588, 588, 588, 588, 588, 458, 588, 588,
- /* 240 */ 588, 588, 588, 588, 489, 588, 588, 588, 588, 588,
- /* 250 */ 501, 588, 527, 433, 442, 565, 566, 438, 567, 449,
- /* 260 */ 429, 459, 586, 435, 416, 430, 469, 564, 444, 447,
- /* 270 */ 563, 446, 445, 550, 562, 528, 443, 441, 417, 448,
- /* 280 */ 440, 526, 582, 527, 439, 412, 398, 397, 396, 432,
- /* 290 */ 399, 400, 431, 395, 394, 389, 388, 391, 415, 393,
- /* 300 */ 392, 401, 437, 409, 506, 462, 410, 411, 413, 547,
- /* 310 */ 510, 408, 403, 402, 404, 436, 407, 406, 414, 561,
- /* 320 */ 509, 503, 505, 424, 514, 585, 578, 568, 465, 464,
- /* 330 */ 477, 423, 530, 570, 569, 584, 581, 518, 525, 427,
- /* 340 */ 428, 519, 426, 500, 575, 517, 425, 579, 580, 502,
- /* 350 */ 576, 577, 478, 481, 522, 524, 583, 559, 558, 557,
- /* 360 */ 521, 419, 493, 418, 472, 537, 560, 501, 520, 523,
- /* 370 */ 545, 482, 496, 421, 498, 422, 539, 504, 536, 556,
- /* 380 */ 494, 546, 512, 531, 420, 511, 538,
+ /* 50 */ 588, 588, 588, 588, 588, 588, 450, 450, 450, 450,
+ /* 60 */ 588, 588, 588, 588, 455, 588, 588, 588, 588, 588,
+ /* 70 */ 588, 573, 457, 541, 574, 455, 471, 460, 540, 480,
+ /* 80 */ 484, 432, 461, 452, 479, 483, 572, 474, 475, 476,
+ /* 90 */ 487, 488, 499, 463, 450, 387, 588, 450, 450, 554,
+ /* 100 */ 588, 507, 470, 450, 450, 588, 588, 450, 450, 588,
+ /* 110 */ 588, 463, 588, 515, 463, 463, 515, 463, 515, 588,
+ /* 120 */ 508, 463, 508, 588, 588, 588, 588, 588, 588, 588,
+ /* 130 */ 588, 588, 588, 588, 588, 508, 515, 588, 588, 588,
+ /* 140 */ 588, 588, 463, 588, 588, 467, 450, 473, 551, 490,
+ /* 150 */ 450, 468, 486, 491, 492, 508, 466, 549, 588, 516,
+ /* 160 */ 588, 588, 588, 588, 533, 515, 532, 588, 588, 513,
+ /* 170 */ 588, 588, 588, 588, 534, 588, 588, 588, 535, 588,
+ /* 180 */ 588, 588, 588, 588, 588, 588, 588, 588, 588, 405,
+ /* 190 */ 587, 587, 529, 555, 470, 552, 507, 543, 544, 515,
+ /* 200 */ 515, 515, 548, 548, 548, 465, 499, 499, 588, 499,
+ /* 210 */ 499, 588, 527, 485, 499, 489, 588, 489, 588, 588,
+ /* 220 */ 495, 588, 588, 588, 527, 489, 588, 588, 588, 527,
+ /* 230 */ 495, 588, 553, 588, 588, 588, 497, 588, 588, 588,
+ /* 240 */ 588, 588, 588, 588, 588, 588, 501, 527, 588, 458,
+ /* 250 */ 588, 588, 588, 435, 524, 439, 501, 523, 511, 569,
+ /* 260 */ 521, 415, 522, 570, 520, 388, 537, 512, 440, 462,
+ /* 270 */ 459, 429, 550, 586, 430, 536, 528, 538, 539, 434,
+ /* 280 */ 433, 565, 441, 527, 442, 547, 443, 526, 438, 449,
+ /* 290 */ 428, 431, 436, 437, 444, 445, 498, 496, 504, 464,
+ /* 300 */ 465, 494, 493, 545, 546, 446, 447, 427, 448, 397,
+ /* 310 */ 396, 398, 399, 400, 395, 394, 389, 391, 392, 393,
+ /* 320 */ 401, 402, 411, 410, 412, 413, 414, 409, 408, 403,
+ /* 330 */ 404, 406, 407, 509, 514, 421, 420, 530, 422, 423,
+ /* 340 */ 419, 418, 531, 510, 416, 417, 583, 424, 426, 581,
+ /* 350 */ 579, 584, 585, 578, 580, 577, 425, 582, 575, 576,
+ /* 360 */ 506, 469, 503, 502, 505, 477, 478, 472, 500, 517,
+ /* 370 */ 525, 518, 519, 481, 482, 563, 562, 564, 566, 567,
+ /* 380 */ 561, 560, 556, 557, 558, 559, 568,
);
- const YYNOCODE = 121;
+ const YYNOCODE = 122;
const YYSTACKDEPTH = 100;
const YYNSTATE = 387;
const YYNRULE = 201;
- const YYERRORSYMBOL = 78;
+ const YYERRORSYMBOL = 79;
const YYERRSYMDT = 'yy0';
const YYFALLBACK = 0;
static public $yyFallback = array(
'RDEL', 'DOLLAR', 'ID', 'EQUAL',
'PTR', 'LDELIF', 'LDELFOR', 'SEMICOLON',
'INCDEC', 'TO', 'STEP', 'LDELFOREACH',
- 'SPACE', 'AS', 'APTR', 'SMARTYBLOCKCHILD',
- 'LDELSLASH', 'INTEGER', 'COMMA', 'OPENP',
- 'CLOSEP', 'MATH', 'UNIMATH', 'ANDSYM',
- 'ISIN', 'ISDIVBY', 'ISNOTDIVBY', 'ISEVEN',
- 'ISNOTEVEN', 'ISEVENBY', 'ISNOTEVENBY', 'ISODD',
- 'ISNOTODD', 'ISODDBY', 'ISNOTODDBY', 'INSTANCEOF',
- 'QMARK', 'NOT', 'TYPECAST', 'HEX',
- 'DOT', 'SINGLEQUOTESTRING', 'DOUBLECOLON', 'AT',
- 'HATCH', 'OPENB', 'CLOSEB', 'EQUALS',
- 'NOTEQUALS', 'GREATERTHAN', 'LESSTHAN', 'GREATEREQUAL',
- 'LESSEQUAL', 'IDENTITY', 'NONEIDENTITY', 'MOD',
- 'LAND', 'LOR', 'LXOR', 'QUOTE',
- 'BACKTICK', 'DOLLARID', 'error', 'start',
- 'template', 'template_element', 'smartytag', 'literal',
- 'literal_elements', 'literal_element', 'value', 'modifierlist',
- 'attributes', 'variable', 'expr', 'varindexed',
+ 'SPACE', 'AS', 'APTR', 'LDELSETFILTER',
+ 'SMARTYBLOCKCHILD', 'LDELSLASH', 'INTEGER', 'COMMA',
+ 'OPENP', 'CLOSEP', 'MATH', 'UNIMATH',
+ 'ANDSYM', 'ISIN', 'ISDIVBY', 'ISNOTDIVBY',
+ 'ISEVEN', 'ISNOTEVEN', 'ISEVENBY', 'ISNOTEVENBY',
+ 'ISODD', 'ISNOTODD', 'ISODDBY', 'ISNOTODDBY',
+ 'INSTANCEOF', 'QMARK', 'NOT', 'TYPECAST',
+ 'HEX', 'DOT', 'SINGLEQUOTESTRING', 'DOUBLECOLON',
+ 'AT', 'HATCH', 'OPENB', 'CLOSEB',
+ 'EQUALS', 'NOTEQUALS', 'GREATERTHAN', 'LESSTHAN',
+ 'GREATEREQUAL', 'LESSEQUAL', 'IDENTITY', 'NONEIDENTITY',
+ 'MOD', 'LAND', 'LOR', 'LXOR',
+ 'QUOTE', 'BACKTICK', 'DOLLARID', 'error',
+ 'start', 'template', 'template_element', 'smartytag',
+ 'literal', 'literal_elements', 'literal_element', 'value',
+ 'modifierlist', 'attributes', 'expr', 'varindexed',
'statement', 'statements', 'optspace', 'varvar',
- 'foraction', 'attribute', 'ternary', 'array',
- 'ifcond', 'lop', 'function', 'doublequoted_with_quotes',
- 'static_class_access', 'object', 'arrayindex', 'indexdef',
- 'varvarele', 'objectchain', 'objectelement', 'method',
- 'params', 'modifier', 'modparameters', 'modparameter',
- 'arrayelements', 'arrayelement', 'doublequoted', 'doublequotedcontent',
+ 'foraction', 'modparameters', 'attribute', 'ternary',
+ 'array', 'ifcond', 'lop', 'variable',
+ 'function', 'doublequoted_with_quotes', 'static_class_access', 'object',
+ 'arrayindex', 'indexdef', 'varvarele', 'objectchain',
+ 'objectelement', 'method', 'params', 'modifier',
+ 'modparameter', 'arrayelements', 'arrayelement', 'doublequoted',
+ 'doublequotedcontent',
);
static public $yyRuleName = array(
/* 26 */ "smartytag ::= LDEL value RDEL",
/* 27 */ "smartytag ::= LDEL value modifierlist attributes RDEL",
/* 28 */ "smartytag ::= LDEL value attributes RDEL",
- /* 29 */ "smartytag ::= LDEL variable modifierlist attributes RDEL",
- /* 30 */ "smartytag ::= LDEL variable attributes RDEL",
- /* 31 */ "smartytag ::= LDEL expr modifierlist attributes RDEL",
- /* 32 */ "smartytag ::= LDEL expr attributes RDEL",
- /* 33 */ "smartytag ::= LDEL DOLLAR ID EQUAL value RDEL",
- /* 34 */ "smartytag ::= LDEL DOLLAR ID EQUAL expr RDEL",
- /* 35 */ "smartytag ::= LDEL DOLLAR ID EQUAL expr attributes RDEL",
- /* 36 */ "smartytag ::= LDEL varindexed EQUAL expr attributes RDEL",
- /* 37 */ "smartytag ::= LDEL ID attributes RDEL",
- /* 38 */ "smartytag ::= LDEL ID RDEL",
- /* 39 */ "smartytag ::= LDEL ID PTR ID attributes RDEL",
- /* 40 */ "smartytag ::= LDEL ID modifierlist attributes RDEL",
- /* 41 */ "smartytag ::= LDEL ID PTR ID modifierlist attributes RDEL",
- /* 42 */ "smartytag ::= LDELIF expr RDEL",
- /* 43 */ "smartytag ::= LDELIF expr attributes RDEL",
- /* 44 */ "smartytag ::= LDELIF statement RDEL",
- /* 45 */ "smartytag ::= LDELIF statement attributes RDEL",
- /* 46 */ "smartytag ::= LDELFOR statements SEMICOLON optspace expr SEMICOLON optspace DOLLAR varvar foraction attributes RDEL",
- /* 47 */ "foraction ::= EQUAL expr",
- /* 48 */ "foraction ::= INCDEC",
- /* 49 */ "smartytag ::= LDELFOR statement TO expr attributes RDEL",
- /* 50 */ "smartytag ::= LDELFOR statement TO expr STEP expr attributes RDEL",
- /* 51 */ "smartytag ::= LDELFOREACH attributes RDEL",
- /* 52 */ "smartytag ::= LDELFOREACH SPACE value AS DOLLAR varvar attributes RDEL",
- /* 53 */ "smartytag ::= LDELFOREACH SPACE value AS DOLLAR varvar APTR DOLLAR varvar attributes RDEL",
- /* 54 */ "smartytag ::= LDELFOREACH SPACE expr AS DOLLAR varvar attributes RDEL",
- /* 55 */ "smartytag ::= LDELFOREACH SPACE expr AS DOLLAR varvar APTR DOLLAR varvar attributes RDEL",
+ /* 29 */ "smartytag ::= LDEL expr modifierlist attributes RDEL",
+ /* 30 */ "smartytag ::= LDEL expr attributes RDEL",
+ /* 31 */ "smartytag ::= LDEL DOLLAR ID EQUAL value RDEL",
+ /* 32 */ "smartytag ::= LDEL DOLLAR ID EQUAL expr RDEL",
+ /* 33 */ "smartytag ::= LDEL DOLLAR ID EQUAL expr attributes RDEL",
+ /* 34 */ "smartytag ::= LDEL varindexed EQUAL expr attributes RDEL",
+ /* 35 */ "smartytag ::= LDEL ID attributes RDEL",
+ /* 36 */ "smartytag ::= LDEL ID RDEL",
+ /* 37 */ "smartytag ::= LDEL ID PTR ID attributes RDEL",
+ /* 38 */ "smartytag ::= LDEL ID modifierlist attributes RDEL",
+ /* 39 */ "smartytag ::= LDEL ID PTR ID modifierlist attributes RDEL",
+ /* 40 */ "smartytag ::= LDELIF expr RDEL",
+ /* 41 */ "smartytag ::= LDELIF expr attributes RDEL",
+ /* 42 */ "smartytag ::= LDELIF statement RDEL",
+ /* 43 */ "smartytag ::= LDELIF statement attributes RDEL",
+ /* 44 */ "smartytag ::= LDELFOR statements SEMICOLON optspace expr SEMICOLON optspace DOLLAR varvar foraction attributes RDEL",
+ /* 45 */ "foraction ::= EQUAL expr",
+ /* 46 */ "foraction ::= INCDEC",
+ /* 47 */ "smartytag ::= LDELFOR statement TO expr attributes RDEL",
+ /* 48 */ "smartytag ::= LDELFOR statement TO expr STEP expr attributes RDEL",
+ /* 49 */ "smartytag ::= LDELFOREACH attributes RDEL",
+ /* 50 */ "smartytag ::= LDELFOREACH SPACE value AS DOLLAR varvar attributes RDEL",
+ /* 51 */ "smartytag ::= LDELFOREACH SPACE value AS DOLLAR varvar APTR DOLLAR varvar attributes RDEL",
+ /* 52 */ "smartytag ::= LDELFOREACH SPACE expr AS DOLLAR varvar attributes RDEL",
+ /* 53 */ "smartytag ::= LDELFOREACH SPACE expr AS DOLLAR varvar APTR DOLLAR varvar attributes RDEL",
+ /* 54 */ "smartytag ::= LDELSETFILTER ID modparameters RDEL",
+ /* 55 */ "smartytag ::= LDELSETFILTER ID modparameters modifierlist RDEL",
/* 56 */ "smartytag ::= SMARTYBLOCKCHILD",
/* 57 */ "smartytag ::= LDELSLASH ID RDEL",
/* 58 */ "smartytag ::= LDELSLASH ID modifierlist RDEL",
while ($this->yyidx >= 0) {
$this->yy_pop_parser_stack();
}
-#line 73 "smarty_internal_templateparser.y"
+#line 83 "smarty_internal_templateparser.y"
$this->internalError = true;
$this->compiler->trigger_template_error("Stack overflow in template parser");
-#line 1751 "smarty_internal_templateparser.php"
+#line 1715 "smarty_internal_templateparser.php"
return;
}
$yytos = new TP_yyStackEntry;
}
static public $yyRuleInfo = array(
- array( 'lhs' => 79, 'rhs' => 1 ),
array( 'lhs' => 80, 'rhs' => 1 ),
- array( 'lhs' => 80, 'rhs' => 2 ),
- array( 'lhs' => 80, 'rhs' => 0 ),
- array( 'lhs' => 81, 'rhs' => 1 ),
- array( 'lhs' => 81, 'rhs' => 1 ),
- array( 'lhs' => 81, 'rhs' => 1 ),
- array( 'lhs' => 81, 'rhs' => 1 ),
- array( 'lhs' => 81, 'rhs' => 1 ),
- array( 'lhs' => 81, 'rhs' => 1 ),
- array( 'lhs' => 81, 'rhs' => 1 ),
- array( 'lhs' => 81, 'rhs' => 1 ),
array( 'lhs' => 81, 'rhs' => 1 ),
- array( 'lhs' => 81, 'rhs' => 1 ),
- array( 'lhs' => 81, 'rhs' => 1 ),
- array( 'lhs' => 83, 'rhs' => 2 ),
- array( 'lhs' => 83, 'rhs' => 3 ),
+ array( 'lhs' => 81, 'rhs' => 2 ),
+ array( 'lhs' => 81, 'rhs' => 0 ),
+ array( 'lhs' => 82, 'rhs' => 1 ),
+ array( 'lhs' => 82, 'rhs' => 1 ),
+ array( 'lhs' => 82, 'rhs' => 1 ),
+ array( 'lhs' => 82, 'rhs' => 1 ),
+ array( 'lhs' => 82, 'rhs' => 1 ),
+ array( 'lhs' => 82, 'rhs' => 1 ),
+ array( 'lhs' => 82, 'rhs' => 1 ),
+ array( 'lhs' => 82, 'rhs' => 1 ),
+ array( 'lhs' => 82, 'rhs' => 1 ),
+ array( 'lhs' => 82, 'rhs' => 1 ),
+ array( 'lhs' => 82, 'rhs' => 1 ),
array( 'lhs' => 84, 'rhs' => 2 ),
- array( 'lhs' => 84, 'rhs' => 0 ),
- array( 'lhs' => 85, 'rhs' => 1 ),
- array( 'lhs' => 85, 'rhs' => 1 ),
- array( 'lhs' => 85, 'rhs' => 1 ),
- array( 'lhs' => 85, 'rhs' => 1 ),
- array( 'lhs' => 85, 'rhs' => 1 ),
- array( 'lhs' => 85, 'rhs' => 1 ),
- array( 'lhs' => 85, 'rhs' => 1 ),
- array( 'lhs' => 82, 'rhs' => 3 ),
- array( 'lhs' => 82, 'rhs' => 5 ),
- array( 'lhs' => 82, 'rhs' => 4 ),
- array( 'lhs' => 82, 'rhs' => 5 ),
- array( 'lhs' => 82, 'rhs' => 4 ),
- array( 'lhs' => 82, 'rhs' => 5 ),
- array( 'lhs' => 82, 'rhs' => 4 ),
- array( 'lhs' => 82, 'rhs' => 6 ),
- array( 'lhs' => 82, 'rhs' => 6 ),
- array( 'lhs' => 82, 'rhs' => 7 ),
- array( 'lhs' => 82, 'rhs' => 6 ),
- array( 'lhs' => 82, 'rhs' => 4 ),
- array( 'lhs' => 82, 'rhs' => 3 ),
- array( 'lhs' => 82, 'rhs' => 6 ),
- array( 'lhs' => 82, 'rhs' => 5 ),
- array( 'lhs' => 82, 'rhs' => 7 ),
- array( 'lhs' => 82, 'rhs' => 3 ),
- array( 'lhs' => 82, 'rhs' => 4 ),
- array( 'lhs' => 82, 'rhs' => 3 ),
- array( 'lhs' => 82, 'rhs' => 4 ),
- array( 'lhs' => 82, 'rhs' => 12 ),
+ array( 'lhs' => 84, 'rhs' => 3 ),
+ array( 'lhs' => 85, 'rhs' => 2 ),
+ array( 'lhs' => 85, 'rhs' => 0 ),
+ array( 'lhs' => 86, 'rhs' => 1 ),
+ array( 'lhs' => 86, 'rhs' => 1 ),
+ array( 'lhs' => 86, 'rhs' => 1 ),
+ array( 'lhs' => 86, 'rhs' => 1 ),
+ array( 'lhs' => 86, 'rhs' => 1 ),
+ array( 'lhs' => 86, 'rhs' => 1 ),
+ array( 'lhs' => 86, 'rhs' => 1 ),
+ array( 'lhs' => 83, 'rhs' => 3 ),
+ array( 'lhs' => 83, 'rhs' => 5 ),
+ array( 'lhs' => 83, 'rhs' => 4 ),
+ array( 'lhs' => 83, 'rhs' => 5 ),
+ array( 'lhs' => 83, 'rhs' => 4 ),
+ array( 'lhs' => 83, 'rhs' => 6 ),
+ array( 'lhs' => 83, 'rhs' => 6 ),
+ array( 'lhs' => 83, 'rhs' => 7 ),
+ array( 'lhs' => 83, 'rhs' => 6 ),
+ array( 'lhs' => 83, 'rhs' => 4 ),
+ array( 'lhs' => 83, 'rhs' => 3 ),
+ array( 'lhs' => 83, 'rhs' => 6 ),
+ array( 'lhs' => 83, 'rhs' => 5 ),
+ array( 'lhs' => 83, 'rhs' => 7 ),
+ array( 'lhs' => 83, 'rhs' => 3 ),
+ array( 'lhs' => 83, 'rhs' => 4 ),
+ array( 'lhs' => 83, 'rhs' => 3 ),
+ array( 'lhs' => 83, 'rhs' => 4 ),
+ array( 'lhs' => 83, 'rhs' => 12 ),
array( 'lhs' => 96, 'rhs' => 2 ),
array( 'lhs' => 96, 'rhs' => 1 ),
- array( 'lhs' => 82, 'rhs' => 6 ),
- array( 'lhs' => 82, 'rhs' => 8 ),
- array( 'lhs' => 82, 'rhs' => 3 ),
- array( 'lhs' => 82, 'rhs' => 8 ),
- array( 'lhs' => 82, 'rhs' => 11 ),
- array( 'lhs' => 82, 'rhs' => 8 ),
- array( 'lhs' => 82, 'rhs' => 11 ),
- array( 'lhs' => 82, 'rhs' => 1 ),
- array( 'lhs' => 82, 'rhs' => 3 ),
- array( 'lhs' => 82, 'rhs' => 4 ),
- array( 'lhs' => 82, 'rhs' => 5 ),
- array( 'lhs' => 82, 'rhs' => 6 ),
- array( 'lhs' => 88, 'rhs' => 2 ),
- array( 'lhs' => 88, 'rhs' => 1 ),
- array( 'lhs' => 88, 'rhs' => 0 ),
- array( 'lhs' => 97, 'rhs' => 4 ),
- array( 'lhs' => 97, 'rhs' => 4 ),
- array( 'lhs' => 97, 'rhs' => 4 ),
- array( 'lhs' => 97, 'rhs' => 2 ),
- array( 'lhs' => 97, 'rhs' => 2 ),
- array( 'lhs' => 97, 'rhs' => 2 ),
- array( 'lhs' => 97, 'rhs' => 4 ),
+ array( 'lhs' => 83, 'rhs' => 6 ),
+ array( 'lhs' => 83, 'rhs' => 8 ),
+ array( 'lhs' => 83, 'rhs' => 3 ),
+ array( 'lhs' => 83, 'rhs' => 8 ),
+ array( 'lhs' => 83, 'rhs' => 11 ),
+ array( 'lhs' => 83, 'rhs' => 8 ),
+ array( 'lhs' => 83, 'rhs' => 11 ),
+ array( 'lhs' => 83, 'rhs' => 4 ),
+ array( 'lhs' => 83, 'rhs' => 5 ),
+ array( 'lhs' => 83, 'rhs' => 1 ),
+ array( 'lhs' => 83, 'rhs' => 3 ),
+ array( 'lhs' => 83, 'rhs' => 4 ),
+ array( 'lhs' => 83, 'rhs' => 5 ),
+ array( 'lhs' => 83, 'rhs' => 6 ),
+ array( 'lhs' => 89, 'rhs' => 2 ),
+ array( 'lhs' => 89, 'rhs' => 1 ),
+ array( 'lhs' => 89, 'rhs' => 0 ),
+ array( 'lhs' => 98, 'rhs' => 4 ),
+ array( 'lhs' => 98, 'rhs' => 4 ),
+ array( 'lhs' => 98, 'rhs' => 4 ),
+ array( 'lhs' => 98, 'rhs' => 2 ),
+ array( 'lhs' => 98, 'rhs' => 2 ),
+ array( 'lhs' => 98, 'rhs' => 2 ),
+ array( 'lhs' => 98, 'rhs' => 4 ),
array( 'lhs' => 93, 'rhs' => 1 ),
array( 'lhs' => 93, 'rhs' => 3 ),
array( 'lhs' => 92, 'rhs' => 4 ),
array( 'lhs' => 90, 'rhs' => 3 ),
array( 'lhs' => 90, 'rhs' => 3 ),
array( 'lhs' => 90, 'rhs' => 3 ),
- array( 'lhs' => 98, 'rhs' => 8 ),
- array( 'lhs' => 98, 'rhs' => 7 ),
- array( 'lhs' => 86, 'rhs' => 1 ),
- array( 'lhs' => 86, 'rhs' => 2 ),
- array( 'lhs' => 86, 'rhs' => 2 ),
- array( 'lhs' => 86, 'rhs' => 2 ),
- array( 'lhs' => 86, 'rhs' => 2 ),
- array( 'lhs' => 86, 'rhs' => 1 ),
- array( 'lhs' => 86, 'rhs' => 1 ),
- array( 'lhs' => 86, 'rhs' => 3 ),
- array( 'lhs' => 86, 'rhs' => 2 ),
- array( 'lhs' => 86, 'rhs' => 2 ),
- array( 'lhs' => 86, 'rhs' => 1 ),
- array( 'lhs' => 86, 'rhs' => 1 ),
- array( 'lhs' => 86, 'rhs' => 3 ),
- array( 'lhs' => 86, 'rhs' => 1 ),
- array( 'lhs' => 86, 'rhs' => 1 ),
- array( 'lhs' => 86, 'rhs' => 3 ),
- array( 'lhs' => 86, 'rhs' => 3 ),
- array( 'lhs' => 86, 'rhs' => 1 ),
- array( 'lhs' => 86, 'rhs' => 2 ),
- array( 'lhs' => 89, 'rhs' => 1 ),
- array( 'lhs' => 89, 'rhs' => 4 ),
- array( 'lhs' => 89, 'rhs' => 1 ),
- array( 'lhs' => 89, 'rhs' => 3 ),
- array( 'lhs' => 89, 'rhs' => 3 ),
+ array( 'lhs' => 99, 'rhs' => 8 ),
+ array( 'lhs' => 99, 'rhs' => 7 ),
+ array( 'lhs' => 87, 'rhs' => 1 ),
+ array( 'lhs' => 87, 'rhs' => 2 ),
+ array( 'lhs' => 87, 'rhs' => 2 ),
+ array( 'lhs' => 87, 'rhs' => 2 ),
+ array( 'lhs' => 87, 'rhs' => 2 ),
+ array( 'lhs' => 87, 'rhs' => 1 ),
+ array( 'lhs' => 87, 'rhs' => 1 ),
+ array( 'lhs' => 87, 'rhs' => 3 ),
+ array( 'lhs' => 87, 'rhs' => 2 ),
+ array( 'lhs' => 87, 'rhs' => 2 ),
+ array( 'lhs' => 87, 'rhs' => 1 ),
+ array( 'lhs' => 87, 'rhs' => 1 ),
+ array( 'lhs' => 87, 'rhs' => 3 ),
+ array( 'lhs' => 87, 'rhs' => 1 ),
+ array( 'lhs' => 87, 'rhs' => 1 ),
+ array( 'lhs' => 87, 'rhs' => 3 ),
+ array( 'lhs' => 87, 'rhs' => 3 ),
+ array( 'lhs' => 87, 'rhs' => 1 ),
+ array( 'lhs' => 87, 'rhs' => 2 ),
+ array( 'lhs' => 103, 'rhs' => 1 ),
+ array( 'lhs' => 103, 'rhs' => 4 ),
+ array( 'lhs' => 103, 'rhs' => 1 ),
+ array( 'lhs' => 103, 'rhs' => 3 ),
+ array( 'lhs' => 103, 'rhs' => 3 ),
array( 'lhs' => 91, 'rhs' => 3 ),
- array( 'lhs' => 106, 'rhs' => 2 ),
- array( 'lhs' => 106, 'rhs' => 0 ),
- array( 'lhs' => 107, 'rhs' => 3 ),
- array( 'lhs' => 107, 'rhs' => 5 ),
- array( 'lhs' => 107, 'rhs' => 2 ),
- array( 'lhs' => 107, 'rhs' => 2 ),
- array( 'lhs' => 107, 'rhs' => 4 ),
- array( 'lhs' => 107, 'rhs' => 3 ),
- array( 'lhs' => 107, 'rhs' => 5 ),
- array( 'lhs' => 107, 'rhs' => 3 ),
- array( 'lhs' => 107, 'rhs' => 2 ),
+ array( 'lhs' => 108, 'rhs' => 2 ),
+ array( 'lhs' => 108, 'rhs' => 0 ),
+ array( 'lhs' => 109, 'rhs' => 3 ),
+ array( 'lhs' => 109, 'rhs' => 5 ),
+ array( 'lhs' => 109, 'rhs' => 2 ),
+ array( 'lhs' => 109, 'rhs' => 2 ),
+ array( 'lhs' => 109, 'rhs' => 4 ),
+ array( 'lhs' => 109, 'rhs' => 3 ),
+ array( 'lhs' => 109, 'rhs' => 5 ),
+ array( 'lhs' => 109, 'rhs' => 3 ),
+ array( 'lhs' => 109, 'rhs' => 2 ),
array( 'lhs' => 95, 'rhs' => 1 ),
array( 'lhs' => 95, 'rhs' => 2 ),
- array( 'lhs' => 108, 'rhs' => 1 ),
- array( 'lhs' => 108, 'rhs' => 3 ),
- array( 'lhs' => 105, 'rhs' => 2 ),
- array( 'lhs' => 109, 'rhs' => 1 ),
- array( 'lhs' => 109, 'rhs' => 2 ),
+ array( 'lhs' => 110, 'rhs' => 1 ),
array( 'lhs' => 110, 'rhs' => 3 ),
- array( 'lhs' => 110, 'rhs' => 4 ),
- array( 'lhs' => 110, 'rhs' => 5 ),
- array( 'lhs' => 110, 'rhs' => 6 ),
- array( 'lhs' => 110, 'rhs' => 2 ),
- array( 'lhs' => 102, 'rhs' => 4 ),
- array( 'lhs' => 111, 'rhs' => 4 ),
- array( 'lhs' => 111, 'rhs' => 5 ),
+ array( 'lhs' => 107, 'rhs' => 2 ),
+ array( 'lhs' => 111, 'rhs' => 1 ),
+ array( 'lhs' => 111, 'rhs' => 2 ),
array( 'lhs' => 112, 'rhs' => 3 ),
- array( 'lhs' => 112, 'rhs' => 1 ),
- array( 'lhs' => 112, 'rhs' => 0 ),
- array( 'lhs' => 87, 'rhs' => 3 ),
- array( 'lhs' => 87, 'rhs' => 2 ),
- array( 'lhs' => 113, 'rhs' => 3 ),
- array( 'lhs' => 113, 'rhs' => 2 ),
- array( 'lhs' => 114, 'rhs' => 2 ),
+ array( 'lhs' => 112, 'rhs' => 4 ),
+ array( 'lhs' => 112, 'rhs' => 5 ),
+ array( 'lhs' => 112, 'rhs' => 6 ),
+ array( 'lhs' => 112, 'rhs' => 2 ),
+ array( 'lhs' => 104, 'rhs' => 4 ),
+ array( 'lhs' => 113, 'rhs' => 4 ),
+ array( 'lhs' => 113, 'rhs' => 5 ),
+ array( 'lhs' => 114, 'rhs' => 3 ),
+ array( 'lhs' => 114, 'rhs' => 1 ),
array( 'lhs' => 114, 'rhs' => 0 ),
+ array( 'lhs' => 88, 'rhs' => 3 ),
+ array( 'lhs' => 88, 'rhs' => 2 ),
+ array( 'lhs' => 115, 'rhs' => 3 ),
array( 'lhs' => 115, 'rhs' => 2 ),
- array( 'lhs' => 115, 'rhs' => 2 ),
- array( 'lhs' => 104, 'rhs' => 1 ),
- array( 'lhs' => 104, 'rhs' => 2 ),
- array( 'lhs' => 104, 'rhs' => 1 ),
- array( 'lhs' => 104, 'rhs' => 3 ),
- array( 'lhs' => 104, 'rhs' => 4 ),
- array( 'lhs' => 100, 'rhs' => 1 ),
- array( 'lhs' => 100, 'rhs' => 1 ),
- array( 'lhs' => 100, 'rhs' => 1 ),
- array( 'lhs' => 100, 'rhs' => 1 ),
- array( 'lhs' => 100, 'rhs' => 1 ),
- array( 'lhs' => 100, 'rhs' => 1 ),
- array( 'lhs' => 100, 'rhs' => 1 ),
- array( 'lhs' => 100, 'rhs' => 1 ),
- array( 'lhs' => 100, 'rhs' => 1 ),
+ array( 'lhs' => 97, 'rhs' => 2 ),
+ array( 'lhs' => 97, 'rhs' => 0 ),
+ array( 'lhs' => 116, 'rhs' => 2 ),
+ array( 'lhs' => 116, 'rhs' => 2 ),
+ array( 'lhs' => 106, 'rhs' => 1 ),
+ array( 'lhs' => 106, 'rhs' => 2 ),
+ array( 'lhs' => 106, 'rhs' => 1 ),
+ array( 'lhs' => 106, 'rhs' => 3 ),
+ array( 'lhs' => 106, 'rhs' => 4 ),
array( 'lhs' => 101, 'rhs' => 1 ),
array( 'lhs' => 101, 'rhs' => 1 ),
array( 'lhs' => 101, 'rhs' => 1 ),
- array( 'lhs' => 99, 'rhs' => 3 ),
- array( 'lhs' => 116, 'rhs' => 1 ),
- array( 'lhs' => 116, 'rhs' => 3 ),
- array( 'lhs' => 116, 'rhs' => 0 ),
- array( 'lhs' => 117, 'rhs' => 3 ),
- array( 'lhs' => 117, 'rhs' => 3 ),
+ array( 'lhs' => 101, 'rhs' => 1 ),
+ array( 'lhs' => 101, 'rhs' => 1 ),
+ array( 'lhs' => 101, 'rhs' => 1 ),
+ array( 'lhs' => 101, 'rhs' => 1 ),
+ array( 'lhs' => 101, 'rhs' => 1 ),
+ array( 'lhs' => 101, 'rhs' => 1 ),
+ array( 'lhs' => 102, 'rhs' => 1 ),
+ array( 'lhs' => 102, 'rhs' => 1 ),
+ array( 'lhs' => 102, 'rhs' => 1 ),
+ array( 'lhs' => 100, 'rhs' => 3 ),
array( 'lhs' => 117, 'rhs' => 1 ),
- array( 'lhs' => 103, 'rhs' => 2 ),
- array( 'lhs' => 103, 'rhs' => 3 ),
- array( 'lhs' => 118, 'rhs' => 2 ),
+ array( 'lhs' => 117, 'rhs' => 3 ),
+ array( 'lhs' => 117, 'rhs' => 0 ),
+ array( 'lhs' => 118, 'rhs' => 3 ),
+ array( 'lhs' => 118, 'rhs' => 3 ),
array( 'lhs' => 118, 'rhs' => 1 ),
- array( 'lhs' => 119, 'rhs' => 3 ),
- array( 'lhs' => 119, 'rhs' => 3 ),
- array( 'lhs' => 119, 'rhs' => 1 ),
- array( 'lhs' => 119, 'rhs' => 3 ),
- array( 'lhs' => 119, 'rhs' => 3 ),
- array( 'lhs' => 119, 'rhs' => 1 ),
+ array( 'lhs' => 105, 'rhs' => 2 ),
+ array( 'lhs' => 105, 'rhs' => 3 ),
+ array( 'lhs' => 119, 'rhs' => 2 ),
array( 'lhs' => 119, 'rhs' => 1 ),
+ array( 'lhs' => 120, 'rhs' => 3 ),
+ array( 'lhs' => 120, 'rhs' => 3 ),
+ array( 'lhs' => 120, 'rhs' => 1 ),
+ array( 'lhs' => 120, 'rhs' => 3 ),
+ array( 'lhs' => 120, 'rhs' => 3 ),
+ array( 'lhs' => 120, 'rhs' => 1 ),
+ array( 'lhs' => 120, 'rhs' => 1 ),
array( 'lhs' => 94, 'rhs' => 1 ),
array( 'lhs' => 94, 'rhs' => 0 ),
);
14 => 14,
15 => 15,
18 => 15,
+ 200 => 15,
16 => 16,
+ 75 => 16,
17 => 17,
103 => 17,
105 => 17,
106 => 17,
+ 127 => 17,
165 => 17,
19 => 19,
20 => 19,
+ 46 => 19,
+ 68 => 19,
+ 69 => 19,
76 => 19,
77 => 19,
+ 82 => 19,
102 => 19,
107 => 19,
108 => 19,
115 => 19,
116 => 19,
123 => 19,
+ 138 => 19,
164 => 19,
+ 166 => 19,
182 => 19,
+ 187 => 19,
+ 199 => 19,
21 => 21,
22 => 21,
23 => 23,
25 => 25,
26 => 26,
27 => 27,
- 29 => 27,
28 => 28,
30 => 28,
- 32 => 28,
+ 29 => 29,
31 => 31,
+ 32 => 31,
33 => 33,
- 34 => 33,
+ 34 => 34,
35 => 35,
36 => 36,
37 => 37,
39 => 39,
40 => 40,
41 => 41,
+ 43 => 41,
42 => 42,
- 44 => 42,
- 43 => 43,
- 45 => 43,
- 46 => 46,
+ 44 => 44,
+ 45 => 45,
47 => 47,
48 => 48,
- 68 => 48,
- 69 => 48,
- 166 => 48,
- 187 => 48,
49 => 49,
50 => 50,
51 => 51,
71 => 62,
154 => 62,
158 => 62,
+ 162 => 62,
+ 163 => 62,
63 => 63,
155 => 63,
+ 161 => 63,
64 => 64,
65 => 65,
66 => 65,
+ 70 => 65,
67 => 67,
- 70 => 70,
72 => 72,
73 => 73,
74 => 73,
- 75 => 75,
78 => 78,
79 => 79,
80 => 79,
81 => 79,
- 82 => 82,
- 138 => 82,
- 199 => 82,
83 => 83,
120 => 83,
84 => 84,
124 => 124,
125 => 125,
126 => 126,
- 127 => 127,
128 => 128,
+ 184 => 128,
129 => 129,
130 => 130,
131 => 131,
157 => 157,
159 => 159,
160 => 160,
- 161 => 161,
- 162 => 162,
- 163 => 162,
167 => 167,
168 => 168,
169 => 169,
180 => 180,
181 => 181,
183 => 183,
- 184 => 184,
185 => 185,
186 => 186,
188 => 188,
196 => 196,
197 => 197,
198 => 198,
- 200 => 200,
);
-#line 84 "smarty_internal_templateparser.y"
- function yy_r0(){ $this->_retvalue = $this->root_buffer->to_smarty_php(); }
-#line 2179 "smarty_internal_templateparser.php"
-#line 90 "smarty_internal_templateparser.y"
- function yy_r1(){ $this->current_buffer->append_subtree($this->yystack[$this->yyidx + 0]->minor); }
-#line 2182 "smarty_internal_templateparser.php"
+#line 94 "smarty_internal_templateparser.y"
+ function yy_r0(){
+ $this->_retvalue = $this->root_buffer->to_smarty_php();
+ }
+#line 2145 "smarty_internal_templateparser.php"
#line 102 "smarty_internal_templateparser.y"
+ function yy_r1(){
+ $this->current_buffer->append_subtree($this->yystack[$this->yyidx + 0]->minor);
+ }
+#line 2150 "smarty_internal_templateparser.php"
+#line 118 "smarty_internal_templateparser.y"
function yy_r4(){
- if ($this->compiler->has_code) {
- $tmp =''; foreach ($this->compiler->prefix_code as $code) {$tmp.=$code;} $this->compiler->prefix_code=array();
- $this->_retvalue = new _smarty_tag($this, $this->compiler->processNocacheCode($tmp.$this->yystack[$this->yyidx + 0]->minor,true));
- } else {
- $this->_retvalue = new _smarty_tag($this, $this->yystack[$this->yyidx + 0]->minor);
- }
- $this->compiler->has_variable_string = false;
- $this->block_nesting_level = count($this->compiler->_tag_stack);
- }
-#line 2194 "smarty_internal_templateparser.php"
-#line 114 "smarty_internal_templateparser.y"
- function yy_r5(){ $this->_retvalue = new _smarty_tag($this, ''); }
-#line 2197 "smarty_internal_templateparser.php"
-#line 117 "smarty_internal_templateparser.y"
- function yy_r6(){ $this->_retvalue = new _smarty_text($this, $this->yystack[$this->yyidx + 0]->minor); }
-#line 2200 "smarty_internal_templateparser.php"
-#line 120 "smarty_internal_templateparser.y"
+ if ($this->compiler->has_code) {
+ $tmp =''; foreach ($this->compiler->prefix_code as $code) {$tmp.=$code;} $this->compiler->prefix_code=array();
+ $this->_retvalue = new _smarty_tag($this, $this->compiler->processNocacheCode($tmp.$this->yystack[$this->yyidx + 0]->minor,true));
+ } else {
+ $this->_retvalue = new _smarty_tag($this, $this->yystack[$this->yyidx + 0]->minor);
+ }
+ $this->compiler->has_variable_string = false;
+ $this->block_nesting_level = count($this->compiler->_tag_stack);
+ }
+#line 2162 "smarty_internal_templateparser.php"
+#line 130 "smarty_internal_templateparser.y"
+ function yy_r5(){
+ $this->_retvalue = new _smarty_tag($this, '');
+ }
+#line 2167 "smarty_internal_templateparser.php"
+#line 135 "smarty_internal_templateparser.y"
+ function yy_r6(){
+ $this->_retvalue = new _smarty_text($this, $this->yystack[$this->yyidx + 0]->minor);
+ }
+#line 2172 "smarty_internal_templateparser.php"
+#line 140 "smarty_internal_templateparser.y"
function yy_r7(){
- if ($this->php_handling == Smarty::PHP_PASSTHRU) {
- $this->_retvalue = new _smarty_text($this, self::escape_start_tag($this->yystack[$this->yyidx + 0]->minor));
- } elseif ($this->php_handling == Smarty::PHP_QUOTE) {
- $this->_retvalue = new _smarty_text($this, htmlspecialchars($this->yystack[$this->yyidx + 0]->minor, ENT_QUOTES));
- }elseif ($this->php_handling == Smarty::PHP_ALLOW) {
- $this->_retvalue = new _smarty_text($this, $this->compiler->processNocacheCode('<?php', true));
- }elseif ($this->php_handling == Smarty::PHP_REMOVE) {
- $this->_retvalue = new _smarty_text($this, '');
- }
- }
-#line 2213 "smarty_internal_templateparser.php"
-#line 132 "smarty_internal_templateparser.y"
- function yy_r8(){if ($this->is_xml) {
- $this->compiler->tag_nocache = true;
- $this->is_xml = false;
- $save = $this->template->has_nocache_code;
- $this->_retvalue = new _smarty_text($this, $this->compiler->processNocacheCode("<?php echo '?>';?>", $this->compiler, true));
- $this->template->has_nocache_code = $save;
- }elseif ($this->php_handling == Smarty::PHP_PASSTHRU) {
- $this->_retvalue = new _smarty_text($this, '?<?php ?>>');
- } elseif ($this->php_handling == Smarty::PHP_QUOTE) {
- $this->_retvalue = new _smarty_text($this, htmlspecialchars('?>', ENT_QUOTES));
- }elseif ($this->php_handling == Smarty::PHP_ALLOW) {
- $this->_retvalue = new _smarty_text($this, $this->compiler->processNocacheCode('?>', true));
- }elseif ($this->php_handling == Smarty::PHP_REMOVE) {
- $this->_retvalue = new _smarty_text($this, '');
- }
- }
-#line 2231 "smarty_internal_templateparser.php"
-#line 150 "smarty_internal_templateparser.y"
+ if ($this->php_handling == Smarty::PHP_PASSTHRU) {
+ $this->_retvalue = new _smarty_text($this, self::escape_start_tag($this->yystack[$this->yyidx + 0]->minor));
+ } elseif ($this->php_handling == Smarty::PHP_QUOTE) {
+ $this->_retvalue = new _smarty_text($this, htmlspecialchars($this->yystack[$this->yyidx + 0]->minor, ENT_QUOTES));
+ } elseif ($this->php_handling == Smarty::PHP_ALLOW) {
+ if (!($this->smarty instanceof SmartyBC)) {
+ $this->compiler->trigger_template_error (self::Err3);
+ }
+ $this->_retvalue = new _smarty_text($this, $this->compiler->processNocacheCode('<?php', true));
+ } elseif ($this->php_handling == Smarty::PHP_REMOVE) {
+ $this->_retvalue = new _smarty_text($this, '');
+ }
+ }
+#line 2188 "smarty_internal_templateparser.php"
+#line 156 "smarty_internal_templateparser.y"
+ function yy_r8(){
+ if ($this->is_xml) {
+ $this->compiler->tag_nocache = true;
+ $this->is_xml = false;
+ $save = $this->template->has_nocache_code;
+ $this->_retvalue = new _smarty_text($this, $this->compiler->processNocacheCode("<?php echo '?>';?>", $this->compiler, true));
+ $this->template->has_nocache_code = $save;
+ } elseif ($this->php_handling == Smarty::PHP_PASSTHRU) {
+ $this->_retvalue = new _smarty_text($this, '?<?php ?>>');
+ } elseif ($this->php_handling == Smarty::PHP_QUOTE) {
+ $this->_retvalue = new _smarty_text($this, htmlspecialchars('?>', ENT_QUOTES));
+ } elseif ($this->php_handling == Smarty::PHP_ALLOW) {
+ $this->_retvalue = new _smarty_text($this, $this->compiler->processNocacheCode('?>', true));
+ } elseif ($this->php_handling == Smarty::PHP_REMOVE) {
+ $this->_retvalue = new _smarty_text($this, '');
+ }
+ }
+#line 2207 "smarty_internal_templateparser.php"
+#line 175 "smarty_internal_templateparser.y"
function yy_r9(){
- if ($this->php_handling == Smarty::PHP_PASSTHRU) {
- $this->_retvalue = new _smarty_text($this, '<<?php ?>%');
- } elseif ($this->php_handling == Smarty::PHP_QUOTE) {
- $this->_retvalue = new _smarty_text($this, htmlspecialchars($this->yystack[$this->yyidx + 0]->minor, ENT_QUOTES));
- }elseif ($this->php_handling == Smarty::PHP_ALLOW) {
- if ($this->asp_tags) {
- $this->_retvalue = new _smarty_text($this, $this->compiler->processNocacheCode('<%', true));
- } else {
- $this->_retvalue = new _smarty_text($this, '<<?php ?>%');
- }
- }elseif ($this->php_handling == Smarty::PHP_REMOVE) {
- if ($this->asp_tags) {
- $this->_retvalue = new _smarty_text($this, '');
- } else {
- $this->_retvalue = new _smarty_text($this, '<<?php ?>%');
- }
- }
- }
-#line 2252 "smarty_internal_templateparser.php"
-#line 171 "smarty_internal_templateparser.y"
- function yy_r10(){
- if ($this->php_handling == Smarty::PHP_PASSTHRU) {
- $this->_retvalue = new _smarty_text($this, '%<?php ?>>');
- } elseif ($this->php_handling == Smarty::PHP_QUOTE) {
- $this->_retvalue = new _smarty_text($this, htmlspecialchars('%>', ENT_QUOTES));
- }elseif ($this->php_handling == Smarty::PHP_ALLOW) {
- if ($this->asp_tags) {
- $this->_retvalue = new _smarty_text($this, $this->compiler->processNocacheCode('%>', true));
- } else {
- $this->_retvalue = new _smarty_text($this, '%<?php ?>>');
- }
- }elseif ($this->php_handling == Smarty::PHP_REMOVE) {
- if ($this->asp_tags) {
- $this->_retvalue = new _smarty_text($this, '');
- } else {
- $this->_retvalue = new _smarty_text($this, '%<?php ?>>');
- }
- }
- }
-#line 2273 "smarty_internal_templateparser.php"
-#line 191 "smarty_internal_templateparser.y"
- function yy_r11(){if ($this->lex->strip) {
- $this->_retvalue = new _smarty_text($this, preg_replace('![\$this->yystack[$this->yyidx + 0]->minor ]*[\r\n]+[\$this->yystack[$this->yyidx + 0]->minor ]*!', '', self::escape_start_tag($this->yystack[$this->yyidx + 0]->minor)));
- } else {
- $this->_retvalue = new _smarty_text($this, self::escape_start_tag($this->yystack[$this->yyidx + 0]->minor));
- }
- }
-#line 2281 "smarty_internal_templateparser.php"
+ if ($this->php_handling == Smarty::PHP_PASSTHRU) {
+ $this->_retvalue = new _smarty_text($this, '<<?php ?>%');
+ } elseif ($this->php_handling == Smarty::PHP_QUOTE) {
+ $this->_retvalue = new _smarty_text($this, htmlspecialchars($this->yystack[$this->yyidx + 0]->minor, ENT_QUOTES));
+ } elseif ($this->php_handling == Smarty::PHP_ALLOW) {
+ if ($this->asp_tags) {
+ if (!($this->smarty instanceof SmartyBC)) {
+ $this->compiler->trigger_template_error (self::Err3);
+ }
+ $this->_retvalue = new _smarty_text($this, $this->compiler->processNocacheCode('<%', true));
+ } else {
+ $this->_retvalue = new _smarty_text($this, '<<?php ?>%');
+ }
+ } elseif ($this->php_handling == Smarty::PHP_REMOVE) {
+ if ($this->asp_tags) {
+ $this->_retvalue = new _smarty_text($this, '');
+ } else {
+ $this->_retvalue = new _smarty_text($this, '<<?php ?>%');
+ }
+ }
+ }
+#line 2231 "smarty_internal_templateparser.php"
#line 199 "smarty_internal_templateparser.y"
- function yy_r12(){ $this->compiler->tag_nocache = true;
- $this->is_xml = true;
- $save = $this->template->has_nocache_code;
- $this->_retvalue = new _smarty_text($this, $this->compiler->processNocacheCode("<?php echo '<?xml';?>", $this->compiler, true));
- $this->template->has_nocache_code = $save;
- }
-#line 2289 "smarty_internal_templateparser.php"
-#line 207 "smarty_internal_templateparser.y"
- function yy_r13(){if ($this->lex->strip) {
- $this->_retvalue = new _smarty_text($this, preg_replace('![\t ]*[\r\n]+[\t ]*!', '', $this->yystack[$this->yyidx + 0]->minor));
- } else {
- $this->_retvalue = new _smarty_text($this, $this->yystack[$this->yyidx + 0]->minor);
- }
- }
-#line 2297 "smarty_internal_templateparser.php"
-#line 213 "smarty_internal_templateparser.y"
- function yy_r14(){
- $this->_retvalue = new _smarty_linebreak($this, $this->yystack[$this->yyidx + 0]->minor);
- }
-#line 2302 "smarty_internal_templateparser.php"
-#line 218 "smarty_internal_templateparser.y"
- function yy_r15(){ $this->_retvalue = ''; }
-#line 2305 "smarty_internal_templateparser.php"
+ function yy_r10(){
+ if ($this->php_handling == Smarty::PHP_PASSTHRU) {
+ $this->_retvalue = new _smarty_text($this, '%<?php ?>>');
+ } elseif ($this->php_handling == Smarty::PHP_QUOTE) {
+ $this->_retvalue = new _smarty_text($this, htmlspecialchars('%>', ENT_QUOTES));
+ } elseif ($this->php_handling == Smarty::PHP_ALLOW) {
+ if ($this->asp_tags) {
+ $this->_retvalue = new _smarty_text($this, $this->compiler->processNocacheCode('%>', true));
+ } else {
+ $this->_retvalue = new _smarty_text($this, '%<?php ?>>');
+ }
+ } elseif ($this->php_handling == Smarty::PHP_REMOVE) {
+ if ($this->asp_tags) {
+ $this->_retvalue = new _smarty_text($this, '');
+ } else {
+ $this->_retvalue = new _smarty_text($this, '%<?php ?>>');
+ }
+ }
+ }
+#line 2252 "smarty_internal_templateparser.php"
#line 219 "smarty_internal_templateparser.y"
- function yy_r16(){ $this->_retvalue = $this->yystack[$this->yyidx + -1]->minor; }
-#line 2308 "smarty_internal_templateparser.php"
-#line 221 "smarty_internal_templateparser.y"
- function yy_r17(){ $this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; }
-#line 2311 "smarty_internal_templateparser.php"
-#line 224 "smarty_internal_templateparser.y"
- function yy_r19(){ $this->_retvalue = $this->yystack[$this->yyidx + 0]->minor; }
-#line 2314 "smarty_internal_templateparser.php"
-#line 226 "smarty_internal_templateparser.y"
- function yy_r21(){ $this->_retvalue = self::escape_start_tag($this->yystack[$this->yyidx + 0]->minor); }
-#line 2317 "smarty_internal_templateparser.php"
+ function yy_r11(){
+ if ($this->lex->strip) {
+ $this->_retvalue = new _smarty_text($this, preg_replace('![\$this->yystack[$this->yyidx + 0]->minor ]*[\r\n]+[\$this->yystack[$this->yyidx + 0]->minor ]*!', '', self::escape_start_tag($this->yystack[$this->yyidx + 0]->minor)));
+ } else {
+ $this->_retvalue = new _smarty_text($this, self::escape_start_tag($this->yystack[$this->yyidx + 0]->minor));
+ }
+ }
+#line 2261 "smarty_internal_templateparser.php"
#line 228 "smarty_internal_templateparser.y"
- function yy_r23(){ $this->_retvalue = self::escape_end_tag($this->yystack[$this->yyidx + 0]->minor); }
-#line 2320 "smarty_internal_templateparser.php"
-#line 229 "smarty_internal_templateparser.y"
- function yy_r24(){ $this->_retvalue = '<<?php ?>%'; }
-#line 2323 "smarty_internal_templateparser.php"
-#line 230 "smarty_internal_templateparser.y"
- function yy_r25(){ $this->_retvalue = '%<?php ?>>'; }
-#line 2326 "smarty_internal_templateparser.php"
-#line 238 "smarty_internal_templateparser.y"
- function yy_r26(){ $this->_retvalue = $this->compiler->compileTag('private_print_expression',array(),array('value'=>$this->yystack[$this->yyidx + -1]->minor)); }
-#line 2329 "smarty_internal_templateparser.php"
-#line 239 "smarty_internal_templateparser.y"
- function yy_r27(){ $this->_retvalue = $this->compiler->compileTag('private_print_expression',$this->yystack[$this->yyidx + -1]->minor,array('value'=>$this->yystack[$this->yyidx + -3]->minor, 'modifierlist'=>$this->yystack[$this->yyidx + -2]->minor)); }
-#line 2332 "smarty_internal_templateparser.php"
-#line 240 "smarty_internal_templateparser.y"
- function yy_r28(){ $this->_retvalue = $this->compiler->compileTag('private_print_expression',$this->yystack[$this->yyidx + -1]->minor,array('value'=>$this->yystack[$this->yyidx + -2]->minor)); }
-#line 2335 "smarty_internal_templateparser.php"
-#line 243 "smarty_internal_templateparser.y"
- function yy_r31(){ $this->_retvalue = $this->compiler->compileTag('private_print_expression',$this->yystack[$this->yyidx + -1]->minor,array('value'=>$this->yystack[$this->yyidx + -3]->minor,'modifierlist'=>$this->yystack[$this->yyidx + -2]->minor)); }
-#line 2338 "smarty_internal_templateparser.php"
-#line 251 "smarty_internal_templateparser.y"
- function yy_r33(){ $this->_retvalue = $this->compiler->compileTag('assign',array(array('value'=>$this->yystack[$this->yyidx + -1]->minor),array('var'=>"'".$this->yystack[$this->yyidx + -3]->minor."'"))); }
-#line 2341 "smarty_internal_templateparser.php"
-#line 253 "smarty_internal_templateparser.y"
- function yy_r35(){ $this->_retvalue = $this->compiler->compileTag('assign',array_merge(array(array('value'=>$this->yystack[$this->yyidx + -2]->minor),array('var'=>"'".$this->yystack[$this->yyidx + -4]->minor."'")),$this->yystack[$this->yyidx + -1]->minor)); }
-#line 2344 "smarty_internal_templateparser.php"
+ function yy_r12(){
+ $this->compiler->tag_nocache = true;
+ $this->is_xml = true;
+ $save = $this->template->has_nocache_code;
+ $this->_retvalue = new _smarty_text($this, $this->compiler->processNocacheCode("<?php echo '<?xml';?>", $this->compiler, true));
+ $this->template->has_nocache_code = $save;
+ }
+#line 2270 "smarty_internal_templateparser.php"
+#line 237 "smarty_internal_templateparser.y"
+ function yy_r13(){
+ if ($this->lex->strip) {
+ $this->_retvalue = new _smarty_text($this, preg_replace('![\t ]*[\r\n]+[\t ]*!', '', $this->yystack[$this->yyidx + 0]->minor));
+ } else {
+ $this->_retvalue = new _smarty_text($this, $this->yystack[$this->yyidx + 0]->minor);
+ }
+ }
+#line 2279 "smarty_internal_templateparser.php"
+#line 245 "smarty_internal_templateparser.y"
+ function yy_r14(){
+ $this->_retvalue = new _smarty_linebreak($this, $this->yystack[$this->yyidx + 0]->minor);
+ }
+#line 2284 "smarty_internal_templateparser.php"
+#line 250 "smarty_internal_templateparser.y"
+ function yy_r15(){
+ $this->_retvalue = '';
+ }
+#line 2289 "smarty_internal_templateparser.php"
#line 254 "smarty_internal_templateparser.y"
- function yy_r36(){ $this->_retvalue = $this->compiler->compileTag('assign',array_merge(array(array('value'=>$this->yystack[$this->yyidx + -2]->minor),array('var'=>$this->yystack[$this->yyidx + -4]->minor['var'])),$this->yystack[$this->yyidx + -1]->minor),array('smarty_internal_index'=>$this->yystack[$this->yyidx + -4]->minor['smarty_internal_index'])); }
-#line 2347 "smarty_internal_templateparser.php"
-#line 256 "smarty_internal_templateparser.y"
- function yy_r37(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -2]->minor,$this->yystack[$this->yyidx + -1]->minor); }
-#line 2350 "smarty_internal_templateparser.php"
-#line 257 "smarty_internal_templateparser.y"
- function yy_r38(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -1]->minor,array()); }
-#line 2353 "smarty_internal_templateparser.php"
-#line 259 "smarty_internal_templateparser.y"
- function yy_r39(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -4]->minor,$this->yystack[$this->yyidx + -1]->minor,array('object_methode'=>$this->yystack[$this->yyidx + -2]->minor)); }
-#line 2356 "smarty_internal_templateparser.php"
-#line 261 "smarty_internal_templateparser.y"
- function yy_r40(){ $this->_retvalue = '<?php ob_start();?>'.$this->compiler->compileTag($this->yystack[$this->yyidx + -3]->minor,$this->yystack[$this->yyidx + -1]->minor).'<?php echo ';
- $this->_retvalue .= $this->compiler->compileTag('private_modifier',array(),array('modifierlist'=>$this->yystack[$this->yyidx + -2]->minor,'value'=>'ob_get_clean()')).'?>';
- }
-#line 2361 "smarty_internal_templateparser.php"
-#line 265 "smarty_internal_templateparser.y"
- function yy_r41(){ $this->_retvalue = '<?php ob_start();?>'.$this->compiler->compileTag($this->yystack[$this->yyidx + -5]->minor,$this->yystack[$this->yyidx + -1]->minor,array('object_methode'=>$this->yystack[$this->yyidx + -3]->minor)).'<?php echo ';
- $this->_retvalue .= $this->compiler->compileTag('private_modifier',array(),array('modifierlist'=>$this->yystack[$this->yyidx + -2]->minor,'value'=>'ob_get_clean()')).'?>';
- }
-#line 2366 "smarty_internal_templateparser.php"
-#line 269 "smarty_internal_templateparser.y"
- function yy_r42(){ $tag = trim(substr($this->yystack[$this->yyidx + -2]->minor,$this->lex->ldel_length)); $this->_retvalue = $this->compiler->compileTag(($tag == 'else if')? 'elseif' : $tag,array(),array('if condition'=>$this->yystack[$this->yyidx + -1]->minor)); }
-#line 2369 "smarty_internal_templateparser.php"
-#line 270 "smarty_internal_templateparser.y"
- function yy_r43(){ $tag = trim(substr($this->yystack[$this->yyidx + -3]->minor,$this->lex->ldel_length)); $this->_retvalue = $this->compiler->compileTag(($tag == 'else if')? 'elseif' : $tag,$this->yystack[$this->yyidx + -1]->minor,array('if condition'=>$this->yystack[$this->yyidx + -2]->minor)); }
-#line 2372 "smarty_internal_templateparser.php"
+ function yy_r16(){
+ $this->_retvalue = $this->yystack[$this->yyidx + -1]->minor;
+ }
+#line 2294 "smarty_internal_templateparser.php"
+#line 258 "smarty_internal_templateparser.y"
+ function yy_r17(){
+ $this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor;
+ }
+#line 2299 "smarty_internal_templateparser.php"
+#line 266 "smarty_internal_templateparser.y"
+ function yy_r19(){
+ $this->_retvalue = $this->yystack[$this->yyidx + 0]->minor;
+ }
+#line 2304 "smarty_internal_templateparser.php"
#line 274 "smarty_internal_templateparser.y"
- function yy_r46(){
- $this->_retvalue = $this->compiler->compileTag('for',array_merge($this->yystack[$this->yyidx + -1]->minor,array(array('start'=>$this->yystack[$this->yyidx + -10]->minor),array('ifexp'=>$this->yystack[$this->yyidx + -7]->minor),array('var'=>$this->yystack[$this->yyidx + -3]->minor),array('step'=>$this->yystack[$this->yyidx + -2]->minor))),1); }
-#line 2376 "smarty_internal_templateparser.php"
-#line 277 "smarty_internal_templateparser.y"
- function yy_r47(){ $this->_retvalue = '='.$this->yystack[$this->yyidx + 0]->minor; }
-#line 2379 "smarty_internal_templateparser.php"
-#line 278 "smarty_internal_templateparser.y"
- function yy_r48(){ $this->_retvalue = $this->yystack[$this->yyidx + 0]->minor; }
-#line 2382 "smarty_internal_templateparser.php"
-#line 279 "smarty_internal_templateparser.y"
- function yy_r49(){ $this->_retvalue = $this->compiler->compileTag('for',array_merge($this->yystack[$this->yyidx + -1]->minor,array(array('start'=>$this->yystack[$this->yyidx + -4]->minor),array('to'=>$this->yystack[$this->yyidx + -2]->minor))),0); }
-#line 2385 "smarty_internal_templateparser.php"
-#line 280 "smarty_internal_templateparser.y"
- function yy_r50(){ $this->_retvalue = $this->compiler->compileTag('for',array_merge($this->yystack[$this->yyidx + -1]->minor,array(array('start'=>$this->yystack[$this->yyidx + -6]->minor),array('to'=>$this->yystack[$this->yyidx + -4]->minor),array('step'=>$this->yystack[$this->yyidx + -2]->minor))),0); }
-#line 2388 "smarty_internal_templateparser.php"
+ function yy_r21(){
+ $this->_retvalue = self::escape_start_tag($this->yystack[$this->yyidx + 0]->minor);
+ }
+#line 2309 "smarty_internal_templateparser.php"
#line 282 "smarty_internal_templateparser.y"
- function yy_r51(){ $this->_retvalue = $this->compiler->compileTag('foreach',$this->yystack[$this->yyidx + -1]->minor); }
-#line 2391 "smarty_internal_templateparser.php"
-#line 284 "smarty_internal_templateparser.y"
- function yy_r52(){
- $this->_retvalue = $this->compiler->compileTag('foreach',array_merge($this->yystack[$this->yyidx + -1]->minor,array(array('from'=>$this->yystack[$this->yyidx + -5]->minor),array('item'=>$this->yystack[$this->yyidx + -2]->minor)))); }
-#line 2395 "smarty_internal_templateparser.php"
+ function yy_r23(){
+ $this->_retvalue = self::escape_end_tag($this->yystack[$this->yyidx + 0]->minor);
+ }
+#line 2314 "smarty_internal_templateparser.php"
#line 286 "smarty_internal_templateparser.y"
- function yy_r53(){
- $this->_retvalue = $this->compiler->compileTag('foreach',array_merge($this->yystack[$this->yyidx + -1]->minor,array(array('from'=>$this->yystack[$this->yyidx + -8]->minor),array('item'=>$this->yystack[$this->yyidx + -2]->minor),array('key'=>$this->yystack[$this->yyidx + -5]->minor)))); }
-#line 2399 "smarty_internal_templateparser.php"
-#line 288 "smarty_internal_templateparser.y"
- function yy_r54(){
- $this->_retvalue = $this->compiler->compileTag('foreach',array_merge($this->yystack[$this->yyidx + -1]->minor,array(array('from'=>$this->yystack[$this->yyidx + -5]->minor),array('item'=>$this->yystack[$this->yyidx + -2]->minor)))); }
-#line 2403 "smarty_internal_templateparser.php"
+ function yy_r24(){
+ $this->_retvalue = '<<?php ?>%';
+ }
+#line 2319 "smarty_internal_templateparser.php"
#line 290 "smarty_internal_templateparser.y"
- function yy_r55(){
- $this->_retvalue = $this->compiler->compileTag('foreach',array_merge($this->yystack[$this->yyidx + -1]->minor,array(array('from'=>$this->yystack[$this->yyidx + -8]->minor),array('item'=>$this->yystack[$this->yyidx + -2]->minor),array('key'=>$this->yystack[$this->yyidx + -5]->minor)))); }
-#line 2407 "smarty_internal_templateparser.php"
-#line 294 "smarty_internal_templateparser.y"
- function yy_r56(){ $this->_retvalue = SMARTY_INTERNAL_COMPILE_BLOCK::compileChildBlock($this->compiler); }
-#line 2410 "smarty_internal_templateparser.php"
-#line 298 "smarty_internal_templateparser.y"
- function yy_r57(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -1]->minor.'close',array()); }
-#line 2413 "smarty_internal_templateparser.php"
+ function yy_r25(){
+ $this->_retvalue = '%<?php ?>>';
+ }
+#line 2324 "smarty_internal_templateparser.php"
#line 300 "smarty_internal_templateparser.y"
- function yy_r58(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -2]->minor.'close',array(),array('modifier_list'=>$this->yystack[$this->yyidx + -1]->minor));
- }
-#line 2417 "smarty_internal_templateparser.php"
-#line 303 "smarty_internal_templateparser.y"
- function yy_r59(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -3]->minor.'close',array(),array('object_methode'=>$this->yystack[$this->yyidx + -1]->minor)); }
-#line 2420 "smarty_internal_templateparser.php"
+ function yy_r26(){
+ $this->_retvalue = $this->compiler->compileTag('private_print_expression',array(),array('value'=>$this->yystack[$this->yyidx + -1]->minor));
+ }
+#line 2329 "smarty_internal_templateparser.php"
#line 304 "smarty_internal_templateparser.y"
- function yy_r60(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -4]->minor.'close',array(),array('object_methode'=>$this->yystack[$this->yyidx + -2]->minor, 'modifier_list'=>$this->yystack[$this->yyidx + -1]->minor)); }
-#line 2423 "smarty_internal_templateparser.php"
-#line 310 "smarty_internal_templateparser.y"
- function yy_r61(){ $this->_retvalue = $this->yystack[$this->yyidx + -1]->minor; $this->_retvalue[] = $this->yystack[$this->yyidx + 0]->minor; }
-#line 2426 "smarty_internal_templateparser.php"
+ function yy_r27(){
+ $this->_retvalue = $this->compiler->compileTag('private_print_expression',$this->yystack[$this->yyidx + -1]->minor,array('value'=>$this->yystack[$this->yyidx + -3]->minor, 'modifierlist'=>$this->yystack[$this->yyidx + -2]->minor));
+ }
+#line 2334 "smarty_internal_templateparser.php"
+#line 308 "smarty_internal_templateparser.y"
+ function yy_r28(){
+ $this->_retvalue = $this->compiler->compileTag('private_print_expression',$this->yystack[$this->yyidx + -1]->minor,array('value'=>$this->yystack[$this->yyidx + -2]->minor));
+ }
+#line 2339 "smarty_internal_templateparser.php"
#line 312 "smarty_internal_templateparser.y"
- function yy_r62(){ $this->_retvalue = array($this->yystack[$this->yyidx + 0]->minor); }
-#line 2429 "smarty_internal_templateparser.php"
-#line 314 "smarty_internal_templateparser.y"
- function yy_r63(){ $this->_retvalue = array(); }
-#line 2432 "smarty_internal_templateparser.php"
-#line 317 "smarty_internal_templateparser.y"
- function yy_r64(){ if (preg_match('~^true$~i', $this->yystack[$this->yyidx + 0]->minor)) {
- $this->_retvalue = array($this->yystack[$this->yyidx + -2]->minor=>'true');
- } elseif (preg_match('~^false$~i', $this->yystack[$this->yyidx + 0]->minor)) {
- $this->_retvalue = array($this->yystack[$this->yyidx + -2]->minor=>'false');
- } elseif (preg_match('~^null$~i', $this->yystack[$this->yyidx + 0]->minor)) {
- $this->_retvalue = array($this->yystack[$this->yyidx + -2]->minor=>'null');
- } else
- $this->_retvalue = array($this->yystack[$this->yyidx + -2]->minor=>"'".$this->yystack[$this->yyidx + 0]->minor."'"); }
-#line 2442 "smarty_internal_templateparser.php"
+ function yy_r29(){
+ $this->_retvalue = $this->compiler->compileTag('private_print_expression',$this->yystack[$this->yyidx + -1]->minor,array('value'=>$this->yystack[$this->yyidx + -3]->minor,'modifierlist'=>$this->yystack[$this->yyidx + -2]->minor));
+ }
+#line 2344 "smarty_internal_templateparser.php"
#line 325 "smarty_internal_templateparser.y"
- function yy_r65(){ $this->_retvalue = array($this->yystack[$this->yyidx + -2]->minor=>$this->yystack[$this->yyidx + 0]->minor); }
-#line 2445 "smarty_internal_templateparser.php"
-#line 327 "smarty_internal_templateparser.y"
- function yy_r67(){ $this->_retvalue = "'".$this->yystack[$this->yyidx + 0]->minor."'"; }
-#line 2448 "smarty_internal_templateparser.php"
-#line 330 "smarty_internal_templateparser.y"
- function yy_r70(){$this->_retvalue = array($this->yystack[$this->yyidx + -2]->minor=>$this->yystack[$this->yyidx + 0]->minor); }
-#line 2451 "smarty_internal_templateparser.php"
+ function yy_r31(){
+ $this->_retvalue = $this->compiler->compileTag('assign',array(array('value'=>$this->yystack[$this->yyidx + -1]->minor),array('var'=>"'".$this->yystack[$this->yyidx + -3]->minor."'")));
+ }
+#line 2349 "smarty_internal_templateparser.php"
+#line 333 "smarty_internal_templateparser.y"
+ function yy_r33(){
+ $this->_retvalue = $this->compiler->compileTag('assign',array_merge(array(array('value'=>$this->yystack[$this->yyidx + -2]->minor),array('var'=>"'".$this->yystack[$this->yyidx + -4]->minor."'")),$this->yystack[$this->yyidx + -1]->minor));
+ }
+#line 2354 "smarty_internal_templateparser.php"
#line 337 "smarty_internal_templateparser.y"
- function yy_r72(){ $this->yystack[$this->yyidx + -2]->minor[]=$this->yystack[$this->yyidx + 0]->minor; $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor; }
-#line 2454 "smarty_internal_templateparser.php"
-#line 339 "smarty_internal_templateparser.y"
- function yy_r73(){ $this->_retvalue = array('var' => $this->yystack[$this->yyidx + -2]->minor, 'value'=>$this->yystack[$this->yyidx + 0]->minor); }
-#line 2457 "smarty_internal_templateparser.php"
-#line 341 "smarty_internal_templateparser.y"
- function yy_r75(){ $this->_retvalue = $this->yystack[$this->yyidx + -1]->minor; }
-#line 2460 "smarty_internal_templateparser.php"
-#line 352 "smarty_internal_templateparser.y"
- function yy_r78(){$this->_retvalue = '$_smarty_tpl->getStreamVariable(\''. $this->yystack[$this->yyidx + -2]->minor .'://'. $this->yystack[$this->yyidx + 0]->minor . '\')'; }
-#line 2463 "smarty_internal_templateparser.php"
-#line 354 "smarty_internal_templateparser.y"
- function yy_r79(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor . trim($this->yystack[$this->yyidx + -1]->minor) . $this->yystack[$this->yyidx + 0]->minor; }
-#line 2466 "smarty_internal_templateparser.php"
-#line 360 "smarty_internal_templateparser.y"
- function yy_r82(){$this->_retvalue = $this->yystack[$this->yyidx + 0]->minor; }
-#line 2469 "smarty_internal_templateparser.php"
-#line 363 "smarty_internal_templateparser.y"
- function yy_r83(){ $this->_retvalue = $this->compiler->compileTag('private_modifier',array(),array('value'=>$this->yystack[$this->yyidx + -1]->minor,'modifierlist'=>$this->yystack[$this->yyidx + 0]->minor)); }
-#line 2472 "smarty_internal_templateparser.php"
-#line 367 "smarty_internal_templateparser.y"
- function yy_r84(){$this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; }
-#line 2475 "smarty_internal_templateparser.php"
+ function yy_r34(){
+ $this->_retvalue = $this->compiler->compileTag('assign',array_merge(array(array('value'=>$this->yystack[$this->yyidx + -2]->minor),array('var'=>$this->yystack[$this->yyidx + -4]->minor['var'])),$this->yystack[$this->yyidx + -1]->minor),array('smarty_internal_index'=>$this->yystack[$this->yyidx + -4]->minor['smarty_internal_index']));
+ }
+#line 2359 "smarty_internal_templateparser.php"
+#line 342 "smarty_internal_templateparser.y"
+ function yy_r35(){
+ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -2]->minor,$this->yystack[$this->yyidx + -1]->minor);
+ }
+#line 2364 "smarty_internal_templateparser.php"
+#line 346 "smarty_internal_templateparser.y"
+ function yy_r36(){
+ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -1]->minor,array());
+ }
+#line 2369 "smarty_internal_templateparser.php"
+#line 351 "smarty_internal_templateparser.y"
+ function yy_r37(){
+ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -4]->minor,$this->yystack[$this->yyidx + -1]->minor,array('object_methode'=>$this->yystack[$this->yyidx + -2]->minor));
+ }
+#line 2374 "smarty_internal_templateparser.php"
+#line 356 "smarty_internal_templateparser.y"
+ function yy_r38(){
+ $this->_retvalue = '<?php ob_start();?>'.$this->compiler->compileTag($this->yystack[$this->yyidx + -3]->minor,$this->yystack[$this->yyidx + -1]->minor).'<?php echo ';
+ $this->_retvalue .= $this->compiler->compileTag('private_modifier',array(),array('modifierlist'=>$this->yystack[$this->yyidx + -2]->minor,'value'=>'ob_get_clean()')).'?>';
+ }
+#line 2380 "smarty_internal_templateparser.php"
+#line 362 "smarty_internal_templateparser.y"
+ function yy_r39(){
+ $this->_retvalue = '<?php ob_start();?>'.$this->compiler->compileTag($this->yystack[$this->yyidx + -5]->minor,$this->yystack[$this->yyidx + -1]->minor,array('object_methode'=>$this->yystack[$this->yyidx + -3]->minor)).'<?php echo ';
+ $this->_retvalue .= $this->compiler->compileTag('private_modifier',array(),array('modifierlist'=>$this->yystack[$this->yyidx + -2]->minor,'value'=>'ob_get_clean()')).'?>';
+ }
+#line 2386 "smarty_internal_templateparser.php"
#line 368 "smarty_internal_templateparser.y"
- function yy_r85(){$this->_retvalue = 'in_array('.$this->yystack[$this->yyidx + -2]->minor.','.$this->yystack[$this->yyidx + 0]->minor.')'; }
-#line 2478 "smarty_internal_templateparser.php"
-#line 369 "smarty_internal_templateparser.y"
- function yy_r86(){$this->_retvalue = 'in_array('.$this->yystack[$this->yyidx + -2]->minor.',(array)'.$this->yystack[$this->yyidx + 0]->minor.')'; }
-#line 2481 "smarty_internal_templateparser.php"
-#line 371 "smarty_internal_templateparser.y"
- function yy_r88(){$this->_retvalue = '!('.$this->yystack[$this->yyidx + -2]->minor.' % '.$this->yystack[$this->yyidx + 0]->minor.')'; }
-#line 2484 "smarty_internal_templateparser.php"
-#line 372 "smarty_internal_templateparser.y"
- function yy_r89(){$this->_retvalue = '('.$this->yystack[$this->yyidx + -2]->minor.' % '.$this->yystack[$this->yyidx + 0]->minor.')'; }
-#line 2487 "smarty_internal_templateparser.php"
+ function yy_r40(){
+ $tag = trim(substr($this->yystack[$this->yyidx + -2]->minor,$this->lex->ldel_length));
+ $this->_retvalue = $this->compiler->compileTag(($tag == 'else if')? 'elseif' : $tag,array(),array('if condition'=>$this->yystack[$this->yyidx + -1]->minor));
+ }
+#line 2392 "smarty_internal_templateparser.php"
#line 373 "smarty_internal_templateparser.y"
- function yy_r90(){$this->_retvalue = '!(1 & '.$this->yystack[$this->yyidx + -1]->minor.')'; }
-#line 2490 "smarty_internal_templateparser.php"
-#line 374 "smarty_internal_templateparser.y"
- function yy_r91(){$this->_retvalue = '(1 & '.$this->yystack[$this->yyidx + -1]->minor.')'; }
-#line 2493 "smarty_internal_templateparser.php"
-#line 375 "smarty_internal_templateparser.y"
- function yy_r92(){$this->_retvalue = '!(1 & '.$this->yystack[$this->yyidx + -2]->minor.' / '.$this->yystack[$this->yyidx + 0]->minor.')'; }
-#line 2496 "smarty_internal_templateparser.php"
-#line 376 "smarty_internal_templateparser.y"
- function yy_r93(){$this->_retvalue = '(1 & '.$this->yystack[$this->yyidx + -2]->minor.' / '.$this->yystack[$this->yyidx + 0]->minor.')'; }
-#line 2499 "smarty_internal_templateparser.php"
-#line 382 "smarty_internal_templateparser.y"
- function yy_r99(){$this->prefix_number++; $this->compiler->prefix_code[] = '<?php $_tmp'.$this->prefix_number.'='.$this->yystack[$this->yyidx + 0]->minor.';?>'; $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + -1]->minor.'$_tmp'.$this->prefix_number; }
-#line 2502 "smarty_internal_templateparser.php"
-#line 388 "smarty_internal_templateparser.y"
- function yy_r100(){ $this->_retvalue = $this->yystack[$this->yyidx + -6]->minor.' ? $_smarty_tpl->getVariable(\''. $this->yystack[$this->yyidx + -2]->minor .'\')->value : '.$this->yystack[$this->yyidx + 0]->minor; $this->compiler->tag_nocache=$this->compiler->tag_nocache|$this->template->getVariable('$this->yystack[$this->yyidx + -2]->minor', null, true, false)->nocache; }
-#line 2505 "smarty_internal_templateparser.php"
+ function yy_r41(){
+ $tag = trim(substr($this->yystack[$this->yyidx + -3]->minor,$this->lex->ldel_length));
+ $this->_retvalue = $this->compiler->compileTag(($tag == 'else if')? 'elseif' : $tag,$this->yystack[$this->yyidx + -1]->minor,array('if condition'=>$this->yystack[$this->yyidx + -2]->minor));
+ }
+#line 2398 "smarty_internal_templateparser.php"
+#line 378 "smarty_internal_templateparser.y"
+ function yy_r42(){
+ $tag = trim(substr($this->yystack[$this->yyidx + -2]->minor,$this->lex->ldel_length));
+ $this->_retvalue = $this->compiler->compileTag(($tag == 'else if')? 'elseif' : $tag,array(),array('if condition'=>$this->yystack[$this->yyidx + -1]->minor));
+ }
+#line 2404 "smarty_internal_templateparser.php"
#line 389 "smarty_internal_templateparser.y"
- function yy_r101(){ $this->_retvalue = $this->yystack[$this->yyidx + -5]->minor.' ? '.$this->yystack[$this->yyidx + -2]->minor.' : '.$this->yystack[$this->yyidx + 0]->minor; }
-#line 2508 "smarty_internal_templateparser.php"
-#line 396 "smarty_internal_templateparser.y"
- function yy_r104(){ $this->_retvalue = '!'.$this->yystack[$this->yyidx + 0]->minor; }
-#line 2511 "smarty_internal_templateparser.php"
-#line 402 "smarty_internal_templateparser.y"
- function yy_r109(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.'.'.$this->yystack[$this->yyidx + 0]->minor; }
-#line 2514 "smarty_internal_templateparser.php"
-#line 403 "smarty_internal_templateparser.y"
- function yy_r110(){ $this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.'.'; }
-#line 2517 "smarty_internal_templateparser.php"
-#line 404 "smarty_internal_templateparser.y"
- function yy_r111(){ $this->_retvalue = '.'.$this->yystack[$this->yyidx + 0]->minor; }
-#line 2520 "smarty_internal_templateparser.php"
-#line 406 "smarty_internal_templateparser.y"
- function yy_r112(){ if (preg_match('~^true$~i', $this->yystack[$this->yyidx + 0]->minor)) {
- $this->_retvalue = 'true';
- } elseif (preg_match('~^false$~i', $this->yystack[$this->yyidx + 0]->minor)) {
- $this->_retvalue = 'false';
- } elseif (preg_match('~^null$~i', $this->yystack[$this->yyidx + 0]->minor)) {
- $this->_retvalue = 'null';
- } else
- $this->_retvalue = "'".$this->yystack[$this->yyidx + 0]->minor."'"; }
-#line 2530 "smarty_internal_templateparser.php"
-#line 417 "smarty_internal_templateparser.y"
- function yy_r114(){ $this->_retvalue = "(". $this->yystack[$this->yyidx + -1]->minor .")"; }
-#line 2533 "smarty_internal_templateparser.php"
+ function yy_r44(){
+ $this->_retvalue = $this->compiler->compileTag('for',array_merge($this->yystack[$this->yyidx + -1]->minor,array(array('start'=>$this->yystack[$this->yyidx + -10]->minor),array('ifexp'=>$this->yystack[$this->yyidx + -7]->minor),array('var'=>$this->yystack[$this->yyidx + -3]->minor),array('step'=>$this->yystack[$this->yyidx + -2]->minor))),1);
+ }
+#line 2409 "smarty_internal_templateparser.php"
+#line 393 "smarty_internal_templateparser.y"
+ function yy_r45(){
+ $this->_retvalue = '='.$this->yystack[$this->yyidx + 0]->minor;
+ }
+#line 2414 "smarty_internal_templateparser.php"
+#line 401 "smarty_internal_templateparser.y"
+ function yy_r47(){
+ $this->_retvalue = $this->compiler->compileTag('for',array_merge($this->yystack[$this->yyidx + -1]->minor,array(array('start'=>$this->yystack[$this->yyidx + -4]->minor),array('to'=>$this->yystack[$this->yyidx + -2]->minor))),0);
+ }
+#line 2419 "smarty_internal_templateparser.php"
+#line 405 "smarty_internal_templateparser.y"
+ function yy_r48(){
+ $this->_retvalue = $this->compiler->compileTag('for',array_merge($this->yystack[$this->yyidx + -1]->minor,array(array('start'=>$this->yystack[$this->yyidx + -6]->minor),array('to'=>$this->yystack[$this->yyidx + -4]->minor),array('step'=>$this->yystack[$this->yyidx + -2]->minor))),0);
+ }
+#line 2424 "smarty_internal_templateparser.php"
+#line 410 "smarty_internal_templateparser.y"
+ function yy_r49(){
+ $this->_retvalue = $this->compiler->compileTag('foreach',$this->yystack[$this->yyidx + -1]->minor);
+ }
+#line 2429 "smarty_internal_templateparser.php"
+#line 415 "smarty_internal_templateparser.y"
+ function yy_r50(){
+ $this->_retvalue = $this->compiler->compileTag('foreach',array_merge($this->yystack[$this->yyidx + -1]->minor,array(array('from'=>$this->yystack[$this->yyidx + -5]->minor),array('item'=>$this->yystack[$this->yyidx + -2]->minor))));
+ }
+#line 2434 "smarty_internal_templateparser.php"
+#line 419 "smarty_internal_templateparser.y"
+ function yy_r51(){
+ $this->_retvalue = $this->compiler->compileTag('foreach',array_merge($this->yystack[$this->yyidx + -1]->minor,array(array('from'=>$this->yystack[$this->yyidx + -8]->minor),array('item'=>$this->yystack[$this->yyidx + -2]->minor),array('key'=>$this->yystack[$this->yyidx + -5]->minor))));
+ }
+#line 2439 "smarty_internal_templateparser.php"
#line 423 "smarty_internal_templateparser.y"
- function yy_r117(){if (!$this->security || isset($this->smarty->registered_classes[$this->yystack[$this->yyidx + -2]->minor]) || $this->smarty->security_policy->isTrustedStaticClass($this->yystack[$this->yyidx + -2]->minor, $this->compiler)) {
- if (isset($this->smarty->registered_classes[$this->yystack[$this->yyidx + -2]->minor])) {
- $this->_retvalue = $this->smarty->registered_classes[$this->yystack[$this->yyidx + -2]->minor].'::'.$this->yystack[$this->yyidx + 0]->minor;
- } else {
- $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.'::'.$this->yystack[$this->yyidx + 0]->minor;
- }
- } else {
- $this->compiler->trigger_template_error ("static class '".$this->yystack[$this->yyidx + -2]->minor."' is undefined or not allowed by security setting");
- }
- }
-#line 2545 "smarty_internal_templateparser.php"
-#line 433 "smarty_internal_templateparser.y"
- function yy_r118(){ if ($this->yystack[$this->yyidx + -2]->minor['var'] == '\'smarty\'') { $this->_retvalue = $this->compiler->compileTag('private_special_variable',array(),$this->yystack[$this->yyidx + -2]->minor['smarty_internal_index']).'::'.$this->yystack[$this->yyidx + 0]->minor;} else {
- $this->_retvalue = '$_smarty_tpl->getVariable('. $this->yystack[$this->yyidx + -2]->minor['var'] .')->value'.$this->yystack[$this->yyidx + -2]->minor['smarty_internal_index'].'::'.$this->yystack[$this->yyidx + 0]->minor; $this->compiler->tag_nocache=$this->compiler->tag_nocache|$this->template->getVariable(trim($this->yystack[$this->yyidx + -2]->minor['var'],"'"), null, true, false)->nocache;} }
-#line 2549 "smarty_internal_templateparser.php"
+ function yy_r52(){
+ $this->_retvalue = $this->compiler->compileTag('foreach',array_merge($this->yystack[$this->yyidx + -1]->minor,array(array('from'=>$this->yystack[$this->yyidx + -5]->minor),array('item'=>$this->yystack[$this->yyidx + -2]->minor))));
+ }
+#line 2444 "smarty_internal_templateparser.php"
+#line 427 "smarty_internal_templateparser.y"
+ function yy_r53(){
+ $this->_retvalue = $this->compiler->compileTag('foreach',array_merge($this->yystack[$this->yyidx + -1]->minor,array(array('from'=>$this->yystack[$this->yyidx + -8]->minor),array('item'=>$this->yystack[$this->yyidx + -2]->minor),array('key'=>$this->yystack[$this->yyidx + -5]->minor))));
+ }
+#line 2449 "smarty_internal_templateparser.php"
+#line 432 "smarty_internal_templateparser.y"
+ function yy_r54(){
+ $this->_retvalue = $this->compiler->compileTag('setfilter',array(),array('modifier_list'=>array(array_merge(array($this->yystack[$this->yyidx + -2]->minor),$this->yystack[$this->yyidx + -1]->minor))));
+ }
+#line 2454 "smarty_internal_templateparser.php"
#line 436 "smarty_internal_templateparser.y"
- function yy_r119(){ $this->prefix_number++; $this->compiler->prefix_code[] = '<?php ob_start();?>'.$this->yystack[$this->yyidx + 0]->minor.'<?php $_tmp'.$this->prefix_number.'=ob_get_clean();?>'; $this->_retvalue = '$_tmp'.$this->prefix_number; }
-#line 2552 "smarty_internal_templateparser.php"
-#line 446 "smarty_internal_templateparser.y"
- function yy_r121(){if ($this->yystack[$this->yyidx + 0]->minor['var'] == '\'smarty\'') {
- $smarty_var = $this->compiler->compileTag('private_special_variable',array(),$this->yystack[$this->yyidx + 0]->minor['smarty_internal_index']);
- $this->_retvalue = $smarty_var;
- } else {
- // used for array reset,next,prev,end,current
- $this->last_variable = $this->yystack[$this->yyidx + 0]->minor['var'];
- $this->last_index = $this->yystack[$this->yyidx + 0]->minor['smarty_internal_index'];
- if (isset($this->compiler->local_var[$this->yystack[$this->yyidx + 0]->minor['var']])) {
- $this->_retvalue = '$_smarty_tpl->tpl_vars['. $this->yystack[$this->yyidx + 0]->minor['var'] .']->value'.$this->yystack[$this->yyidx + 0]->minor['smarty_internal_index'];
- } else {
- $this->_retvalue = '$_smarty_tpl->getVariable('. $this->yystack[$this->yyidx + 0]->minor['var'] .')->value'.$this->yystack[$this->yyidx + 0]->minor['smarty_internal_index'];
- }
- $this->compiler->tag_nocache=$this->compiler->tag_nocache|$this->template->getVariable(trim($this->yystack[$this->yyidx + 0]->minor['var'],"'"), null, true, false)->nocache;
- }
- }
+ function yy_r55(){
+ $this->_retvalue = $this->compiler->compileTag('setfilter',array(),array('modifier_list'=>array_merge(array(array_merge(array($this->yystack[$this->yyidx + -3]->minor),$this->yystack[$this->yyidx + -2]->minor)),$this->yystack[$this->yyidx + -1]->minor)));
+ }
+#line 2459 "smarty_internal_templateparser.php"
+#line 441 "smarty_internal_templateparser.y"
+ function yy_r56(){
+ $this->_retvalue = SMARTY_INTERNAL_COMPILE_BLOCK::compileChildBlock($this->compiler);
+ }
+#line 2464 "smarty_internal_templateparser.php"
+#line 447 "smarty_internal_templateparser.y"
+ function yy_r57(){
+ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -1]->minor.'close',array());
+ }
+#line 2469 "smarty_internal_templateparser.php"
+#line 451 "smarty_internal_templateparser.y"
+ function yy_r58(){
+ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -2]->minor.'close',array(),array('modifier_list'=>$this->yystack[$this->yyidx + -1]->minor));
+ }
+#line 2474 "smarty_internal_templateparser.php"
+#line 456 "smarty_internal_templateparser.y"
+ function yy_r59(){
+ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -3]->minor.'close',array(),array('object_methode'=>$this->yystack[$this->yyidx + -1]->minor));
+ }
+#line 2479 "smarty_internal_templateparser.php"
+#line 460 "smarty_internal_templateparser.y"
+ function yy_r60(){
+ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -4]->minor.'close',array(),array('object_methode'=>$this->yystack[$this->yyidx + -2]->minor, 'modifier_list'=>$this->yystack[$this->yyidx + -1]->minor));
+ }
+#line 2484 "smarty_internal_templateparser.php"
+#line 468 "smarty_internal_templateparser.y"
+ function yy_r61(){
+ $this->_retvalue = $this->yystack[$this->yyidx + -1]->minor;
+ $this->_retvalue[] = $this->yystack[$this->yyidx + 0]->minor;
+ }
+#line 2490 "smarty_internal_templateparser.php"
+#line 474 "smarty_internal_templateparser.y"
+ function yy_r62(){
+ $this->_retvalue = array($this->yystack[$this->yyidx + 0]->minor);
+ }
+#line 2495 "smarty_internal_templateparser.php"
+#line 479 "smarty_internal_templateparser.y"
+ function yy_r63(){
+ $this->_retvalue = array();
+ }
+#line 2500 "smarty_internal_templateparser.php"
+#line 484 "smarty_internal_templateparser.y"
+ function yy_r64(){
+ if (preg_match('~^true$~i', $this->yystack[$this->yyidx + 0]->minor)) {
+ $this->_retvalue = array($this->yystack[$this->yyidx + -2]->minor=>'true');
+ } elseif (preg_match('~^false$~i', $this->yystack[$this->yyidx + 0]->minor)) {
+ $this->_retvalue = array($this->yystack[$this->yyidx + -2]->minor=>'false');
+ } elseif (preg_match('~^null$~i', $this->yystack[$this->yyidx + 0]->minor)) {
+ $this->_retvalue = array($this->yystack[$this->yyidx + -2]->minor=>'null');
+ } else {
+ $this->_retvalue = array($this->yystack[$this->yyidx + -2]->minor=>"'".$this->yystack[$this->yyidx + 0]->minor."'");
+ }
+ }
+#line 2513 "smarty_internal_templateparser.php"
+#line 496 "smarty_internal_templateparser.y"
+ function yy_r65(){
+ $this->_retvalue = array($this->yystack[$this->yyidx + -2]->minor=>$this->yystack[$this->yyidx + 0]->minor);
+ }
+#line 2518 "smarty_internal_templateparser.php"
+#line 504 "smarty_internal_templateparser.y"
+ function yy_r67(){
+ $this->_retvalue = "'".$this->yystack[$this->yyidx + 0]->minor."'";
+ }
+#line 2523 "smarty_internal_templateparser.php"
+#line 529 "smarty_internal_templateparser.y"
+ function yy_r72(){
+ $this->yystack[$this->yyidx + -2]->minor[]=$this->yystack[$this->yyidx + 0]->minor;
+ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor;
+ }
+#line 2529 "smarty_internal_templateparser.php"
+#line 534 "smarty_internal_templateparser.y"
+ function yy_r73(){
+ $this->_retvalue = array('var' => $this->yystack[$this->yyidx + -2]->minor, 'value'=>$this->yystack[$this->yyidx + 0]->minor);
+ }
+#line 2534 "smarty_internal_templateparser.php"
+#line 562 "smarty_internal_templateparser.y"
+ function yy_r78(){
+ $this->_retvalue = '$_smarty_tpl->getStreamVariable(\''. $this->yystack[$this->yyidx + -2]->minor .'://'. $this->yystack[$this->yyidx + 0]->minor . '\')';
+ }
+#line 2539 "smarty_internal_templateparser.php"
+#line 567 "smarty_internal_templateparser.y"
+ function yy_r79(){
+ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor . trim($this->yystack[$this->yyidx + -1]->minor) . $this->yystack[$this->yyidx + 0]->minor;
+ }
+#line 2544 "smarty_internal_templateparser.php"
+#line 586 "smarty_internal_templateparser.y"
+ function yy_r83(){
+ $this->_retvalue = $this->compiler->compileTag('private_modifier',array(),array('value'=>$this->yystack[$this->yyidx + -1]->minor,'modifierlist'=>$this->yystack[$this->yyidx + 0]->minor));
+ }
+#line 2549 "smarty_internal_templateparser.php"
+#line 592 "smarty_internal_templateparser.y"
+ function yy_r84(){
+ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor;
+ }
+#line 2554 "smarty_internal_templateparser.php"
+#line 596 "smarty_internal_templateparser.y"
+ function yy_r85(){
+ $this->_retvalue = 'in_array('.$this->yystack[$this->yyidx + -2]->minor.','.$this->yystack[$this->yyidx + 0]->minor.')';
+ }
+#line 2559 "smarty_internal_templateparser.php"
+#line 600 "smarty_internal_templateparser.y"
+ function yy_r86(){
+ $this->_retvalue = 'in_array('.$this->yystack[$this->yyidx + -2]->minor.',(array)'.$this->yystack[$this->yyidx + 0]->minor.')';
+ }
+#line 2564 "smarty_internal_templateparser.php"
+#line 608 "smarty_internal_templateparser.y"
+ function yy_r88(){
+ $this->_retvalue = '!('.$this->yystack[$this->yyidx + -2]->minor.' % '.$this->yystack[$this->yyidx + 0]->minor.')';
+ }
#line 2569 "smarty_internal_templateparser.php"
-#line 462 "smarty_internal_templateparser.y"
- function yy_r122(){if (isset($this->compiler->local_var[$this->yystack[$this->yyidx + -2]->minor])) {
- $this->_retvalue = '$_smarty_tpl->tpl_vars['. $this->yystack[$this->yyidx + -2]->minor .']->'.$this->yystack[$this->yyidx + 0]->minor;
- } else {
- $this->_retvalue = '$_smarty_tpl->getVariable('. $this->yystack[$this->yyidx + -2]->minor .')->'.$this->yystack[$this->yyidx + 0]->minor;
- }
- $this->compiler->tag_nocache=$this->compiler->tag_nocache|$this->template->getVariable(trim($this->yystack[$this->yyidx + -2]->minor,"'"), null, true, false)->nocache; }
-#line 2577 "smarty_internal_templateparser.php"
-#line 471 "smarty_internal_templateparser.y"
- function yy_r124(){$this->_retvalue = '$_smarty_tpl->getConfigVariable(\''. $this->yystack[$this->yyidx + -1]->minor .'\')'; }
-#line 2580 "smarty_internal_templateparser.php"
-#line 472 "smarty_internal_templateparser.y"
- function yy_r125(){$this->_retvalue = '$_smarty_tpl->getConfigVariable('. $this->yystack[$this->yyidx + -1]->minor .')'; }
-#line 2583 "smarty_internal_templateparser.php"
-#line 475 "smarty_internal_templateparser.y"
- function yy_r126(){$this->_retvalue = array('var'=>$this->yystack[$this->yyidx + -1]->minor, 'smarty_internal_index'=>$this->yystack[$this->yyidx + 0]->minor); }
-#line 2586 "smarty_internal_templateparser.php"
-#line 481 "smarty_internal_templateparser.y"
- function yy_r127(){$this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; }
+#line 612 "smarty_internal_templateparser.y"
+ function yy_r89(){
+ $this->_retvalue = '('.$this->yystack[$this->yyidx + -2]->minor.' % '.$this->yystack[$this->yyidx + 0]->minor.')';
+ }
+#line 2574 "smarty_internal_templateparser.php"
+#line 616 "smarty_internal_templateparser.y"
+ function yy_r90(){
+ $this->_retvalue = '!(1 & '.$this->yystack[$this->yyidx + -1]->minor.')';
+ }
+#line 2579 "smarty_internal_templateparser.php"
+#line 620 "smarty_internal_templateparser.y"
+ function yy_r91(){
+ $this->_retvalue = '(1 & '.$this->yystack[$this->yyidx + -1]->minor.')';
+ }
+#line 2584 "smarty_internal_templateparser.php"
+#line 624 "smarty_internal_templateparser.y"
+ function yy_r92(){
+ $this->_retvalue = '!(1 & '.$this->yystack[$this->yyidx + -2]->minor.' / '.$this->yystack[$this->yyidx + 0]->minor.')';
+ }
#line 2589 "smarty_internal_templateparser.php"
-#line 483 "smarty_internal_templateparser.y"
- function yy_r128(){return; }
-#line 2592 "smarty_internal_templateparser.php"
-#line 487 "smarty_internal_templateparser.y"
- function yy_r129(){ $this->_retvalue = '[$_smarty_tpl->getVariable('. $this->yystack[$this->yyidx + 0]->minor .')->value]'; $this->compiler->tag_nocache=$this->compiler->tag_nocache|$this->template->getVariable('$this->yystack[$this->yyidx + 0]->minor', null, true, false)->nocache; }
-#line 2595 "smarty_internal_templateparser.php"
-#line 488 "smarty_internal_templateparser.y"
- function yy_r130(){ $this->_retvalue = '[$_smarty_tpl->getVariable('. $this->yystack[$this->yyidx + -2]->minor .')->'.$this->yystack[$this->yyidx + 0]->minor.']'; $this->compiler->tag_nocache=$this->compiler->tag_nocache|$this->template->getVariable(trim($this->yystack[$this->yyidx + -2]->minor,"'"), null, true, false)->nocache; }
-#line 2598 "smarty_internal_templateparser.php"
-#line 489 "smarty_internal_templateparser.y"
- function yy_r131(){ $this->_retvalue = "['". $this->yystack[$this->yyidx + 0]->minor ."']"; }
+#line 628 "smarty_internal_templateparser.y"
+ function yy_r93(){
+ $this->_retvalue = '(1 & '.$this->yystack[$this->yyidx + -2]->minor.' / '.$this->yystack[$this->yyidx + 0]->minor.')';
+ }
+#line 2594 "smarty_internal_templateparser.php"
+#line 652 "smarty_internal_templateparser.y"
+ function yy_r99(){
+ $this->prefix_number++;
+ $this->compiler->prefix_code[] = '<?php $_tmp'.$this->prefix_number.'='.$this->yystack[$this->yyidx + 0]->minor.';?>';
+ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + -1]->minor.'$_tmp'.$this->prefix_number;
+ }
#line 2601 "smarty_internal_templateparser.php"
-#line 490 "smarty_internal_templateparser.y"
- function yy_r132(){ $this->_retvalue = "[". $this->yystack[$this->yyidx + 0]->minor ."]"; }
-#line 2604 "smarty_internal_templateparser.php"
-#line 491 "smarty_internal_templateparser.y"
- function yy_r133(){ $this->_retvalue = "[". $this->yystack[$this->yyidx + -1]->minor ."]"; }
-#line 2607 "smarty_internal_templateparser.php"
-#line 493 "smarty_internal_templateparser.y"
- function yy_r134(){ $this->_retvalue = '['.$this->compiler->compileTag('private_special_variable',array(),'[\'section\'][\''.$this->yystack[$this->yyidx + -1]->minor.'\'][\'index\']').']'; }
-#line 2610 "smarty_internal_templateparser.php"
-#line 494 "smarty_internal_templateparser.y"
- function yy_r135(){ $this->_retvalue = '['.$this->compiler->compileTag('private_special_variable',array(),'[\'section\'][\''.$this->yystack[$this->yyidx + -3]->minor.'\'][\''.$this->yystack[$this->yyidx + -1]->minor.'\']').']'; }
-#line 2613 "smarty_internal_templateparser.php"
-#line 498 "smarty_internal_templateparser.y"
- function yy_r137(){$this->_retvalue = '[]'; }
+#line 661 "smarty_internal_templateparser.y"
+ function yy_r100(){
+ $this->_retvalue = $this->yystack[$this->yyidx + -6]->minor.' ? '. $this->compileVariable("'".$this->yystack[$this->yyidx + -2]->minor."'") . ' : '.$this->yystack[$this->yyidx + 0]->minor;
+ }
+#line 2606 "smarty_internal_templateparser.php"
+#line 665 "smarty_internal_templateparser.y"
+ function yy_r101(){
+ $this->_retvalue = $this->yystack[$this->yyidx + -5]->minor.' ? '.$this->yystack[$this->yyidx + -2]->minor.' : '.$this->yystack[$this->yyidx + 0]->minor;
+ }
+#line 2611 "smarty_internal_templateparser.php"
+#line 680 "smarty_internal_templateparser.y"
+ function yy_r104(){
+ $this->_retvalue = '!'.$this->yystack[$this->yyidx + 0]->minor;
+ }
#line 2616 "smarty_internal_templateparser.php"
-#line 506 "smarty_internal_templateparser.y"
- function yy_r139(){$this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.'.'.$this->yystack[$this->yyidx + 0]->minor; }
-#line 2619 "smarty_internal_templateparser.php"
-#line 508 "smarty_internal_templateparser.y"
- function yy_r140(){$this->_retvalue = '\''.$this->yystack[$this->yyidx + 0]->minor.'\''; }
-#line 2622 "smarty_internal_templateparser.php"
-#line 510 "smarty_internal_templateparser.y"
- function yy_r141(){$this->_retvalue = '('.$this->yystack[$this->yyidx + -1]->minor.')'; }
-#line 2625 "smarty_internal_templateparser.php"
-#line 515 "smarty_internal_templateparser.y"
- function yy_r142(){ if ($this->yystack[$this->yyidx + -1]->minor['var'] == '\'smarty\'') { $this->_retvalue = $this->compiler->compileTag('private_special_variable',array(),$this->yystack[$this->yyidx + -1]->minor['smarty_internal_index']).$this->yystack[$this->yyidx + 0]->minor;} else {
- $this->_retvalue = '$_smarty_tpl->getVariable('. $this->yystack[$this->yyidx + -1]->minor['var'] .')->value'.$this->yystack[$this->yyidx + -1]->minor['smarty_internal_index'].$this->yystack[$this->yyidx + 0]->minor; $this->compiler->tag_nocache=$this->compiler->tag_nocache|$this->template->getVariable(trim($this->yystack[$this->yyidx + -1]->minor['var'],"'"), null, true, false)->nocache;} }
-#line 2629 "smarty_internal_templateparser.php"
-#line 518 "smarty_internal_templateparser.y"
- function yy_r143(){$this->_retvalue = $this->yystack[$this->yyidx + 0]->minor; }
-#line 2632 "smarty_internal_templateparser.php"
-#line 520 "smarty_internal_templateparser.y"
- function yy_r144(){$this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; }
-#line 2635 "smarty_internal_templateparser.php"
-#line 522 "smarty_internal_templateparser.y"
- function yy_r145(){if ($this->security && substr($this->yystack[$this->yyidx + -1]->minor,0,1) == '_') {
- $this->compiler->trigger_template_error (self::Err1);
- }
- $this->_retvalue = '->'.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor;
- }
-#line 2642 "smarty_internal_templateparser.php"
-#line 527 "smarty_internal_templateparser.y"
- function yy_r146(){if ($this->security) {
- $this->compiler->trigger_template_error (self::Err2);
- }
- $this->_retvalue = '->{$_smarty_tpl->getVariable('. $this->yystack[$this->yyidx + -1]->minor .')->value'.$this->yystack[$this->yyidx + 0]->minor.'}'; $this->compiler->tag_nocache=$this->compiler->tag_nocache|$this->template->getVariable(trim($this->yystack[$this->yyidx + -1]->minor,"'"), null, true, false)->nocache;
- }
+#line 701 "smarty_internal_templateparser.y"
+ function yy_r109(){
+ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.'.'.$this->yystack[$this->yyidx + 0]->minor;
+ }
+#line 2621 "smarty_internal_templateparser.php"
+#line 705 "smarty_internal_templateparser.y"
+ function yy_r110(){
+ $this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.'.';
+ }
+#line 2626 "smarty_internal_templateparser.php"
+#line 709 "smarty_internal_templateparser.y"
+ function yy_r111(){
+ $this->_retvalue = '.'.$this->yystack[$this->yyidx + 0]->minor;
+ }
+#line 2631 "smarty_internal_templateparser.php"
+#line 714 "smarty_internal_templateparser.y"
+ function yy_r112(){
+ if (preg_match('~^true$~i', $this->yystack[$this->yyidx + 0]->minor)) {
+ $this->_retvalue = 'true';
+ } elseif (preg_match('~^false$~i', $this->yystack[$this->yyidx + 0]->minor)) {
+ $this->_retvalue = 'false';
+ } elseif (preg_match('~^null$~i', $this->yystack[$this->yyidx + 0]->minor)) {
+ $this->_retvalue = 'null';
+ } else {
+ $this->_retvalue = "'".$this->yystack[$this->yyidx + 0]->minor."'";
+ }
+ }
+#line 2644 "smarty_internal_templateparser.php"
+#line 732 "smarty_internal_templateparser.y"
+ function yy_r114(){
+ $this->_retvalue = "(". $this->yystack[$this->yyidx + -1]->minor .")";
+ }
#line 2649 "smarty_internal_templateparser.php"
-#line 532 "smarty_internal_templateparser.y"
- function yy_r147(){if ($this->security) {
- $this->compiler->trigger_template_error (self::Err2);
- }
- $this->_retvalue = '->{'.$this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + 0]->minor.'}';
- }
-#line 2656 "smarty_internal_templateparser.php"
-#line 537 "smarty_internal_templateparser.y"
- function yy_r148(){if ($this->security) {
- $this->compiler->trigger_template_error (self::Err2);
- }
- $this->_retvalue = '->{\''.$this->yystack[$this->yyidx + -4]->minor.'\'.'.$this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + 0]->minor.'}';
- }
-#line 2663 "smarty_internal_templateparser.php"
-#line 543 "smarty_internal_templateparser.y"
- function yy_r149(){ $this->_retvalue = '->'.$this->yystack[$this->yyidx + 0]->minor; }
-#line 2666 "smarty_internal_templateparser.php"
-#line 549 "smarty_internal_templateparser.y"
- function yy_r150(){if (!$this->security || $this->smarty->security_policy->isTrustedPhpFunction($this->yystack[$this->yyidx + -3]->minor, $this->compiler)) {
- if (strcasecmp($this->yystack[$this->yyidx + -3]->minor,'isset') === 0 || strcasecmp($this->yystack[$this->yyidx + -3]->minor,'empty') === 0 || strcasecmp($this->yystack[$this->yyidx + -3]->minor,'array') === 0 || is_callable($this->yystack[$this->yyidx + -3]->minor)) {
- $func_name = strtolower($this->yystack[$this->yyidx + -3]->minor);
- if ($func_name == 'isset') {
- if (count($this->yystack[$this->yyidx + -1]->minor) == 0) {
- $this->compiler->trigger_template_error ('Illegal number of paramer in "isset()"');
- }
- $isset_par=str_replace("')->value","',null,true,false)->value",implode(',',$this->yystack[$this->yyidx + -1]->minor));
- $this->_retvalue = $this->yystack[$this->yyidx + -3]->minor . "(". $isset_par .")";
- } elseif (in_array($func_name,array('empty','reset','current','end','prev','next'))){
- if (count($this->yystack[$this->yyidx + -1]->minor) != 1) {
- $this->compiler->trigger_template_error ('Illegal number of paramer in "empty()"');
- }
- if ($func_name == 'empty') {
- $this->_retvalue = $func_name.'('.str_replace("')->value","',null,true,false)->value",$this->yystack[$this->yyidx + -1]->minor[0]).')';
- } else {
- $this->_retvalue = $func_name.'('.$this->yystack[$this->yyidx + -1]->minor[0].')';
- }
- } else {
- $this->_retvalue = $this->yystack[$this->yyidx + -3]->minor . "(". implode(',',$this->yystack[$this->yyidx + -1]->minor) .")";
- }
- } else {
- $this->compiler->trigger_template_error ("unknown function \"" . $this->yystack[$this->yyidx + -3]->minor . "\"");
- }
- }
- }
-#line 2694 "smarty_internal_templateparser.php"
-#line 579 "smarty_internal_templateparser.y"
- function yy_r151(){if ($this->security && substr($this->yystack[$this->yyidx + -3]->minor,0,1) == '_') {
- $this->compiler->trigger_template_error (self::Err1);
- }
- $this->_retvalue = $this->yystack[$this->yyidx + -3]->minor . "(". implode(',',$this->yystack[$this->yyidx + -1]->minor) .")";
- }
+#line 747 "smarty_internal_templateparser.y"
+ function yy_r117(){
+ if (!$this->security || isset($this->smarty->registered_classes[$this->yystack[$this->yyidx + -2]->minor]) || $this->smarty->security_policy->isTrustedStaticClass($this->yystack[$this->yyidx + -2]->minor, $this->compiler)) {
+ if (isset($this->smarty->registered_classes[$this->yystack[$this->yyidx + -2]->minor])) {
+ $this->_retvalue = $this->smarty->registered_classes[$this->yystack[$this->yyidx + -2]->minor].'::'.$this->yystack[$this->yyidx + 0]->minor;
+ } else {
+ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.'::'.$this->yystack[$this->yyidx + 0]->minor;
+ }
+ } else {
+ $this->compiler->trigger_template_error ("static class '".$this->yystack[$this->yyidx + -2]->minor."' is undefined or not allowed by security setting");
+ }
+ }
+#line 2662 "smarty_internal_templateparser.php"
+#line 759 "smarty_internal_templateparser.y"
+ function yy_r118(){
+ if ($this->yystack[$this->yyidx + -2]->minor['var'] == '\'smarty\'') {
+ $this->_retvalue = $this->compiler->compileTag('private_special_variable',array(),$this->yystack[$this->yyidx + -2]->minor['smarty_internal_index']).'::'.$this->yystack[$this->yyidx + 0]->minor;
+ } else {
+ $this->_retvalue = $this->compileVariable($this->yystack[$this->yyidx + -2]->minor['var']).$this->yystack[$this->yyidx + -2]->minor['smarty_internal_index'].'::'.$this->yystack[$this->yyidx + 0]->minor;
+ }
+ }
+#line 2671 "smarty_internal_templateparser.php"
+#line 768 "smarty_internal_templateparser.y"
+ function yy_r119(){
+ $this->prefix_number++;
+ $this->compiler->prefix_code[] = '<?php ob_start();?>'.$this->yystack[$this->yyidx + 0]->minor.'<?php $_tmp'.$this->prefix_number.'=ob_get_clean();?>';
+ $this->_retvalue = '$_tmp'.$this->prefix_number;
+ }
+#line 2678 "smarty_internal_templateparser.php"
+#line 783 "smarty_internal_templateparser.y"
+ function yy_r121(){
+ if ($this->yystack[$this->yyidx + 0]->minor['var'] == '\'smarty\'') {
+ $smarty_var = $this->compiler->compileTag('private_special_variable',array(),$this->yystack[$this->yyidx + 0]->minor['smarty_internal_index']);
+ $this->_retvalue = $smarty_var;
+ } else {
+ // used for array reset,next,prev,end,current
+ $this->last_variable = $this->yystack[$this->yyidx + 0]->minor['var'];
+ $this->last_index = $this->yystack[$this->yyidx + 0]->minor['smarty_internal_index'];
+ $this->_retvalue = $this->compileVariable($this->yystack[$this->yyidx + 0]->minor['var']).$this->yystack[$this->yyidx + 0]->minor['smarty_internal_index'];
+ }
+ }
+#line 2691 "smarty_internal_templateparser.php"
+#line 796 "smarty_internal_templateparser.y"
+ function yy_r122(){
+ $this->_retvalue = '$_smarty_tpl->tpl_vars['. $this->yystack[$this->yyidx + -2]->minor .']->'.$this->yystack[$this->yyidx + 0]->minor;
+ }
+#line 2696 "smarty_internal_templateparser.php"
+#line 806 "smarty_internal_templateparser.y"
+ function yy_r124(){
+ $this->_retvalue = '$_smarty_tpl->getConfigVariable(\''. $this->yystack[$this->yyidx + -1]->minor .'\')';
+ }
#line 2701 "smarty_internal_templateparser.php"
-#line 584 "smarty_internal_templateparser.y"
- function yy_r152(){if ($this->security) {
- $this->compiler->trigger_template_error (self::Err2);
- }
- $this->prefix_number++; $this->compiler->prefix_code[] = '<?php $_tmp'.$this->prefix_number.'=$_smarty_tpl->getVariable(\''. $this->yystack[$this->yyidx + -3]->minor .'\')->value;?>'; $this->_retvalue = '$_tmp'.$this->prefix_number.'('. implode(',',$this->yystack[$this->yyidx + -1]->minor) .')';
- }
-#line 2708 "smarty_internal_templateparser.php"
-#line 592 "smarty_internal_templateparser.y"
- function yy_r153(){ $this->_retvalue = array_merge($this->yystack[$this->yyidx + -2]->minor,array($this->yystack[$this->yyidx + 0]->minor)); }
+#line 810 "smarty_internal_templateparser.y"
+ function yy_r125(){
+ $this->_retvalue = '$_smarty_tpl->getConfigVariable('. $this->yystack[$this->yyidx + -1]->minor .')';
+ }
+#line 2706 "smarty_internal_templateparser.php"
+#line 814 "smarty_internal_templateparser.y"
+ function yy_r126(){
+ $this->_retvalue = array('var'=>$this->yystack[$this->yyidx + -1]->minor, 'smarty_internal_index'=>$this->yystack[$this->yyidx + 0]->minor);
+ }
#line 2711 "smarty_internal_templateparser.php"
-#line 601 "smarty_internal_templateparser.y"
- function yy_r156(){$this->_retvalue = array_merge($this->yystack[$this->yyidx + -2]->minor,array(array_merge($this->yystack[$this->yyidx + -1]->minor,$this->yystack[$this->yyidx + 0]->minor))); }
-#line 2714 "smarty_internal_templateparser.php"
-#line 602 "smarty_internal_templateparser.y"
- function yy_r157(){$this->_retvalue = array(array_merge($this->yystack[$this->yyidx + -1]->minor,$this->yystack[$this->yyidx + 0]->minor)); }
-#line 2717 "smarty_internal_templateparser.php"
-#line 605 "smarty_internal_templateparser.y"
- function yy_r159(){ $this->_retvalue = array($this->yystack[$this->yyidx + 0]->minor); }
-#line 2720 "smarty_internal_templateparser.php"
-#line 610 "smarty_internal_templateparser.y"
- function yy_r160(){ $this->_retvalue = array_merge($this->yystack[$this->yyidx + -1]->minor,$this->yystack[$this->yyidx + 0]->minor); }
-#line 2723 "smarty_internal_templateparser.php"
-#line 612 "smarty_internal_templateparser.y"
- function yy_r161(){$this->_retvalue = array(); }
+#line 827 "smarty_internal_templateparser.y"
+ function yy_r128(){
+ return;
+ }
+#line 2716 "smarty_internal_templateparser.php"
+#line 833 "smarty_internal_templateparser.y"
+ function yy_r129(){
+ $this->_retvalue = '['.$this->compileVariable($this->yystack[$this->yyidx + 0]->minor).']';
+ }
+#line 2721 "smarty_internal_templateparser.php"
+#line 837 "smarty_internal_templateparser.y"
+ function yy_r130(){
+ $this->_retvalue = '['.$this->compileVariable($this->yystack[$this->yyidx + -2]->minor).'->'.$this->yystack[$this->yyidx + 0]->minor.']';
+ }
#line 2726 "smarty_internal_templateparser.php"
-#line 614 "smarty_internal_templateparser.y"
- function yy_r162(){$this->_retvalue = array($this->yystack[$this->yyidx + 0]->minor); }
-#line 2729 "smarty_internal_templateparser.php"
-#line 624 "smarty_internal_templateparser.y"
- function yy_r167(){ $this->_retvalue = '$'.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; }
-#line 2732 "smarty_internal_templateparser.php"
-#line 626 "smarty_internal_templateparser.y"
- function yy_r168(){ $this->_retvalue = '$'.$this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; }
-#line 2735 "smarty_internal_templateparser.php"
-#line 635 "smarty_internal_templateparser.y"
- function yy_r169(){$this->_retvalue = '=='; }
-#line 2738 "smarty_internal_templateparser.php"
-#line 636 "smarty_internal_templateparser.y"
- function yy_r170(){$this->_retvalue = '!='; }
+#line 841 "smarty_internal_templateparser.y"
+ function yy_r131(){
+ $this->_retvalue = "['". $this->yystack[$this->yyidx + 0]->minor ."']";
+ }
+#line 2731 "smarty_internal_templateparser.php"
+#line 845 "smarty_internal_templateparser.y"
+ function yy_r132(){
+ $this->_retvalue = "[". $this->yystack[$this->yyidx + 0]->minor ."]";
+ }
+#line 2736 "smarty_internal_templateparser.php"
+#line 849 "smarty_internal_templateparser.y"
+ function yy_r133(){
+ $this->_retvalue = "[". $this->yystack[$this->yyidx + -1]->minor ."]";
+ }
#line 2741 "smarty_internal_templateparser.php"
-#line 637 "smarty_internal_templateparser.y"
- function yy_r171(){$this->_retvalue = '>'; }
-#line 2744 "smarty_internal_templateparser.php"
-#line 638 "smarty_internal_templateparser.y"
- function yy_r172(){$this->_retvalue = '<'; }
-#line 2747 "smarty_internal_templateparser.php"
-#line 639 "smarty_internal_templateparser.y"
- function yy_r173(){$this->_retvalue = '>='; }
-#line 2750 "smarty_internal_templateparser.php"
-#line 640 "smarty_internal_templateparser.y"
- function yy_r174(){$this->_retvalue = '<='; }
-#line 2753 "smarty_internal_templateparser.php"
-#line 641 "smarty_internal_templateparser.y"
- function yy_r175(){$this->_retvalue = '==='; }
+#line 854 "smarty_internal_templateparser.y"
+ function yy_r134(){
+ $this->_retvalue = '['.$this->compiler->compileTag('private_special_variable',array(),'[\'section\'][\''.$this->yystack[$this->yyidx + -1]->minor.'\'][\'index\']').']';
+ }
+#line 2746 "smarty_internal_templateparser.php"
+#line 858 "smarty_internal_templateparser.y"
+ function yy_r135(){
+ $this->_retvalue = '['.$this->compiler->compileTag('private_special_variable',array(),'[\'section\'][\''.$this->yystack[$this->yyidx + -3]->minor.'\'][\''.$this->yystack[$this->yyidx + -1]->minor.'\']').']';
+ }
+#line 2751 "smarty_internal_templateparser.php"
+#line 868 "smarty_internal_templateparser.y"
+ function yy_r137(){
+ $this->_retvalue = '[]';
+ }
#line 2756 "smarty_internal_templateparser.php"
-#line 642 "smarty_internal_templateparser.y"
- function yy_r176(){$this->_retvalue = '!=='; }
-#line 2759 "smarty_internal_templateparser.php"
-#line 643 "smarty_internal_templateparser.y"
- function yy_r177(){$this->_retvalue = '%'; }
-#line 2762 "smarty_internal_templateparser.php"
-#line 645 "smarty_internal_templateparser.y"
- function yy_r178(){$this->_retvalue = '&&'; }
-#line 2765 "smarty_internal_templateparser.php"
-#line 646 "smarty_internal_templateparser.y"
- function yy_r179(){$this->_retvalue = '||'; }
-#line 2768 "smarty_internal_templateparser.php"
-#line 647 "smarty_internal_templateparser.y"
- function yy_r180(){$this->_retvalue = ' XOR '; }
+#line 881 "smarty_internal_templateparser.y"
+ function yy_r139(){
+ $this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.'.'.$this->yystack[$this->yyidx + 0]->minor;
+ }
+#line 2761 "smarty_internal_templateparser.php"
+#line 886 "smarty_internal_templateparser.y"
+ function yy_r140(){
+ $this->_retvalue = '\''.$this->yystack[$this->yyidx + 0]->minor.'\'';
+ }
+#line 2766 "smarty_internal_templateparser.php"
+#line 891 "smarty_internal_templateparser.y"
+ function yy_r141(){
+ $this->_retvalue = '('.$this->yystack[$this->yyidx + -1]->minor.')';
+ }
#line 2771 "smarty_internal_templateparser.php"
-#line 652 "smarty_internal_templateparser.y"
- function yy_r181(){ $this->_retvalue = 'array('.$this->yystack[$this->yyidx + -1]->minor.')'; }
-#line 2774 "smarty_internal_templateparser.php"
-#line 654 "smarty_internal_templateparser.y"
- function yy_r183(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.','.$this->yystack[$this->yyidx + 0]->minor; }
-#line 2777 "smarty_internal_templateparser.php"
-#line 655 "smarty_internal_templateparser.y"
- function yy_r184(){ return; }
+#line 898 "smarty_internal_templateparser.y"
+ function yy_r142(){
+ if ($this->yystack[$this->yyidx + -1]->minor['var'] == '\'smarty\'') {
+ $this->_retvalue = $this->compiler->compileTag('private_special_variable',array(),$this->yystack[$this->yyidx + -1]->minor['smarty_internal_index']).$this->yystack[$this->yyidx + 0]->minor;
+ } else {
+ $this->_retvalue = $this->compileVariable($this->yystack[$this->yyidx + -1]->minor['var']).$this->yystack[$this->yyidx + -1]->minor['smarty_internal_index'].$this->yystack[$this->yyidx + 0]->minor;
+ }
+ }
#line 2780 "smarty_internal_templateparser.php"
-#line 656 "smarty_internal_templateparser.y"
- function yy_r185(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.'=>'.$this->yystack[$this->yyidx + 0]->minor; }
-#line 2783 "smarty_internal_templateparser.php"
-#line 657 "smarty_internal_templateparser.y"
- function yy_r186(){ $this->_retvalue = '\''.$this->yystack[$this->yyidx + -2]->minor.'\'=>'.$this->yystack[$this->yyidx + 0]->minor; }
-#line 2786 "smarty_internal_templateparser.php"
-#line 664 "smarty_internal_templateparser.y"
- function yy_r188(){ $this->_retvalue = "''"; }
-#line 2789 "smarty_internal_templateparser.php"
-#line 665 "smarty_internal_templateparser.y"
- function yy_r189(){ $this->_retvalue = $this->yystack[$this->yyidx + -1]->minor->to_smarty_php(); }
-#line 2792 "smarty_internal_templateparser.php"
-#line 667 "smarty_internal_templateparser.y"
- function yy_r190(){ $this->yystack[$this->yyidx + -1]->minor->append_subtree($this->yystack[$this->yyidx + 0]->minor); $this->_retvalue = $this->yystack[$this->yyidx + -1]->minor; }
-#line 2795 "smarty_internal_templateparser.php"
-#line 668 "smarty_internal_templateparser.y"
- function yy_r191(){ $this->_retvalue = new _smarty_doublequoted($this, $this->yystack[$this->yyidx + 0]->minor); }
+#line 907 "smarty_internal_templateparser.y"
+ function yy_r143(){
+ $this->_retvalue = $this->yystack[$this->yyidx + 0]->minor;
+ }
+#line 2785 "smarty_internal_templateparser.php"
+#line 912 "smarty_internal_templateparser.y"
+ function yy_r144(){
+ $this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor;
+ }
+#line 2790 "smarty_internal_templateparser.php"
+#line 917 "smarty_internal_templateparser.y"
+ function yy_r145(){
+ if ($this->security && substr($this->yystack[$this->yyidx + -1]->minor,0,1) == '_') {
+ $this->compiler->trigger_template_error (self::Err1);
+ }
+ $this->_retvalue = '->'.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor;
+ }
#line 2798 "smarty_internal_templateparser.php"
-#line 670 "smarty_internal_templateparser.y"
- function yy_r192(){ $this->_retvalue = new _smarty_code($this, $this->yystack[$this->yyidx + -1]->minor); }
-#line 2801 "smarty_internal_templateparser.php"
-#line 672 "smarty_internal_templateparser.y"
- function yy_r194(){if (isset($this->compiler->local_var["'".substr($this->yystack[$this->yyidx + 0]->minor,1)."'"])) {
- $this->_retvalue = new _smarty_code($this, '$_smarty_tpl->tpl_vars[\''. substr($this->yystack[$this->yyidx + 0]->minor,1) .'\']->value');
- } else {
- $this->_retvalue = new _smarty_code($this, '$_smarty_tpl->getVariable(\''. substr($this->yystack[$this->yyidx + 0]->minor,1) .'\')->value');
- }
- $this->compiler->tag_nocache = $this->compiler->tag_nocache | $this->template->getVariable(trim($this->yystack[$this->yyidx + 0]->minor,"'"), null, true, false)->nocache;
- }
-#line 2810 "smarty_internal_templateparser.php"
-#line 680 "smarty_internal_templateparser.y"
- function yy_r196(){ $this->_retvalue = new _smarty_code($this, '('.$this->yystack[$this->yyidx + -1]->minor.')'); }
-#line 2813 "smarty_internal_templateparser.php"
-#line 681 "smarty_internal_templateparser.y"
+#line 924 "smarty_internal_templateparser.y"
+ function yy_r146(){
+ if ($this->security) {
+ $this->compiler->trigger_template_error (self::Err2);
+ }
+ $this->_retvalue = '->{'.$this->compileVariable($this->yystack[$this->yyidx + -1]->minor).$this->yystack[$this->yyidx + 0]->minor.'}';
+ }
+#line 2806 "smarty_internal_templateparser.php"
+#line 931 "smarty_internal_templateparser.y"
+ function yy_r147(){
+ if ($this->security) {
+ $this->compiler->trigger_template_error (self::Err2);
+ }
+ $this->_retvalue = '->{'.$this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + 0]->minor.'}';
+ }
+#line 2814 "smarty_internal_templateparser.php"
+#line 938 "smarty_internal_templateparser.y"
+ function yy_r148(){
+ if ($this->security) {
+ $this->compiler->trigger_template_error (self::Err2);
+ }
+ $this->_retvalue = '->{\''.$this->yystack[$this->yyidx + -4]->minor.'\'.'.$this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + 0]->minor.'}';
+ }
+#line 2822 "smarty_internal_templateparser.php"
+#line 946 "smarty_internal_templateparser.y"
+ function yy_r149(){
+ $this->_retvalue = '->'.$this->yystack[$this->yyidx + 0]->minor;
+ }
+#line 2827 "smarty_internal_templateparser.php"
+#line 954 "smarty_internal_templateparser.y"
+ function yy_r150(){
+ if (!$this->security || $this->smarty->security_policy->isTrustedPhpFunction($this->yystack[$this->yyidx + -3]->minor, $this->compiler)) {
+ if (strcasecmp($this->yystack[$this->yyidx + -3]->minor,'isset') === 0 || strcasecmp($this->yystack[$this->yyidx + -3]->minor,'empty') === 0 || strcasecmp($this->yystack[$this->yyidx + -3]->minor,'array') === 0 || is_callable($this->yystack[$this->yyidx + -3]->minor)) {
+ $func_name = strtolower($this->yystack[$this->yyidx + -3]->minor);
+ if ($func_name == 'isset') {
+ if (count($this->yystack[$this->yyidx + -1]->minor) == 0) {
+ $this->compiler->trigger_template_error ('Illegal number of paramer in "isset()"');
+ }
+ $par = implode(',',$this->yystack[$this->yyidx + -1]->minor);
+ if (strncasecmp($par,'$_smarty_tpl->getConfigVariable',strlen('$_smarty_tpl->getConfigVariable')) === 0) {
+ $this->prefix_number++;
+ $this->compiler->prefix_code[] = '<?php $_tmp'.$this->prefix_number.'='.str_replace(')',', false)',$par).';?>';
+ $isset_par = '$_tmp'.$this->prefix_number;
+ } else {
+ $isset_par=str_replace("')->value","',null,true,false)->value",$par);
+ }
+ $this->_retvalue = $this->yystack[$this->yyidx + -3]->minor . "(". $isset_par .")";
+ } elseif (in_array($func_name,array('empty','reset','current','end','prev','next'))){
+ if (count($this->yystack[$this->yyidx + -1]->minor) != 1) {
+ $this->compiler->trigger_template_error ('Illegal number of paramer in "empty()"');
+ }
+ if ($func_name == 'empty') {
+ $this->_retvalue = $func_name.'('.str_replace("')->value","',null,true,false)->value",$this->yystack[$this->yyidx + -1]->minor[0]).')';
+ } else {
+ $this->_retvalue = $func_name.'('.$this->yystack[$this->yyidx + -1]->minor[0].')';
+ }
+ } else {
+ $this->_retvalue = $this->yystack[$this->yyidx + -3]->minor . "(". implode(',',$this->yystack[$this->yyidx + -1]->minor) .")";
+ }
+ } else {
+ $this->compiler->trigger_template_error ("unknown function \"" . $this->yystack[$this->yyidx + -3]->minor . "\"");
+ }
+ }
+ }
+#line 2863 "smarty_internal_templateparser.php"
+#line 992 "smarty_internal_templateparser.y"
+ function yy_r151(){
+ if ($this->security && substr($this->yystack[$this->yyidx + -3]->minor,0,1) == '_') {
+ $this->compiler->trigger_template_error (self::Err1);
+ }
+ $this->_retvalue = $this->yystack[$this->yyidx + -3]->minor . "(". implode(',',$this->yystack[$this->yyidx + -1]->minor) .")";
+ }
+#line 2871 "smarty_internal_templateparser.php"
+#line 999 "smarty_internal_templateparser.y"
+ function yy_r152(){
+ if ($this->security) {
+ $this->compiler->trigger_template_error (self::Err2);
+ }
+ $this->prefix_number++;
+ $this->compiler->prefix_code[] = '<?php $_tmp'.$this->prefix_number.'='.$this->compileVariable("'".$this->yystack[$this->yyidx + -3]->minor."'").';?>';
+ $this->_retvalue = '$_tmp'.$this->prefix_number.'('. implode(',',$this->yystack[$this->yyidx + -1]->minor) .')';
+ }
+#line 2881 "smarty_internal_templateparser.php"
+#line 1010 "smarty_internal_templateparser.y"
+ function yy_r153(){
+ $this->_retvalue = array_merge($this->yystack[$this->yyidx + -2]->minor,array($this->yystack[$this->yyidx + 0]->minor));
+ }
+#line 2886 "smarty_internal_templateparser.php"
+#line 1027 "smarty_internal_templateparser.y"
+ function yy_r156(){
+ $this->_retvalue = array_merge($this->yystack[$this->yyidx + -2]->minor,array(array_merge($this->yystack[$this->yyidx + -1]->minor,$this->yystack[$this->yyidx + 0]->minor)));
+ }
+#line 2891 "smarty_internal_templateparser.php"
+#line 1031 "smarty_internal_templateparser.y"
+ function yy_r157(){
+ $this->_retvalue = array(array_merge($this->yystack[$this->yyidx + -1]->minor,$this->yystack[$this->yyidx + 0]->minor));
+ }
+#line 2896 "smarty_internal_templateparser.php"
+#line 1039 "smarty_internal_templateparser.y"
+ function yy_r159(){
+ $this->_retvalue = array($this->yystack[$this->yyidx + 0]->minor);
+ }
+#line 2901 "smarty_internal_templateparser.php"
+#line 1047 "smarty_internal_templateparser.y"
+ function yy_r160(){
+ $this->_retvalue = array_merge($this->yystack[$this->yyidx + -1]->minor,$this->yystack[$this->yyidx + 0]->minor);
+ }
+#line 2906 "smarty_internal_templateparser.php"
+#line 1081 "smarty_internal_templateparser.y"
+ function yy_r167(){
+ $this->_retvalue = '$'.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor;
+ }
+#line 2911 "smarty_internal_templateparser.php"
+#line 1086 "smarty_internal_templateparser.y"
+ function yy_r168(){
+ $this->_retvalue = '$'.$this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor;
+ }
+#line 2916 "smarty_internal_templateparser.php"
+#line 1092 "smarty_internal_templateparser.y"
+ function yy_r169(){
+ $this->_retvalue = '==';
+ }
+#line 2921 "smarty_internal_templateparser.php"
+#line 1096 "smarty_internal_templateparser.y"
+ function yy_r170(){
+ $this->_retvalue = '!=';
+ }
+#line 2926 "smarty_internal_templateparser.php"
+#line 1100 "smarty_internal_templateparser.y"
+ function yy_r171(){
+ $this->_retvalue = '>';
+ }
+#line 2931 "smarty_internal_templateparser.php"
+#line 1104 "smarty_internal_templateparser.y"
+ function yy_r172(){
+ $this->_retvalue = '<';
+ }
+#line 2936 "smarty_internal_templateparser.php"
+#line 1108 "smarty_internal_templateparser.y"
+ function yy_r173(){
+ $this->_retvalue = '>=';
+ }
+#line 2941 "smarty_internal_templateparser.php"
+#line 1112 "smarty_internal_templateparser.y"
+ function yy_r174(){
+ $this->_retvalue = '<=';
+ }
+#line 2946 "smarty_internal_templateparser.php"
+#line 1116 "smarty_internal_templateparser.y"
+ function yy_r175(){
+ $this->_retvalue = '===';
+ }
+#line 2951 "smarty_internal_templateparser.php"
+#line 1120 "smarty_internal_templateparser.y"
+ function yy_r176(){
+ $this->_retvalue = '!==';
+ }
+#line 2956 "smarty_internal_templateparser.php"
+#line 1124 "smarty_internal_templateparser.y"
+ function yy_r177(){
+ $this->_retvalue = '%';
+ }
+#line 2961 "smarty_internal_templateparser.php"
+#line 1128 "smarty_internal_templateparser.y"
+ function yy_r178(){
+ $this->_retvalue = '&&';
+ }
+#line 2966 "smarty_internal_templateparser.php"
+#line 1132 "smarty_internal_templateparser.y"
+ function yy_r179(){
+ $this->_retvalue = '||';
+ }
+#line 2971 "smarty_internal_templateparser.php"
+#line 1136 "smarty_internal_templateparser.y"
+ function yy_r180(){
+ $this->_retvalue = ' XOR ';
+ }
+#line 2976 "smarty_internal_templateparser.php"
+#line 1143 "smarty_internal_templateparser.y"
+ function yy_r181(){
+ $this->_retvalue = 'array('.$this->yystack[$this->yyidx + -1]->minor.')';
+ }
+#line 2981 "smarty_internal_templateparser.php"
+#line 1151 "smarty_internal_templateparser.y"
+ function yy_r183(){
+ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.','.$this->yystack[$this->yyidx + 0]->minor;
+ }
+#line 2986 "smarty_internal_templateparser.php"
+#line 1159 "smarty_internal_templateparser.y"
+ function yy_r185(){
+ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.'=>'.$this->yystack[$this->yyidx + 0]->minor;
+ }
+#line 2991 "smarty_internal_templateparser.php"
+#line 1163 "smarty_internal_templateparser.y"
+ function yy_r186(){
+ $this->_retvalue = '\''.$this->yystack[$this->yyidx + -2]->minor.'\'=>'.$this->yystack[$this->yyidx + 0]->minor;
+ }
+#line 2996 "smarty_internal_templateparser.php"
+#line 1175 "smarty_internal_templateparser.y"
+ function yy_r188(){
+ $this->_retvalue = "''";
+ }
+#line 3001 "smarty_internal_templateparser.php"
+#line 1179 "smarty_internal_templateparser.y"
+ function yy_r189(){
+ $this->_retvalue = $this->yystack[$this->yyidx + -1]->minor->to_smarty_php();
+ }
+#line 3006 "smarty_internal_templateparser.php"
+#line 1184 "smarty_internal_templateparser.y"
+ function yy_r190(){
+ $this->yystack[$this->yyidx + -1]->minor->append_subtree($this->yystack[$this->yyidx + 0]->minor);
+ $this->_retvalue = $this->yystack[$this->yyidx + -1]->minor;
+ }
+#line 3012 "smarty_internal_templateparser.php"
+#line 1189 "smarty_internal_templateparser.y"
+ function yy_r191(){
+ $this->_retvalue = new _smarty_doublequoted($this, $this->yystack[$this->yyidx + 0]->minor);
+ }
+#line 3017 "smarty_internal_templateparser.php"
+#line 1193 "smarty_internal_templateparser.y"
+ function yy_r192(){
+ $this->_retvalue = new _smarty_code($this, $this->yystack[$this->yyidx + -1]->minor);
+ }
+#line 3022 "smarty_internal_templateparser.php"
+#line 1201 "smarty_internal_templateparser.y"
+ function yy_r194(){
+ $this->_retvalue = new _smarty_code($this, '$_smarty_tpl->tpl_vars[\''. substr($this->yystack[$this->yyidx + 0]->minor,1) .'\']->value');
+ }
+#line 3027 "smarty_internal_templateparser.php"
+#line 1209 "smarty_internal_templateparser.y"
+ function yy_r196(){
+ $this->_retvalue = new _smarty_code($this, '('.$this->yystack[$this->yyidx + -1]->minor.')');
+ }
+#line 3032 "smarty_internal_templateparser.php"
+#line 1213 "smarty_internal_templateparser.y"
function yy_r197(){
- $this->_retvalue = new _smarty_tag($this, $this->yystack[$this->yyidx + 0]->minor);
- }
-#line 2818 "smarty_internal_templateparser.php"
-#line 684 "smarty_internal_templateparser.y"
- function yy_r198(){ $this->_retvalue = new _smarty_dq_content($this, $this->yystack[$this->yyidx + 0]->minor); }
-#line 2821 "smarty_internal_templateparser.php"
-#line 691 "smarty_internal_templateparser.y"
- function yy_r200(){$this->_retvalue = ''; }
-#line 2824 "smarty_internal_templateparser.php"
+ $this->_retvalue = new _smarty_tag($this, $this->yystack[$this->yyidx + 0]->minor);
+ }
+#line 3037 "smarty_internal_templateparser.php"
+#line 1217 "smarty_internal_templateparser.y"
+ function yy_r198(){
+ $this->_retvalue = new _smarty_dq_content($this, $this->yystack[$this->yyidx + 0]->minor);
+ }
+#line 3042 "smarty_internal_templateparser.php"
private $_retvalue;
function yy_syntax_error($yymajor, $TOKEN)
{
-#line 66 "smarty_internal_templateparser.y"
+#line 76 "smarty_internal_templateparser.y"
$this->internalError = true;
$this->yymajor = $yymajor;
$this->compiler->trigger_template_error();
-#line 2887 "smarty_internal_templateparser.php"
+#line 3105 "smarty_internal_templateparser.php"
}
function yy_accept()
while ($this->yyidx >= 0) {
$stack = $this->yy_pop_parser_stack();
}
-#line 58 "smarty_internal_templateparser.y"
+#line 68 "smarty_internal_templateparser.y"
$this->successful = !$this->internalError;
$this->internalError = false;
$this->retvalue = $this->_retvalue;
//echo $this->retvalue."\n\n";
-#line 2905 "smarty_internal_templateparser.php"
+#line 3123 "smarty_internal_templateparser.php"
}
function doParse($yymajor, $yytokenvalue)
diff --git a/gosa-core/include/smarty/sysplugins/smarty_internal_utility.php b/gosa-core/include/smarty/sysplugins/smarty_internal_utility.php
index 7ce33a67f0a4fa97f0f6f68a50a26e900c68c446..2c184cd3526561dbd9a06b9e38ac6fe8bc17e6e6 100644 (file)
<?php
-
/**
* Project: Smarty: the PHP compiling template engine
* File: smarty_internal_utility.php
* SVN: $Id: $
- *
+ *
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
- *
+ *
* This library 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
* Lesser General Public License for more details.
- *
+ *
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- *
+ *
* For questions, help, comments, discussion, etc., please join the
* Smarty mailing list. Send a blank e-mail to
* smarty-discussion-subscribe@googlegroups.com
- *
+ *
* @link http://www.smarty.net/
* @copyright 2008 New Digital Group, Inc.
- * @author Monte Ohrt <monte at ohrt dot com>
- * @author Uwe Tews
+ * @author Monte Ohrt <monte at ohrt dot com>
+ * @author Uwe Tews
* @package Smarty
* @subpackage PluginsInternal
* @version 3-SVN$Rev: 3286 $
*/
+
+/**
+ * Utility class
+ *
+ * @package Smarty
+ * @subpackage Security
+ */
class Smarty_Internal_Utility {
- protected $smarty;
- function __construct($smarty)
+ /**
+ * private constructor to prevent calls creation of new instances
+ */
+ private final function __construct()
{
- $this->smarty = $smarty;
- }
+ // intentionally left blank
+ }
/**
* Compile all template files
- *
- * @param string $extension file extension
- * @param bool $force_compile force all to recompile
- * @param int $time_limit
- * @param int $max_errors
- * @return integer number of template files recompiled
+ *
+ * @param string $extension template file name extension
+ * @param bool $force_compile force all to recompile
+ * @param int $time_limit set maximum execution time
+ * @param int $max_errors set maximum allowed errors
+ * @param Smarty $smarty Smarty instance
+ * @return integer number of template files compiled
*/
- function compileAllTemplates($extention = '.tpl', $force_compile = false, $time_limit = 0, $max_errors = null)
- {
+ public static function compileAllTemplates($extention, $force_compile, $time_limit, $max_errors, Smarty $smarty)
+ {
// switch off time limit
if (function_exists('set_time_limit')) {
@set_time_limit($time_limit);
- }
- $this->smarty->force_compile = $force_compile;
+ }
+ $smarty->force_compile = $force_compile;
$_count = 0;
- $_error_count = 0;
+ $_error_count = 0;
// loop over array of template directories
- foreach((array)$this->smarty->template_dir as $_dir) {
- if (strpos('/\\', substr($_dir, -1)) === false) {
- $_dir .= DS;
- }
+ foreach($smarty->getTemplateDir() as $_dir) {
$_compileDirs = new RecursiveDirectoryIterator($_dir);
$_compile = new RecursiveIteratorIterator($_compileDirs);
foreach ($_compile as $_fileinfo) {
- if (substr($_fileinfo->getBasename(),0,1) == '.') continue;
+ if (substr($_fileinfo->getBasename(),0,1) == '.' || strpos($_fileinfo, '.svn') !== false) continue;
$_file = $_fileinfo->getFilename();
if (!substr_compare($_file, $extention, - strlen($extention)) == 0) continue;
if ($_fileinfo->getPath() == substr($_dir, 0, -1)) {
flush();
$_start_time = microtime(true);
try {
- $_tpl = $this->smarty->createTemplate($_template_file,null,null,null,false);
+ $_tpl = $smarty->createTemplate($_template_file,null,null,null,false);
if ($_tpl->mustCompile()) {
$_tpl->compileTemplateSource();
echo ' compiled in ', microtime(true) - $_start_time, ' seconds';
catch (Exception $e) {
echo 'Error: ', $e->getMessage(), "<br><br>";
$_error_count++;
- }
- // free memory
- $this->smarty->template_objects = array();
+ }
+ // free memory
+ $smarty->template_objects = array();
$_tpl->smarty->template_objects = array();
$_tpl = null;
if ($max_errors !== null && $_error_count == $max_errors) {
echo '<br><br>too many errors';
exit();
- }
- }
- }
+ }
+ }
+ }
return $_count;
- }
+ }
/**
* Compile all config files
- *
- * @param string $extension file extension
- * @param bool $force_compile force all to recompile
- * @param int $time_limit
- * @param int $max_errors
- * @return integer number of template files recompiled
+ *
+ * @param string $extension config file name extension
+ * @param bool $force_compile force all to recompile
+ * @param int $time_limit set maximum execution time
+ * @param int $max_errors set maximum allowed errors
+ * @param Smarty $smarty Smarty instance
+ * @return integer number of config files compiled
*/
- function compileAllConfig($extention = '.conf', $force_compile = false, $time_limit = 0, $max_errors = null)
- {
+ public static function compileAllConfig($extention, $force_compile, $time_limit, $max_errors, Smarty $smarty)
+ {
// switch off time limit
if (function_exists('set_time_limit')) {
@set_time_limit($time_limit);
- }
- $this->smarty->force_compile = $force_compile;
+ }
+ $smarty->force_compile = $force_compile;
$_count = 0;
- $_error_count = 0;
+ $_error_count = 0;
// loop over array of template directories
- foreach((array)$this->smarty->config_dir as $_dir) {
- if (strpos('/\\', substr($_dir, -1)) === false) {
- $_dir .= DS;
- }
+ foreach($smarty->getConfigDir() as $_dir) {
$_compileDirs = new RecursiveDirectoryIterator($_dir);
$_compile = new RecursiveIteratorIterator($_compileDirs);
foreach ($_compile as $_fileinfo) {
- if (substr($_fileinfo->getBasename(),0,1) == '.') continue;
+ if (substr($_fileinfo->getBasename(),0,1) == '.' || strpos($_fileinfo, '.svn') !== false) continue;
$_file = $_fileinfo->getFilename();
if (!substr_compare($_file, $extention, - strlen($extention)) == 0) continue;
if ($_fileinfo->getPath() == substr($_dir, 0, -1)) {
$_config_file = $_file;
} else {
$_config_file = substr($_fileinfo->getPath(), strlen($_dir)) . DS . $_file;
- }
+ }
echo '<br>', $_dir, '---', $_config_file;
flush();
$_start_time = microtime(true);
try {
- $_config = new Smarty_Internal_Config($_config_file, $this->smarty);
+ $_config = new Smarty_Internal_Config($_config_file, $smarty);
if ($_config->mustCompile()) {
$_config->compileConfigSource();
echo ' compiled in ', microtime(true) - $_start_time, ' seconds';
} else {
echo ' is up to date';
flush();
- }
- }
+ }
+ }
catch (Exception $e) {
echo 'Error: ', $e->getMessage(), "<br><br>";
$_error_count++;
- }
+ }
if ($max_errors !== null && $_error_count == $max_errors) {
echo '<br><br>too many errors';
exit();
- }
- }
- }
+ }
+ }
+ }
return $_count;
- }
+ }
/**
* Delete compiled template file
- *
- * @param string $resource_name template name
- * @param string $compile_id compile id
- * @param integer $exp_time expiration time
+ *
+ * @param string $resource_name template name
+ * @param string $compile_id compile id
+ * @param integer $exp_time expiration time
+ * @param Smarty $smarty Smarty instance
* @return integer number of template files deleted
*/
- function clearCompiledTemplate($resource_name = null, $compile_id = null, $exp_time = null)
+ public static function clearCompiledTemplate($resource_name, $compile_id, $exp_time, Smarty $smarty)
{
+ $_compile_dir = $smarty->getCompileDir();
$_compile_id = isset($compile_id) ? preg_replace('![^\w\|]+!', '_', $compile_id) : null;
- $_dir_sep = $this->smarty->use_sub_dirs ? DS : '^';
+ $_dir_sep = $smarty->use_sub_dirs ? DS : '^';
if (isset($resource_name)) {
- $_resource_part_1 = $resource_name . '.php';
- $_resource_part_2 = $resource_name . '.cache' . '.php';
+ $_save_stat = $smarty->caching;
+ $smarty->caching = false;
+ $tpl = new $smarty->template_class($resource_name, $smarty);
+ $smarty->caching = $_save_stat;
+
+ // remove from template cache
+ $tpl->source; // have the template registered before unset()
+ $_templateId = sha1($tpl->source->unique_resource . $tpl->cache_id . $tpl->compile_id);
+ unset($smarty->template_objects[$_templateId]);
+
+ if ($tpl->source->exists) {
+ $_resource_part_1 = basename(str_replace('^', '/', $tpl->compiled->filepath));
+ $_resource_part_1_length = strlen($_resource_part_1);
+ } else {
+ return 0;
+ }
+
+ $_resource_part_2 = str_replace('.php','.cache.php',$_resource_part_1);
+ $_resource_part_2_length = strlen($_resource_part_2);
} else {
$_resource_part = '';
- }
- $_dir = $this->smarty->compile_dir;
- if ($this->smarty->use_sub_dirs && isset($_compile_id)) {
+ }
+ $_dir = $_compile_dir;
+ if ($smarty->use_sub_dirs && isset($_compile_id)) {
$_dir .= $_compile_id . $_dir_sep;
- }
+ }
if (isset($_compile_id)) {
- $_compile_id_part = $this->smarty->compile_dir . $_compile_id . $_dir_sep;
- }
+ $_compile_id_part = $_compile_dir . $_compile_id . $_dir_sep;
+ $_compile_id_part_length = strlen($_compile_id_part);
+ }
$_count = 0;
$_compileDirs = new RecursiveDirectoryIterator($_dir);
$_compile = new RecursiveIteratorIterator($_compileDirs, RecursiveIteratorIterator::CHILD_FIRST);
foreach ($_compile as $_file) {
- if (substr($_file->getBasename(),0,1) == '.') continue;
+ if (substr($_file->getBasename(), 0, 1) == '.' || strpos($_file, '.svn') !== false)
+ continue;
+
+ $_filepath = (string) $_file;
+
if ($_file->isDir()) {
if (!$_compile->isDot()) {
// delete folder if empty
@rmdir($_file->getPathname());
- }
+ }
} else {
- if ((!isset($_compile_id) || (strlen((string)$_file) > strlen($_compile_id_part) && substr_compare((string)$_file, $_compile_id_part, 0, strlen($_compile_id_part)) == 0)) &&
- (!isset($resource_name) || (strlen((string)$_file) > strlen($_resource_part_1) && substr_compare((string)$_file, $_resource_part_1, - strlen($_resource_part_1), strlen($_resource_part_1)) == 0) ||
- (strlen((string)$_file) > strlen($_resource_part_2) && substr_compare((string)$_file, $_resource_part_2, - strlen($_resource_part_2), strlen($_resource_part_2)) == 0))) {
+ $unlink = false;
+ if ((!isset($_compile_id) || (isset($_filepath[$_compile_id_part_length]) && !strncmp($_filepath, $_compile_id_part, $_compile_id_part_length)))
+ && (!isset($resource_name)
+ || (isset($_filepath[$_resource_part_1_length])
+ && substr_compare($_filepath, $_resource_part_1, -$_resource_part_1_length, $_resource_part_1_length) == 0)
+ || (isset($_filepath[$_resource_part_2_length])
+ && substr_compare($_filepath, $_resource_part_2, -$_resource_part_2_length, $_resource_part_2_length) == 0))) {
if (isset($exp_time)) {
- if (time() - @filemtime($_file) >= $exp_time) {
- $_count += @unlink((string) $_file) ? 1 : 0;
- }
+ if (time() - @filemtime($_filepath) >= $exp_time) {
+ $unlink = true;
+ }
} else {
- $_count += @unlink((string) $_file) ? 1 : 0;
- }
- }
- }
- }
+ $unlink = true;
+ }
+ }
+
+ if ($unlink && @unlink($_filepath)) {
+ $_count++;
+ }
+ }
+ }
+ // clear compiled cache
+ Smarty_Resource::$sources = array();
+ Smarty_Resource::$compileds = array();
return $_count;
- }
+ }
/**
* Return array of tag/attributes of all tags used by an template
- *
- * @param object $templae template object
+ *
+ * @param Smarty_Internal_Template $templae template object
* @return array of tag/attributes
*/
- function getTags(Smarty_Internal_Template $template)
- {
- $template->smarty->get_used_tags = true;
- $template->compileTemplateSource();
- return $template->compiler_object->used_tags;
- }
-
- function testInstall()
+ public static function getTags(Smarty_Internal_Template $template)
{
- echo "<PRE>\n";
-
- echo "Smarty Installation test...\n";
-
- echo "Testing template directory...\n";
-
- foreach((array)$this->smarty->template_dir as $template_dir) {
- if (!is_dir($template_dir))
- echo "FAILED: $template_dir is not a directory.\n";
- elseif (!is_readable($template_dir))
- echo "FAILED: $template_dir is not readable.\n";
- else
- echo "$template_dir is OK.\n";
- }
-
- echo "Testing compile directory...\n";
-
- if (!is_dir($this->smarty->compile_dir))
- echo "FAILED: {$this->smarty->compile_dir} is not a directory.\n";
- elseif (!is_readable($this->smarty->compile_dir))
- echo "FAILED: {$this->smarty->compile_dir} is not readable.\n";
- elseif (!is_writable($this->smarty->compile_dir))
- echo "FAILED: {$this->smarty->compile_dir} is not writable.\n";
- else
- echo "{$this->smarty->compile_dir} is OK.\n";
-
- echo "Testing plugins directory...\n";
-
- foreach((array)$this->smarty->plugins_dir as $plugin_dir) {
- if (!is_dir($plugin_dir))
- echo "FAILED: $plugin_dir is not a directory.\n";
- elseif (!is_readable($plugin_dir))
- echo "FAILED: $plugin_dir is not readable.\n";
- else
- echo "$plugin_dir is OK.\n";
- }
-
- echo "Testing cache directory...\n";
-
- if (!is_dir($this->smarty->cache_dir))
- echo "FAILED: {$this->smarty->cache_dir} is not a directory.\n";
- elseif (!is_readable($this->smarty->cache_dir))
- echo "FAILED: {$this->smarty->cache_dir} is not readable.\n";
- elseif (!is_writable($this->smarty->cache_dir))
- echo "FAILED: {$this->smarty->cache_dir} is not writable.\n";
- else
- echo "{$this->smarty->cache_dir} is OK.\n";
-
- echo "Testing configs directory...\n";
-
- if (!is_dir($this->smarty->config_dir))
- echo "FAILED: {$this->smarty->config_dir} is not a directory.\n";
- elseif (!is_readable($this->smarty->config_dir))
- echo "FAILED: {$this->smarty->config_dir} is not readable.\n";
- else
- echo "{$this->smarty->config_dir} is OK.\n";
-
- echo "Tests complete.\n";
-
- echo "</PRE>\n";
-
- return true;
- }
+ $template->smarty->get_used_tags = true;
+ $template->compileTemplateSource();
+ return $template->used_tags;
+ }
+
+
+ /**
+ * diagnose Smarty setup
+ *
+ * If $errors is secified, the diagnostic report will be appended to the array, rather than being output.
+ *
+ * @param Smarty $smarty Smarty instance to test
+ * @param array $errors array to push results into rather than outputting them
+ * @return bool status, true if everything is fine, false else
+ */
+ public static function testInstall(Smarty $smarty, &$errors=null)
+ {
+ $status = true;
+
+ if ($errors === null) {
+ echo "<PRE>\n";
+ echo "Smarty Installation test...\n";
+ echo "Testing template directory...\n";
+ }
+
+ // test if all registered template_dir are accessible
+ foreach($smarty->getTemplateDir() as $template_dir) {
+ $_template_dir = $template_dir;
+ $template_dir = realpath($template_dir);
+ // resolve include_path or fail existance
+ if (!$template_dir) {
+ if ($smarty->use_include_path && !preg_match('/^([\/\\\\]|[a-zA-Z]:[\/\\\\])/', $_template_dir)) {
+ // try PHP include_path
+ if (($template_dir = Smarty_Internal_Get_Include_Path::getIncludePath($_template_dir)) !== false) {
+ if ($errors === null) {
+ echo "$template_dir is OK.\n";
+ }
+
+ continue;
+ } else {
+ $status = false;
+ $message = "FAILED: $_template_dir does not exist (and couldn't be found in include_path either)";
+ if ($errors === null) {
+ echo $message . ".\n";
+ } else {
+ $errors['template_dir'] = $message;
+ }
+
+ continue;
+ }
+ } else {
+ $status = false;
+ $message = "FAILED: $_template_dir does not exist";
+ if ($errors === null) {
+ echo $message . ".\n";
+ } else {
+ $errors['template_dir'] = $message;
+ }
+
+ continue;
+ }
+ }
+
+ if (!is_dir($template_dir)) {
+ $status = false;
+ $message = "FAILED: $template_dir is not a directory";
+ if ($errors === null) {
+ echo $message . ".\n";
+ } else {
+ $errors['template_dir'] = $message;
+ }
+ } elseif (!is_readable($template_dir)) {
+ $status = false;
+ $message = "FAILED: $template_dir is not readable";
+ if ($errors === null) {
+ echo $message . ".\n";
+ } else {
+ $errors['template_dir'] = $message;
+ }
+ } else {
+ if ($errors === null) {
+ echo "$template_dir is OK.\n";
+ }
+ }
+ }
+
+
+ if ($errors === null) {
+ echo "Testing compile directory...\n";
+ }
+
+ // test if registered compile_dir is accessible
+ $__compile_dir = $smarty->getCompileDir();
+ $_compile_dir = realpath($__compile_dir);
+ if (!$_compile_dir) {
+ $status = false;
+ $message = "FAILED: {$__compile_dir} does not exist";
+ if ($errors === null) {
+ echo $message . ".\n";
+ } else {
+ $errors['compile_dir'] = $message;
+ }
+ } elseif (!is_dir($_compile_dir)) {
+ $status = false;
+ $message = "FAILED: {$_compile_dir} is not a directory";
+ if ($errors === null) {
+ echo $message . ".\n";
+ } else {
+ $errors['compile_dir'] = $message;
+ }
+ } elseif (!is_readable($_compile_dir)) {
+ $status = false;
+ $message = "FAILED: {$_compile_dir} is not readable";
+ if ($errors === null) {
+ echo $message . ".\n";
+ } else {
+ $errors['compile_dir'] = $message;
+ }
+ } elseif (!is_writable($_compile_dir)) {
+ $status = false;
+ $message = "FAILED: {$_compile_dir} is not writable";
+ if ($errors === null) {
+ echo $message . ".\n";
+ } else {
+ $errors['compile_dir'] = $message;
+ }
+ } else {
+ if ($errors === null) {
+ echo "{$_compile_dir} is OK.\n";
+ }
+ }
+
+
+ if ($errors === null) {
+ echo "Testing plugins directory...\n";
+ }
+
+ // test if all registered plugins_dir are accessible
+ // and if core plugins directory is still registered
+ $_core_plugins_dir = realpath(dirname(__FILE__) .'/../plugins');
+ $_core_plugins_available = false;
+ foreach($smarty->getPluginsDir() as $plugin_dir) {
+ $_plugin_dir = $plugin_dir;
+ $plugin_dir = realpath($plugin_dir);
+ // resolve include_path or fail existance
+ if (!$plugin_dir) {
+ if ($smarty->use_include_path && !preg_match('/^([\/\\\\]|[a-zA-Z]:[\/\\\\])/', $_plugin_dir)) {
+ // try PHP include_path
+ if (($plugin_dir = Smarty_Internal_Get_Include_Path::getIncludePath($_plugin_dir)) !== false) {
+ if ($errors === null) {
+ echo "$plugin_dir is OK.\n";
+ }
+
+ continue;
+ } else {
+ $status = false;
+ $message = "FAILED: $_plugin_dir does not exist (and couldn't be found in include_path either)";
+ if ($errors === null) {
+ echo $message . ".\n";
+ } else {
+ $errors['plugins_dir'] = $message;
+ }
+
+ continue;
+ }
+ } else {
+ $status = false;
+ $message = "FAILED: $_plugin_dir does not exist";
+ if ($errors === null) {
+ echo $message . ".\n";
+ } else {
+ $errors['plugins_dir'] = $message;
+ }
+
+ continue;
+ }
+ }
+
+ if (!is_dir($plugin_dir)) {
+ $status = false;
+ $message = "FAILED: $plugin_dir is not a directory";
+ if ($errors === null) {
+ echo $message . ".\n";
+ } else {
+ $errors['plugins_dir'] = $message;
+ }
+ } elseif (!is_readable($plugin_dir)) {
+ $status = false;
+ $message = "FAILED: $plugin_dir is not readable";
+ if ($errors === null) {
+ echo $message . ".\n";
+ } else {
+ $errors['plugins_dir'] = $message;
+ }
+ } elseif ($_core_plugins_dir && $_core_plugins_dir == realpath($plugin_dir)) {
+ $_core_plugins_available = true;
+ if ($errors === null) {
+ echo "$plugin_dir is OK.\n";
+ }
+ } else {
+ if ($errors === null) {
+ echo "$plugin_dir is OK.\n";
+ }
+ }
+ }
+ if (!$_core_plugins_available) {
+ $status = false;
+ $message = "WARNING: Smarty's own libs/plugins is not available";
+ if ($errors === null) {
+ echo $message . ".\n";
+ } elseif (!isset($errors['plugins_dir'])) {
+ $errors['plugins_dir'] = $message;
+ }
+ }
+
+ if ($errors === null) {
+ echo "Testing cache directory...\n";
+ }
+
+
+ // test if all registered cache_dir is accessible
+ $__cache_dir = $smarty->getCacheDir();
+ $_cache_dir = realpath($__cache_dir);
+ if (!$_cache_dir) {
+ $status = false;
+ $message = "FAILED: {$__cache_dir} does not exist";
+ if ($errors === null) {
+ echo $message . ".\n";
+ } else {
+ $errors['cache_dir'] = $message;
+ }
+ } elseif (!is_dir($_cache_dir)) {
+ $status = false;
+ $message = "FAILED: {$_cache_dir} is not a directory";
+ if ($errors === null) {
+ echo $message . ".\n";
+ } else {
+ $errors['cache_dir'] = $message;
+ }
+ } elseif (!is_readable($_cache_dir)) {
+ $status = false;
+ $message = "FAILED: {$_cache_dir} is not readable";
+ if ($errors === null) {
+ echo $message . ".\n";
+ } else {
+ $errors['cache_dir'] = $message;
+ }
+ } elseif (!is_writable($_cache_dir)) {
+ $status = false;
+ $message = "FAILED: {$_cache_dir} is not writable";
+ if ($errors === null) {
+ echo $message . ".\n";
+ } else {
+ $errors['cache_dir'] = $message;
+ }
+ } else {
+ if ($errors === null) {
+ echo "{$_cache_dir} is OK.\n";
+ }
+ }
+
+
+ if ($errors === null) {
+ echo "Testing configs directory...\n";
+ }
+
+ // test if all registered config_dir are accessible
+ foreach($smarty->getConfigDir() as $config_dir) {
+ $_config_dir = $config_dir;
+ $config_dir = realpath($config_dir);
+ // resolve include_path or fail existance
+ if (!$config_dir) {
+ if ($smarty->use_include_path && !preg_match('/^([\/\\\\]|[a-zA-Z]:[\/\\\\])/', $_config_dir)) {
+ // try PHP include_path
+ if (($config_dir = Smarty_Internal_Get_Include_Path::getIncludePath($_config_dir)) !== false) {
+ if ($errors === null) {
+ echo "$config_dir is OK.\n";
+ }
+
+ continue;
+ } else {
+ $status = false;
+ $message = "FAILED: $_config_dir does not exist (and couldn't be found in include_path either)";
+ if ($errors === null) {
+ echo $message . ".\n";
+ } else {
+ $errors['config_dir'] = $message;
+ }
+
+ continue;
+ }
+ } else {
+ $status = false;
+ $message = "FAILED: $_config_dir does not exist";
+ if ($errors === null) {
+ echo $message . ".\n";
+ } else {
+ $errors['config_dir'] = $message;
+ }
+
+ continue;
+ }
+ }
+
+ if (!is_dir($config_dir)) {
+ $status = false;
+ $message = "FAILED: $config_dir is not a directory";
+ if ($errors === null) {
+ echo $message . ".\n";
+ } else {
+ $errors['config_dir'] = $message;
+ }
+ } elseif (!is_readable($config_dir)) {
+ $status = false;
+ $message = "FAILED: $config_dir is not readable";
+ if ($errors === null) {
+ echo $message . ".\n";
+ } else {
+ $errors['config_dir'] = $message;
+ }
+ } else {
+ if ($errors === null) {
+ echo "$config_dir is OK.\n";
+ }
+ }
+ }
+
+
+ if ($errors === null) {
+ echo "Testing sysplugin files...\n";
+ }
+ // test if sysplugins are available
+ $source = SMARTY_SYSPLUGINS_DIR;
+ if (is_dir($source)) {
+ $expected = array(
+ "smarty_cacheresource.php" => true,
+ "smarty_cacheresource_custom.php" => true,
+ "smarty_cacheresource_keyvaluestore.php" => true,
+ "smarty_config_source.php" => true,
+ "smarty_internal_cacheresource_file.php" => true,
+ "smarty_internal_compile_append.php" => true,
+ "smarty_internal_compile_assign.php" => true,
+ "smarty_internal_compile_block.php" => true,
+ "smarty_internal_compile_break.php" => true,
+ "smarty_internal_compile_call.php" => true,
+ "smarty_internal_compile_capture.php" => true,
+ "smarty_internal_compile_config_load.php" => true,
+ "smarty_internal_compile_continue.php" => true,
+ "smarty_internal_compile_debug.php" => true,
+ "smarty_internal_compile_eval.php" => true,
+ "smarty_internal_compile_extends.php" => true,
+ "smarty_internal_compile_for.php" => true,
+ "smarty_internal_compile_foreach.php" => true,
+ "smarty_internal_compile_function.php" => true,
+ "smarty_internal_compile_if.php" => true,
+ "smarty_internal_compile_include.php" => true,
+ "smarty_internal_compile_include_php.php" => true,
+ "smarty_internal_compile_insert.php" => true,
+ "smarty_internal_compile_ldelim.php" => true,
+ "smarty_internal_compile_nocache.php" => true,
+ "smarty_internal_compile_private_block_plugin.php" => true,
+ "smarty_internal_compile_private_function_plugin.php" => true,
+ "smarty_internal_compile_private_modifier.php" => true,
+ "smarty_internal_compile_private_object_block_function.php" => true,
+ "smarty_internal_compile_private_object_function.php" => true,
+ "smarty_internal_compile_private_print_expression.php" => true,
+ "smarty_internal_compile_private_registered_block.php" => true,
+ "smarty_internal_compile_private_registered_function.php" => true,
+ "smarty_internal_compile_private_special_variable.php" => true,
+ "smarty_internal_compile_rdelim.php" => true,
+ "smarty_internal_compile_section.php" => true,
+ "smarty_internal_compile_setfilter.php" => true,
+ "smarty_internal_compile_while.php" => true,
+ "smarty_internal_compilebase.php" => true,
+ "smarty_internal_config.php" => true,
+ "smarty_internal_config_file_compiler.php" => true,
+ "smarty_internal_configfilelexer.php" => true,
+ "smarty_internal_configfileparser.php" => true,
+ "smarty_internal_data.php" => true,
+ "smarty_internal_debug.php" => true,
+ "smarty_internal_filter_handler.php" => true,
+ "smarty_internal_function_call_handler.php" => true,
+ "smarty_internal_get_include_path.php" => true,
+ "smarty_internal_nocache_insert.php" => true,
+ "smarty_internal_parsetree.php" => true,
+ "smarty_internal_resource_eval.php" => true,
+ "smarty_internal_resource_extends.php" => true,
+ "smarty_internal_resource_file.php" => true,
+ "smarty_internal_resource_registered.php" => true,
+ "smarty_internal_resource_stream.php" => true,
+ "smarty_internal_resource_string.php" => true,
+ "smarty_internal_smartytemplatecompiler.php" => true,
+ "smarty_internal_template.php" => true,
+ "smarty_internal_templatebase.php" => true,
+ "smarty_internal_templatecompilerbase.php" => true,
+ "smarty_internal_templatelexer.php" => true,
+ "smarty_internal_templateparser.php" => true,
+ "smarty_internal_utility.php" => true,
+ "smarty_internal_write_file.php" => true,
+ "smarty_resource.php" => true,
+ "smarty_resource_custom.php" => true,
+ "smarty_resource_recompiled.php" => true,
+ "smarty_resource_uncompiled.php" => true,
+ "smarty_security.php" => true,
+ );
+ $iterator = new DirectoryIterator($source);
+ foreach ($iterator as $file) {
+ if (!$file->isDot()) {
+ $filename = $file->getFilename();
+ if (isset($expected[$filename])) {
+ unset($expected[$filename]);
+ }
+ }
+ }
+ if ($expected) {
+ $status = false;
+ $message = "FAILED: files missing from libs/sysplugins: ". join(', ', array_keys($expected));
+ if ($errors === null) {
+ echo $message . ".\n";
+ } else {
+ $errors['sysplugins'] = $message;
+ }
+ } elseif ($errors === null) {
+ echo "... OK\n";
+ }
+ } else {
+ $status = false;
+ $message = "FAILED: ". SMARTY_SYSPLUGINS_DIR .' is not a directory';
+ if ($errors === null) {
+ echo $message . ".\n";
+ } else {
+ $errors['sysplugins_dir_constant'] = $message;
+ }
+ }
+
+ if ($errors === null) {
+ echo "Testing plugin files...\n";
+ }
+ // test if core plugins are available
+ $source = SMARTY_PLUGINS_DIR;
+ if (is_dir($source)) {
+ $expected = array(
+ "block.textformat.php" => true,
+ "function.counter.php" => true,
+ "function.cycle.php" => true,
+ "function.fetch.php" => true,
+ "function.html_checkboxes.php" => true,
+ "function.html_image.php" => true,
+ "function.html_options.php" => true,
+ "function.html_radios.php" => true,
+ "function.html_select_date.php" => true,
+ "function.html_select_time.php" => true,
+ "function.html_table.php" => true,
+ "function.mailto.php" => true,
+ "function.math.php" => true,
+ "modifier.capitalize.php" => true,
+ "modifier.date_format.php" => true,
+ "modifier.debug_print_var.php" => true,
+ "modifier.escape.php" => true,
+ "modifier.regex_replace.php" => true,
+ "modifier.replace.php" => true,
+ "modifier.spacify.php" => true,
+ "modifier.truncate.php" => true,
+ "modifiercompiler.cat.php" => true,
+ "modifiercompiler.count_characters.php" => true,
+ "modifiercompiler.count_paragraphs.php" => true,
+ "modifiercompiler.count_sentences.php" => true,
+ "modifiercompiler.count_words.php" => true,
+ "modifiercompiler.default.php" => true,
+ "modifiercompiler.escape.php" => true,
+ "modifiercompiler.from_charset.php" => true,
+ "modifiercompiler.indent.php" => true,
+ "modifiercompiler.lower.php" => true,
+ "modifiercompiler.noprint.php" => true,
+ "modifiercompiler.string_format.php" => true,
+ "modifiercompiler.strip.php" => true,
+ "modifiercompiler.strip_tags.php" => true,
+ "modifiercompiler.to_charset.php" => true,
+ "modifiercompiler.unescape.php" => true,
+ "modifiercompiler.upper.php" => true,
+ "modifiercompiler.wordwrap.php" => true,
+ "outputfilter.trimwhitespace.php" => true,
+ "shared.escape_special_chars.php" => true,
+ "shared.literal_compiler_param.php" => true,
+ "shared.make_timestamp.php" => true,
+ "shared.mb_str_replace.php" => true,
+ "shared.mb_unicode.php" => true,
+ "shared.mb_wordwrap.php" => true,
+ "variablefilter.htmlspecialchars.php" => true,
+ );
+ $iterator = new DirectoryIterator($source);
+ foreach ($iterator as $file) {
+ if (!$file->isDot()) {
+ $filename = $file->getFilename();
+ if (isset($expected[$filename])) {
+ unset($expected[$filename]);
+ }
+ }
+ }
+ if ($expected) {
+ $status = false;
+ $message = "FAILED: files missing from libs/plugins: ". join(', ', array_keys($expected));
+ if ($errors === null) {
+ echo $message . ".\n";
+ } else {
+ $errors['plugins'] = $message;
+ }
+ } elseif ($errors === null) {
+ echo "... OK\n";
+ }
+ } else {
+ $status = false;
+ $message = "FAILED: ". SMARTY_PLUGINS_DIR .' is not a directory';
+ if ($errors === null) {
+ echo $message . ".\n";
+ } else {
+ $errors['plugins_dir_constant'] = $message;
+ }
+ }
+
+ if ($errors === null) {
+ echo "Tests complete.\n";
+ echo "</PRE>\n";
+ }
+
+ return $status;
+ }
+
}
+
?>
\ No newline at end of file
diff --git a/gosa-core/include/smarty/sysplugins/smarty_internal_write_file.php b/gosa-core/include/smarty/sysplugins/smarty_internal_write_file.php
index 4e34335fbebec92d371bb765c81d8df86b95e474..aae600ee11bc5f64c75bcfbf2d6a0769c699b6e4 100644 (file)
<?php
-
/**
* Smarty write file plugin
- *
+ *
* @package Smarty
* @subpackage PluginsInternal
- * @author Monte Ohrt
+ * @author Monte Ohrt
*/
/**
* Smarty Internal Write File Class
+ *
+ * @package Smarty
+ * @subpackage PluginsInternal
*/
class Smarty_Internal_Write_File {
+
/**
- * Writes file in a save way to disk
- *
+ * Writes file in a safe way to disk
+ *
* @param string $_filepath complete filepath
* @param string $_contents file content
+ * @param Smarty $smarty smarty instance
* @return boolean true
*/
- public static function writeFile($_filepath, $_contents, $smarty)
+ public static function writeFile($_filepath, $_contents, Smarty $smarty)
{
- $old_umask = umask(0);
- $_dirpath = dirname($_filepath);
+ $_error_reporting = error_reporting();
+ error_reporting($_error_reporting & ~E_NOTICE & ~E_WARNING);
+ if ($smarty->_file_perms !== null) {
+ $old_umask = umask(0);
+ }
+
+ $_dirpath = dirname($_filepath);
// if subdirs, create dir structure
if ($_dirpath !== '.' && !file_exists($_dirpath)) {
- mkdir($_dirpath, $smarty->_dir_perms, true);
- }
- // write to tmp file, then move to overt file lock race condition
- $_tmp_file = tempnam($_dirpath, 'wrt');
+ mkdir($_dirpath, $smarty->_dir_perms === null ? 0777 : $smarty->_dir_perms, true);
+ }
- if (!($fd = @fopen($_tmp_file, 'wb'))) {
- $_tmp_file = $_dirpath . DS . uniqid('wrt');
- if (!($fd = @fopen($_tmp_file, 'wb'))) {
+ // write to tmp file, then move to overt file lock race condition
+ $_tmp_file = $_dirpath . DS . uniqid('wrt');
+ if (!file_put_contents($_tmp_file, $_contents)) {
+ error_reporting($_error_reporting);
throw new SmartyException("unable to write file {$_tmp_file}");
return false;
- }
- }
-
- fwrite($fd, $_contents);
- fclose($fd);
+ }
// remove original file
- if (file_exists($_filepath))
- @unlink($_filepath);
+ unlink($_filepath);
+
// rename tmp file
- rename($_tmp_file, $_filepath);
- // set file permissions
- chmod($_filepath, $smarty->_file_perms);
- umask($old_umask);
+ $success = rename($_tmp_file, $_filepath);
+ if (!$success) {
+ error_reporting($_error_reporting);
+ throw new SmartyException("unable to write file {$_filepath}");
+ return false;
+ }
+
+ if ($smarty->_file_perms !== null) {
+ // set file permissions
+ chmod($_filepath, $smarty->_file_perms);
+ umask($old_umask);
+ }
+ error_reporting($_error_reporting);
return true;
- }
-}
+ }
+
+}
?>
\ No newline at end of file
diff --git a/gosa-core/include/smarty/sysplugins/smarty_resource.php b/gosa-core/include/smarty/sysplugins/smarty_resource.php
--- /dev/null
@@ -0,0 +1,816 @@
+<?php
+/**
+ * Smarty Resource Plugin
+ *
+ * @package Smarty
+ * @subpackage TemplateResources
+ * @author Rodney Rehm
+ */
+
+/**
+ * Smarty Resource Plugin
+ *
+ * Base implementation for resource plugins
+ *
+ * @package Smarty
+ * @subpackage TemplateResources
+ */
+abstract class Smarty_Resource {
+ /**
+ * cache for Smarty_Template_Source instances
+ * @var array
+ */
+ public static $sources = array();
+ /**
+ * cache for Smarty_Template_Compiled instances
+ * @var array
+ */
+ public static $compileds = array();
+ /**
+ * cache for Smarty_Resource instances
+ * @var array
+ */
+ public static $resources = array();
+ /**
+ * resource types provided by the core
+ * @var array
+ */
+ protected static $sysplugins = array(
+ 'file' => true,
+ 'string' => true,
+ 'extends' => true,
+ 'stream' => true,
+ 'eval' => true,
+ 'php' => true
+ );
+
+ /**
+ * Name of the Class to compile this resource's contents with
+ * @var string
+ */
+ public $compiler_class = 'Smarty_Internal_SmartyTemplateCompiler';
+
+ /**
+ * Name of the Class to tokenize this resource's contents with
+ * @var string
+ */
+ public $template_lexer_class = 'Smarty_Internal_Templatelexer';
+
+ /**
+ * Name of the Class to parse this resource's contents with
+ * @var string
+ */
+ public $template_parser_class = 'Smarty_Internal_Templateparser';
+
+ /**
+ * Load template's source into current template object
+ *
+ * {@internal The loaded source is assigned to $_template->source->content directly.}}
+ *
+ * @param Smarty_Template_Source $source source object
+ * @return string template source
+ * @throws SmartyException if source cannot be loaded
+ */
+ public abstract function getContent(Smarty_Template_Source $source);
+
+ /**
+ * populate Source Object with meta data from Resource
+ *
+ * @param Smarty_Template_Source $source source object
+ * @param Smarty_Internal_Template $_template template object
+ */
+ public abstract function populate(Smarty_Template_Source $source, Smarty_Internal_Template $_template=null);
+
+ /**
+ * populate Source Object with timestamp and exists from Resource
+ *
+ * @param Smarty_Template_Source $source source object
+ */
+ public function populateTimestamp(Smarty_Template_Source $source)
+ {
+ // intentionally left blank
+ }
+
+
+ /**
+ * modify resource_name according to resource handlers specifications
+ *
+ * @param Smarty $smarty Smarty instance
+ * @param string $resource_name resource_name to make unique
+ * @return string unique resource name
+ */
+ protected function buildUniqueResourceName(Smarty $smarty, $resource_name)
+ {
+ return get_class($this) . '#' . $smarty->joined_template_dir . '#' . $resource_name;
+ }
+
+ /**
+ * populate Compiled Object with compiled filepath
+ *
+ * @param Smarty_Template_Compiled $compiled compiled object
+ * @param Smarty_Internal_Template $_template template object
+ */
+ public function populateCompiledFilepath(Smarty_Template_Compiled $compiled, Smarty_Internal_Template $_template)
+ {
+ $_compile_id = isset($_template->compile_id) ? preg_replace('![^\w\|]+!', '_', $_template->compile_id) : null;
+ $_filepath = $compiled->source->uid;
+ // if use_sub_dirs, break file into directories
+ if ($_template->smarty->use_sub_dirs) {
+ $_filepath = substr($_filepath, 0, 2) . DS
+ . substr($_filepath, 2, 2) . DS
+ . substr($_filepath, 4, 2) . DS
+ . $_filepath;
+ }
+ $_compile_dir_sep = $_template->smarty->use_sub_dirs ? DS : '^';
+ if (isset($_compile_id)) {
+ $_filepath = $_compile_id . $_compile_dir_sep . $_filepath;
+ }
+ // caching token
+ if ($_template->caching) {
+ $_cache = '.cache';
+ } else {
+ $_cache = '';
+ }
+ $_compile_dir = $_template->smarty->getCompileDir();
+ // set basename if not specified
+ $_basename = $this->getBasename($compiled->source);
+ if ($_basename === null) {
+ $_basename = basename( preg_replace('![^\w\/]+!', '_', $compiled->source->name) );
+ }
+ // separate (optional) basename by dot
+ if ($_basename) {
+ $_basename = '.' . $_basename;
+ }
+
+ $compiled->filepath = $_compile_dir . $_filepath . '.' . $compiled->source->type . $_basename . $_cache . '.php';
+ }
+
+ /**
+ * build template filepath by traversing the template_dir array
+ *
+ * @param Smarty_Template_Source $source source object
+ * @param Smarty_Internal_Template $_template template object
+ * @return string fully qualified filepath
+ * @throws SmartyException if default template handler is registered but not callable
+ */
+ protected function buildFilepath(Smarty_Template_Source $source, Smarty_Internal_Template $_template=null)
+ {
+ $file = $source->name;
+ if ($source instanceof Smarty_Config_Source) {
+ $_directories = $source->smarty->getConfigDir();
+ $_default_handler = $source->smarty->default_config_handler_func;
+ } else {
+ $_directories = $source->smarty->getTemplateDir();
+ $_default_handler = $source->smarty->default_template_handler_func;
+ }
+
+ // go relative to a given template?
+ $_file_is_dotted = $file[0] == '.' && ($file[1] == '.' || $file[1] == '/' || $file[1] == "\\");
+ if ($_template && $_template->parent instanceof Smarty_Internal_Template && $_file_is_dotted) {
+ if ($_template->parent->source->type != 'file' && $_template->parent->source->type != 'extends' && !$_template->parent->allow_relative_path) {
+ throw new SmartyException("Template '{$file}' cannot be relative to template of resource type '{$_template->parent->source->type}'");
+ }
+ $file = dirname($_template->parent->source->filepath) . DS . $file;
+ $_file_exact_match = true;
+ if (!preg_match('/^([\/\\\\]|[a-zA-Z]:[\/\\\\])/', $file)) {
+ // the path gained from the parent template is relative to the current working directory
+ // as expansions (like include_path) have already been done
+ $file = getcwd() . DS . $file;
+ }
+ }
+
+ // resolve relative path
+ if (!preg_match('/^([\/\\\\]|[a-zA-Z]:[\/\\\\])/', $file)) {
+ $_was_relative_prefix = $file[0] == '.' ? substr($file, 0, strpos($file, '|')) : null;
+ $_path = DS . trim($file, '/\\');
+ $_was_relative = true;
+ } else {
+ $_path = $file;
+ }
+ // don't we all just love windows?
+ $_path = str_replace('\\', '/', $_path);
+ // resolve simples
+ $_path = preg_replace('#(/\./(\./)*)|/{2,}#', '/', $_path);
+ // resolve parents
+ while (true) {
+ $_parent = strpos($_path, '/../');
+ if ($_parent === false) {
+ break;
+ } else if ($_parent === 0) {
+ $_path = substr($_path, 3);
+ break;
+ }
+ $_pos = strrpos($_path, '/', $_parent - strlen($_path) - 1);
+ if ($_pos === false) {
+ // don't we all just love windows?
+ $_pos = $_parent;
+ }
+ $_path = substr_replace($_path, '', $_pos, $_parent + 3 - $_pos);
+ }
+ if (DS != '/') {
+ // don't we all just love windows?
+ $_path = str_replace('/', '\\', $_path);
+ }
+ // revert to relative
+ if (isset($_was_relative)) {
+ if (isset($_was_relative_prefix)){
+ $_path = $_was_relative_prefix . $_path;
+ } else {
+ $_path = substr($_path, 1);
+ }
+ }
+
+ // this is only required for directories
+ $file = rtrim($_path, '/\\');
+
+ // files relative to a template only get one shot
+ if (isset($_file_exact_match)) {
+ return $this->fileExists($source, $file) ? $file : false;
+ }
+
+ // template_dir index?
+ if (preg_match('#^\[(?P<key>[^\]]+)\](?P<file>.+)$#', $file, $match)) {
+ $_directory = null;
+ // try string indexes
+ if (isset($_directories[$match['key']])) {
+ $_directory = $_directories[$match['key']];
+ } else if (is_numeric($match['key'])) {
+ // try numeric index
+ $match['key'] = (int) $match['key'];
+ if (isset($_directories[$match['key']])) {
+ $_directory = $_directories[$match['key']];
+ } else {
+ // try at location index
+ $keys = array_keys($_directories);
+ $_directory = $_directories[$keys[$match['key']]];
+ }
+ }
+
+ if ($_directory) {
+ $_file = substr($file, strpos($file, ']') + 1);
+ $_filepath = $_directory . $_file;
+ if ($this->fileExists($source, $_filepath)) {
+ return $_filepath;
+ }
+ }
+ }
+
+ // relative file name?
+ if (!preg_match('/^([\/\\\\]|[a-zA-Z]:[\/\\\\])/', $file)) {
+ foreach ($_directories as $_directory) {
+ $_filepath = $_directory . $file;
+ if ($this->fileExists($source, $_filepath)) {
+ return $_filepath;
+ }
+ if ($source->smarty->use_include_path && !preg_match('/^([\/\\\\]|[a-zA-Z]:[\/\\\\])/', $_directory)) {
+ // try PHP include_path
+ if (($_filepath = Smarty_Internal_Get_Include_Path::getIncludePath($_filepath)) !== false) {
+ return $_filepath;
+ }
+ }
+ }
+ }
+
+ // try absolute filepath
+ if ($this->fileExists($source, $file)) {
+ return $file;
+ }
+
+ // no tpl file found
+ if ($_default_handler) {
+ if (!is_callable($_default_handler)) {
+ if ($source instanceof Smarty_Config_Source) {
+ throw new SmartyException("Default config handler not callable");
+ } else {
+ throw new SmartyException("Default template handler not callable");
+ }
+ }
+ $_return = call_user_func_array($_default_handler,
+ array($source->type, $source->name, &$_content, &$_timestamp, $source->smarty));
+ if (is_string($_return)) {
+ $source->timestamp = @filemtime($_return);
+ $source->exists = !!$source->timestamp;
+ return $_return;
+ } elseif ($_return === true) {
+ $source->content = $_content;
+ $source->timestamp = $_timestamp;
+ $source->exists = true;
+ return $_filepath;
+ }
+ }
+
+ // give up
+ return false;
+ }
+
+ /**
+ * test is file exists and save timestamp
+ *
+ * @param Smarty_Template_Source $source source object
+ * @param string $file file name
+ * @return bool true if file exists
+ */
+ protected function fileExists(Smarty_Template_Source $source, $file)
+ {
+ $source->timestamp = @filemtime($file);
+ return $source->exists = !!$source->timestamp;
+
+ }
+
+ /**
+ * Determine basename for compiled filename
+ *
+ * @param Smarty_Template_Source $source source object
+ * @return string resource's basename
+ */
+ protected function getBasename(Smarty_Template_Source $source)
+ {
+ return null;
+ }
+
+ /**
+ * Load Resource Handler
+ *
+ * @param Smarty $smarty smarty object
+ * @param string $type name of the resource
+ * @return Smarty_Resource Resource Handler
+ */
+ public static function load(Smarty $smarty, $type)
+ {
+ // try smarty's cache
+ if (isset($smarty->_resource_handlers[$type])) {
+ return $smarty->_resource_handlers[$type];
+ }
+
+ // try registered resource
+ if (isset($smarty->registered_resources[$type])) {
+ if ($smarty->registered_resources[$type] instanceof Smarty_Resource) {
+ $smarty->_resource_handlers[$type] = $smarty->registered_resources[$type];
+ // note registered to smarty is not kept unique!
+ return $smarty->_resource_handlers[$type];
+ }
+ if (!isset(self::$resources['registered'])) {
+ self::$resources['registered'] = new Smarty_Internal_Resource_Registered();
+ $smarty->_resource_handlers[$type] = self::$resources['registered'];
+ }
+ return $smarty->_resource_handlers[$type];
+ }
+
+ // try sysplugins dir
+ if (isset(self::$sysplugins[$type])) {
+ if (!isset(self::$resources[$type])) {
+ $_resource_class = 'Smarty_Internal_Resource_' . ucfirst($type);
+ self::$resources[$type] = new $_resource_class();
+ }
+ return $smarty->_resource_handlers[$type] = self::$resources[$type];
+ }
+
+ // try plugins dir
+ $_resource_class = 'Smarty_Resource_' . ucfirst($type);
+ if ($smarty->loadPlugin($_resource_class)) {
+ if (isset(self::$resources[$type])) {
+ return $smarty->_resource_handlers[$type] = self::$resources[$type];
+ }
+
+ if (class_exists($_resource_class, false)) {
+ self::$resources[$type] = new $_resource_class();
+ return $smarty->_resource_handlers[$type] = self::$resources[$type];
+ } else {
+ $smarty->registerResource($type, array(
+ "smarty_resource_{$type}_source",
+ "smarty_resource_{$type}_timestamp",
+ "smarty_resource_{$type}_secure",
+ "smarty_resource_{$type}_trusted"
+ ));
+
+ // give it another try, now that the resource is registered properly
+ return self::load($smarty, $type);
+ }
+ }
+
+ // try streams
+ $_known_stream = stream_get_wrappers();
+ if (in_array($type, $_known_stream)) {
+ // is known stream
+ if (is_object($smarty->security_policy)) {
+ $smarty->security_policy->isTrustedStream($type);
+ }
+ if (!isset(self::$resources['stream'])) {
+ self::$resources['stream'] = new Smarty_Internal_Resource_Stream();
+ }
+ return $smarty->_resource_handlers[$type] = self::$resources['stream'];
+ }
+
+ // TODO: try default_(template|config)_handler
+
+ // give up
+ throw new SmartyException("Unkown resource type '{$type}'");
+ }
+
+ /**
+ * extract resource_type and resource_name from template_resource and config_resource
+ *
+ * @note "C:/foo.tpl" was forced to file resource up till Smarty 3.1.3 (including).
+ * @param string $resource_name template_resource or config_resource to parse
+ * @param string $default_resource the default resource_type defined in $smarty
+ * @param string &$name the parsed resource name
+ * @param string &$type the parsed resource type
+ * @return void
+ */
+ protected static function parseResourceName($resource_name, $default_resource, &$name, &$type)
+ {
+ $parts = explode(':', $resource_name, 2);
+ if (!isset($parts[1]) || !isset($parts[0][1])) {
+ // no resource given, use default
+ // or single character before the colon is not a resource type, but part of the filepath
+ $type = $default_resource;
+ $name = $resource_name;
+ } else {
+ $type = $parts[0];
+ $name = $parts[1];
+ }
+ }
+
+
+ /**
+ * modify resource_name according to resource handlers specifications
+ *
+ * @param Smarty $smarty Smarty instance
+ * @param string $resource_name resource_name to make unique
+ * @return string unique resource name
+ */
+
+ /**
+ * modify template_resource according to resource handlers specifications
+ *
+ * @param string $smarty Smarty instance
+ * @param string $template_resource template_resource to extracate resource handler and name of
+ * @return string unique resource name
+ */
+ public static function getUniqueTemplateName($smarty, $template_resource)
+ {
+ self::parseResourceName($template_resource, $smarty->default_resource_type, $name, $type);
+ // TODO: optimize for Smarty's internal resource types
+ $resource = Smarty_Resource::load($smarty, $type);
+ return $resource->buildUniqueResourceName($smarty, $name);
+ }
+
+ /**
+ * initialize Source Object for given resource
+ *
+ * Either [$_template] or [$smarty, $template_resource] must be specified
+ *
+ * @param Smarty_Internal_Template $_template template object
+ * @param Smarty $smarty smarty object
+ * @param string $template_resource resource identifier
+ * @return Smarty_Template_Source Source Object
+ */
+ public static function source(Smarty_Internal_Template $_template=null, Smarty $smarty=null, $template_resource=null)
+ {
+ if ($_template) {
+ $smarty = $_template->smarty;
+ $template_resource = $_template->template_resource;
+ }
+
+ // parse resource_name, load resource handler, identify unique resource name
+ self::parseResourceName($template_resource, $smarty->default_resource_type, $name, $type);
+ $resource = Smarty_Resource::load($smarty, $type);
+ $unique_resource_name = $resource->buildUniqueResourceName($smarty, $name);
+
+ // check runtime cache
+ $_cache_key = 'template|' . $unique_resource_name;
+ if (isset(self::$sources[$_cache_key])) {
+ return self::$sources[$_cache_key];
+ }
+
+ // create source
+ $source = new Smarty_Template_Source($resource, $smarty, $template_resource, $type, $name, $unique_resource_name);
+ $resource->populate($source, $_template);
+
+ // runtime cache
+ self::$sources[$_cache_key] = $source;
+ return $source;
+ }
+
+ /**
+ * initialize Config Source Object for given resource
+ *
+ * @param Smarty_Internal_Config $_config config object
+ * @return Smarty_Config_Source Source Object
+ */
+ public static function config(Smarty_Internal_Config $_config)
+ {
+ static $_incompatible_resources = array('eval' => true, 'string' => true, 'extends' => true, 'php' => true);
+ $config_resource = $_config->config_resource;
+ $smarty = $_config->smarty;
+
+ // parse resource_name
+ self::parseResourceName($config_resource, $smarty->default_config_type, $name, $type);
+
+ // make sure configs are not loaded via anything smarty can't handle
+ if (isset($_incompatible_resources[$type])) {
+ throw new SmartyException ("Unable to use resource '{$type}' for config");
+ }
+
+ // load resource handler, identify unique resource name
+ $resource = Smarty_Resource::load($smarty, $type);
+ $unique_resource_name = $resource->buildUniqueResourceName($smarty, $name);
+
+ // check runtime cache
+ $_cache_key = 'config|' . $unique_resource_name;
+ if (isset(self::$sources[$_cache_key])) {
+ return self::$sources[$_cache_key];
+ }
+
+ // create source
+ $source = new Smarty_Config_Source($resource, $smarty, $config_resource, $type, $name, $unique_resource_name);
+ $resource->populate($source, null);
+
+ // runtime cache
+ self::$sources[$_cache_key] = $source;
+ return $source;
+ }
+
+}
+
+/**
+ * Smarty Resource Data Object
+ *
+ * Meta Data Container for Template Files
+ *
+ * @package Smarty
+ * @subpackage TemplateResources
+ * @author Rodney Rehm
+ *
+ * @property integer $timestamp Source Timestamp
+ * @property boolean $exists Source Existance
+ * @property boolean $template Extended Template reference
+ * @property string $content Source Content
+ */
+class Smarty_Template_Source {
+
+ /**
+ * Name of the Class to compile this resource's contents with
+ * @var string
+ */
+ public $compiler_class = null;
+
+ /**
+ * Name of the Class to tokenize this resource's contents with
+ * @var string
+ */
+ public $template_lexer_class = null;
+
+ /**
+ * Name of the Class to parse this resource's contents with
+ * @var string
+ */
+ public $template_parser_class = null;
+
+ /**
+ * Unique Template ID
+ * @var string
+ */
+ public $uid = null;
+
+ /**
+ * Template Resource (Smarty_Internal_Template::$template_resource)
+ * @var string
+ */
+ public $resource = null;
+
+ /**
+ * Resource Type
+ * @var string
+ */
+ public $type = null;
+
+ /**
+ * Resource Name
+ * @var string
+ */
+ public $name = null;
+
+ /**
+ * Unique Resource Name
+ * @var string
+ */
+ public $unique_resource = null;
+
+ /**
+ * Source Filepath
+ * @var string
+ */
+ public $filepath = null;
+
+ /**
+ * Source is bypassing compiler
+ * @var boolean
+ */
+ public $uncompiled = null;
+
+ /**
+ * Source must be recompiled on every occasion
+ * @var boolean
+ */
+ public $recompiled = null;
+
+ /**
+ * The Components an extended template is made of
+ * @var array
+ */
+ public $components = null;
+
+ /**
+ * Resource Handler
+ * @var Smarty_Resource
+ */
+ public $handler = null;
+
+ /**
+ * Smarty instance
+ * @var Smarty
+ */
+ public $smarty = null;
+
+ /**
+ * create Source Object container
+ *
+ * @param Smarty_Resource $handler Resource Handler this source object communicates with
+ * @param Smarty $smarty Smarty instance this source object belongs to
+ * @param string $resource full template_resource
+ * @param string $type type of resource
+ * @param string $name resource name
+ * @param string $unique_resource unqiue resource name
+ */
+ public function __construct(Smarty_Resource $handler, Smarty $smarty, $resource, $type, $name, $unique_resource)
+ {
+ $this->handler = $handler; // Note: prone to circular references
+
+ $this->compiler_class = $handler->compiler_class;
+ $this->template_lexer_class = $handler->template_lexer_class;
+ $this->template_parser_class = $handler->template_parser_class;
+ $this->uncompiled = $this->handler instanceof Smarty_Resource_Uncompiled;
+ $this->recompiled = $this->handler instanceof Smarty_Resource_Recompiled;
+
+ $this->smarty = $smarty;
+ $this->resource = $resource;
+ $this->type = $type;
+ $this->name = $name;
+ $this->unique_resource = $unique_resource;
+ }
+
+ /**
+ * get a Compiled Object of this source
+ *
+ * @param Smarty_Internal_Template $_template template objet
+ * @return Smarty_Template_Compiled compiled object
+ */
+ public function getCompiled(Smarty_Internal_Template $_template)
+ {
+ // check runtime cache
+ $_cache_key = $this->unique_resource . '#' . $_template->compile_id;
+ if (isset(Smarty_Resource::$compileds[$_cache_key])) {
+ return Smarty_Resource::$compileds[$_cache_key];
+ }
+
+ $compiled = new Smarty_Template_Compiled($this);
+ $this->handler->populateCompiledFilepath($compiled, $_template);
+ $compiled->timestamp = @filemtime($compiled->filepath);
+ $compiled->exists = !!$compiled->timestamp;
+
+ // runtime cache
+ Smarty_Resource::$compileds[$_cache_key] = $compiled;
+
+ return $compiled;
+ }
+
+ /**
+ * render the uncompiled source
+ *
+ * @param Smarty_Internal_Template $_template template object
+ */
+ public function renderUncompiled(Smarty_Internal_Template $_template)
+ {
+ return $this->handler->renderUncompiled($this, $_template);
+ }
+
+ /**
+ * <<magic>> Generic Setter.
+ *
+ * @param string $property_name valid: timestamp, exists, content, template
+ * @param mixed $value new value (is not checked)
+ * @throws SmartyException if $property_name is not valid
+ */
+ public function __set($property_name, $value)
+ {
+ switch ($property_name) {
+ // regular attributes
+ case 'timestamp':
+ case 'exists':
+ case 'content':
+ // required for extends: only
+ case 'template':
+ $this->$property_name = $value;
+ break;
+
+ default:
+ throw new SmartyException("invalid source property '$property_name'.");
+ }
+ }
+
+ /**
+ * <<magic>> Generic getter.
+ *
+ * @param string $property_name valid: timestamp, exists, content
+ * @return mixed
+ * @throws SmartyException if $property_name is not valid
+ */
+ public function __get($property_name)
+ {
+ switch ($property_name) {
+ case 'timestamp':
+ case 'exists':
+ $this->handler->populateTimestamp($this);
+ return $this->$property_name;
+
+ case 'content':
+ return $this->content = $this->handler->getContent($this);
+
+ default:
+ throw new SmartyException("source property '$property_name' does not exist.");
+ }
+ }
+
+}
+
+/**
+ * Smarty Resource Data Object
+ *
+ * Meta Data Container for Template Files
+ *
+ * @package Smarty
+ * @subpackage TemplateResources
+ * @author Rodney Rehm
+ *
+ * @property string $content compiled content
+ */
+class Smarty_Template_Compiled {
+
+ /**
+ * Compiled Filepath
+ * @var string
+ */
+ public $filepath = null;
+
+ /**
+ * Compiled Timestamp
+ * @var integer
+ */
+ public $timestamp = null;
+
+ /**
+ * Compiled Existance
+ * @var boolean
+ */
+ public $exists = false;
+
+ /**
+ * Compiled Content Loaded
+ * @var boolean
+ */
+ public $loaded = false;
+
+ /**
+ * Template was compiled
+ * @var boolean
+ */
+ public $isCompiled = false;
+
+ /**
+ * Source Object
+ * @var Smarty_Template_Source
+ */
+ public $source = null;
+
+ /**
+ * Metadata properties
+ *
+ * populated by Smarty_Internal_Template::decodeProperties()
+ * @var array
+ */
+ public $_properties = null;
+
+ /**
+ * create Compiled Object container
+ *
+ * @param Smarty_Template_Source $source source object this compiled object belongs to
+ */
+ public function __construct(Smarty_Template_Source $source)
+ {
+ $this->source = $source;
+ }
+
+}
+
+?>
\ No newline at end of file
diff --git a/gosa-core/include/smarty/sysplugins/smarty_resource_custom.php b/gosa-core/include/smarty/sysplugins/smarty_resource_custom.php
--- /dev/null
@@ -0,0 +1,96 @@
+<?php
+/**
+ * Smarty Resource Plugin
+ *
+ * @package Smarty
+ * @subpackage TemplateResources
+ * @author Rodney Rehm
+ */
+
+/**
+ * Smarty Resource Plugin
+ *
+ * Wrapper Implementation for custom resource plugins
+ *
+ * @package Smarty
+ * @subpackage TemplateResources
+ */
+abstract class Smarty_Resource_Custom extends Smarty_Resource {
+
+ /**
+ * fetch template and its modification time from data source
+ *
+ * @param string $name template name
+ * @param string &$source template source
+ * @param integer &$mtime template modification timestamp (epoch)
+ */
+ protected abstract function fetch($name, &$source, &$mtime);
+
+ /**
+ * Fetch template's modification timestamp from data source
+ *
+ * {@internal implementing this method is optional.
+ * Only implement it if modification times can be accessed faster than loading the complete template source.}}
+ *
+ * @param string $name template name
+ * @return integer|boolean timestamp (epoch) the template was modified, or false if not found
+ */
+ protected function fetchTimestamp($name)
+ {
+ return null;
+ }
+
+ /**
+ * populate Source Object with meta data from Resource
+ *
+ * @param Smarty_Template_Source $source source object
+ * @param Smarty_Internal_Template $_template template object
+ */
+ public function populate(Smarty_Template_Source $source, Smarty_Internal_Template $_template=null)
+ {
+ $source->filepath = strtolower($source->type . ':' . $source->name);
+ $source->uid = sha1($source->type . ':' . $source->name);
+
+ $mtime = $this->fetchTimestamp($source->name);
+ if ($mtime !== null) {
+ $source->timestamp = $mtime;
+ } else {
+ $this->fetch($source->name, $content, $timestamp);
+ $source->timestamp = isset($timestamp) ? $timestamp : false;
+ if( isset($content) )
+ $source->content = $content;
+ }
+ $source->exists = !!$source->timestamp;
+ }
+
+ /**
+ * Load template's source into current template object
+ *
+ * @param Smarty_Template_Source $source source object
+ * @return string template source
+ * @throws SmartyException if source cannot be loaded
+ */
+ public function getContent(Smarty_Template_Source $source)
+ {
+ $this->fetch($source->name, $content, $timestamp);
+ if (isset($content)) {
+ return $content;
+ }
+
+ throw new SmartyException("Unable to read template {$source->type} '{$source->name}'");
+ }
+
+ /**
+ * Determine basename for compiled filename
+ *
+ * @param Smarty_Template_Source $source source object
+ * @return string resource's basename
+ */
+ protected function getBasename(Smarty_Template_Source $source)
+ {
+ return basename($source->name);
+ }
+
+}
+
+?>
\ No newline at end of file
diff --git a/gosa-core/include/smarty/sysplugins/smarty_resource_recompiled.php b/gosa-core/include/smarty/sysplugins/smarty_resource_recompiled.php
--- /dev/null
@@ -0,0 +1,36 @@
+<?php
+/**
+ * Smarty Resource Plugin
+ *
+ * @package Smarty
+ * @subpackage TemplateResources
+ * @author Rodney Rehm
+ */
+
+/**
+ * Smarty Resource Plugin
+ *
+ * Base implementation for resource plugins that don't compile cache
+ *
+ * @package Smarty
+ * @subpackage TemplateResources
+ */
+abstract class Smarty_Resource_Recompiled extends Smarty_Resource {
+
+ /**
+ * populate Compiled Object with compiled filepath
+ *
+ * @param Smarty_Template_Compiled $compiled compiled object
+ * @param Smarty_Internal_Template $_template template object
+ * @return void
+ */
+ public function populateCompiledFilepath(Smarty_Template_Compiled $compiled, Smarty_Internal_Template $_template)
+ {
+ $compiled->filepath = false;
+ $compiled->timestamp = false;
+ $compiled->exists = false;
+ }
+
+}
+
+?>
\ No newline at end of file
diff --git a/gosa-core/include/smarty/sysplugins/smarty_resource_uncompiled.php b/gosa-core/include/smarty/sysplugins/smarty_resource_uncompiled.php
--- /dev/null
@@ -0,0 +1,44 @@
+<?php
+/**
+ * Smarty Resource Plugin
+ *
+ * @package Smarty
+ * @subpackage TemplateResources
+ * @author Rodney Rehm
+ */
+
+/**
+ * Smarty Resource Plugin
+ *
+ * Base implementation for resource plugins that don't use the compiler
+ *
+ * @package Smarty
+ * @subpackage TemplateResources
+ */
+abstract class Smarty_Resource_Uncompiled extends Smarty_Resource {
+
+ /**
+ * Render and output the template (without using the compiler)
+ *
+ * @param Smarty_Template_Source $source source object
+ * @param Smarty_Internal_Template $_template template object
+ * @throws SmartyException on failure
+ */
+ public abstract function renderUncompiled(Smarty_Template_Source $source, Smarty_Internal_Template $_template);
+
+ /**
+ * populate compiled object with compiled filepath
+ *
+ * @param Smarty_Template_Compiled $compiled compiled object
+ * @param Smarty_Internal_Template $_template template object (is ignored)
+ */
+ public function populateCompiledFilepath(Smarty_Template_Compiled $compiled, Smarty_Internal_Template $_template)
+ {
+ $compiled->filepath = false;
+ $compiled->timestamp = false;
+ $compiled->exists = false;
+ }
+
+}
+
+?>
\ No newline at end of file
diff --git a/gosa-core/include/smarty/sysplugins/smarty_security.php b/gosa-core/include/smarty/sysplugins/smarty_security.php
index cd066fb4e85a569728a3f9df10f6cff1b1e08343..3d4f3189c33674fb1a6949511649b20d71f98d3b 100644 (file)
<?php
/**
* Smarty plugin
- *
+ *
* @package Smarty
* @subpackage Security
- * @author Uwe Tews
- */
+ * @author Uwe Tews
+ */
+
+/*
+ * FIXME: Smarty_Security API
+ * - getter and setter instead of public properties would allow cultivating an internal cache properly
+ * - current implementation of isTrustedResourceDir() assumes that Smarty::$template_dir and Smarty::$config_dir are immutable
+ * the cache is killed every time either of the variables change. That means that two distinct Smarty objects with differing
+ * $template_dir or $config_dir should NOT share the same Smarty_Security instance,
+ * as this would lead to (severe) performance penalty! how should this be handled?
+ */
/**
* This class does contain the security settings
*/
class Smarty_Security {
+
/**
* This determines how Smarty handles "<?php ... ?>" tags in templates.
* possible values:
* <li>Smarty::PHP_REMOVE -> remove php tags</li>
* <li>Smarty::PHP_ALLOW -> execute php tags</li>
* </ul>
- *
- * @var integer
+ *
+ * @var integer
*/
public $php_handling = Smarty::PHP_PASSTHRU;
-
/**
* This is the list of template directories that are considered secure.
* $template_dir is in this list implicitly.
- *
- * @var array
+ *
+ * @var array
*/
public $secure_dir = array();
-
-
/**
* This is an array of directories where trusted php scripts reside.
* {@link $security} is disabled during their inclusion/execution.
- *
- * @var array
+ *
+ * @var array
*/
public $trusted_dir = array();
-
-
/**
* This is an array of trusted static classes.
*
* If empty access to all static classes is allowed.
* If set to 'none' none is allowed.
- * @var array
+ * @var array
*/
public $static_classes = array();
-
/**
* This is an array of trusted PHP functions.
*
* If empty all functions are allowed.
* To disable all PHP functions set $php_functions = null.
- * @var array
+ * @var array
*/
- public $php_functions = array('isset', 'empty',
- 'count', 'sizeof','in_array', 'is_array','time','nl2br');
-
+ public $php_functions = array(
+ 'isset', 'empty',
+ 'count', 'sizeof',
+ 'in_array', 'is_array',
+ 'time',
+ 'nl2br',
+ );
/**
* This is an array of trusted PHP modifers.
*
* If empty all modifiers are allowed.
* To disable all modifier set $modifiers = null.
- * @var array
+ * @var array
*/
- public $php_modifiers = array('escape','count');
-
+ public $php_modifiers = array(
+ 'escape',
+ 'count'
+ );
+ /**
+ * This is an array of allowed tags.
+ *
+ * If empty no restriction by allowed_tags.
+ * @var array
+ */
+ public $allowed_tags = array();
+ /**
+ * This is an array of disabled tags.
+ *
+ * If empty no restriction by disabled_tags.
+ * @var array
+ */
+ public $disabled_tags = array();
+ /**
+ * This is an array of allowed modifier plugins.
+ *
+ * If empty no restriction by allowed_modifiers.
+ * @var array
+ */
+ public $allowed_modifiers = array();
+ /**
+ * This is an array of disabled modifier plugins.
+ *
+ * If empty no restriction by disabled_modifiers.
+ * @var array
+ */
+ public $disabled_modifiers = array();
/**
* This is an array of trusted streams.
*
* If empty all streams are allowed.
* To disable all streams set $streams = null.
- * @var array
+ * @var array
*/
public $streams = array('file');
/**
* + flag if constants can be accessed from template
+ * @var boolean
*/
public $allow_constants = true;
/**
* + flag if super globals can be accessed from template
+ * @var boolean
*/
public $allow_super_globals = true;
+
/**
- * + flag if the {php} and {include_php} tag can be executed
+ * Cache for $resource_dir lookups
+ * @var array
+ */
+ protected $_resource_dir = null;
+ /**
+ * Cache for $template_dir lookups
+ * @var array
+ */
+ protected $_template_dir = null;
+ /**
+ * Cache for $config_dir lookups
+ * @var array
+ */
+ protected $_config_dir = null;
+ /**
+ * Cache for $secure_dir lookups
+ * @var array
+ */
+ protected $_secure_dir = null;
+ /**
+ * Cache for $php_resource_dir lookups
+ * @var array
+ */
+ protected $_php_resource_dir = null;
+ /**
+ * Cache for $trusted_dir lookups
+ * @var array
+ */
+ protected $_trusted_dir = null;
+
+
+ /**
+ * @param Smarty $smarty
*/
- public $allow_php_tag = false;
-
public function __construct($smarty)
{
- $this->smarty = $smarty;
- }
+ $this->smarty = $smarty;
+ }
+
/**
* Check if PHP function is trusted.
- *
- * @param string $function_name
+ *
+ * @param string $function_name
* @param object $compiler compiler object
* @return boolean true if function is trusted
+ * @throws SmartyCompilerException if php function is not trusted
*/
- function isTrustedPhpFunction($function_name, $compiler)
+ public function isTrustedPhpFunction($function_name, $compiler)
{
if (isset($this->php_functions) && (empty($this->php_functions) || in_array($function_name, $this->php_functions))) {
return true;
- } else {
- $compiler->trigger_template_error ("PHP function '{$function_name}' not allowed by security setting");
- return false;
- }
- }
+ }
+
+ $compiler->trigger_template_error("PHP function '{$function_name}' not allowed by security setting");
+ return false; // should not, but who knows what happens to the compiler in the future?
+ }
/**
* Check if static class is trusted.
- *
- * @param string $class_name
+ *
+ * @param string $class_name
* @param object $compiler compiler object
* @return boolean true if class is trusted
+ * @throws SmartyCompilerException if static class is not trusted
*/
- function isTrustedStaticClass($class_name, $compiler)
+ public function isTrustedStaticClass($class_name, $compiler)
{
if (isset($this->static_classes) && (empty($this->static_classes) || in_array($class_name, $this->static_classes))) {
return true;
- } else {
- $compiler->trigger_template_error ("access to static class '{$class_name}' not allowed by security setting");
- return false;
- }
- }
- /**
- * Check if modifier is trusted.
- *
- * @param string $modifier_name
+ }
+
+ $compiler->trigger_template_error("access to static class '{$class_name}' not allowed by security setting");
+ return false; // should not, but who knows what happens to the compiler in the future?
+ }
+
+ /**
+ * Check if PHP modifier is trusted.
+ *
+ * @param string $modifier_name
* @param object $compiler compiler object
* @return boolean true if modifier is trusted
+ * @throws SmartyCompilerException if modifier is not trusted
*/
- function isTrustedModifier($modifier_name, $compiler)
+ public function isTrustedPhpModifier($modifier_name, $compiler)
{
if (isset($this->php_modifiers) && (empty($this->php_modifiers) || in_array($modifier_name, $this->php_modifiers))) {
return true;
+ }
+
+ $compiler->trigger_template_error("modifier '{$modifier_name}' not allowed by security setting");
+ return false; // should not, but who knows what happens to the compiler in the future?
+ }
+
+ /**
+ * Check if tag is trusted.
+ *
+ * @param string $tag_name
+ * @param object $compiler compiler object
+ * @return boolean true if tag is trusted
+ * @throws SmartyCompilerException if modifier is not trusted
+ */
+ public function isTrustedTag($tag_name, $compiler)
+ {
+ // check for internal always required tags
+ if (in_array($tag_name, array('assign', 'call', 'private_filter', 'private_block_plugin', 'private_function_plugin', 'private_object_block_function',
+ 'private_object_function', 'private_registered_function', 'private_registered_block', 'private_special_variable', 'private_print_expression', 'private_modifier'))) {
+ return true;
+ }
+ // check security settings
+ if (empty($this->allowed_tags)) {
+ if (empty($this->disabled_tags) || !in_array($tag_name, $this->disabled_tags)) {
+ return true;
+ } else {
+ $compiler->trigger_template_error("tag '{$tag_name}' disabled by security setting", $compiler->lex->taglineno);
+ }
+ } else if (in_array($tag_name, $this->allowed_tags) && !in_array($tag_name, $this->disabled_tags)) {
+ return true;
} else {
- $compiler->trigger_template_error ("modifier '{$modifier_name}' not allowed by security setting");
- return false;
- }
- }
+ $compiler->trigger_template_error("tag '{$tag_name}' not allowed by security setting", $compiler->lex->taglineno);
+ }
+ return false; // should not, but who knows what happens to the compiler in the future?
+ }
+
/**
- * Check if stream is trusted.
- *
- * @param string $stream_name
+ * Check if modifier plugin is trusted.
+ *
+ * @param string $modifier_name
* @param object $compiler compiler object
+ * @return boolean true if tag is trusted
+ * @throws SmartyCompilerException if modifier is not trusted
+ */
+ public function isTrustedModifier($modifier_name, $compiler)
+ {
+ // check for internal always allowed modifier
+ if (in_array($modifier_name, array('default'))) {
+ return true;
+ }
+ // check security settings
+ if (empty($this->allowed_modifiers)) {
+ if (empty($this->disabled_modifiers) || !in_array($modifier_name, $this->disabled_modifiers)) {
+ return true;
+ } else {
+ $compiler->trigger_template_error("modifier '{$modifier_name}' disabled by security setting", $compiler->lex->taglineno);
+ }
+ } else if (in_array($modifier_name, $this->allowed_modifiers) && !in_array($modifier_name, $this->disabled_modifiers)) {
+ return true;
+ } else {
+ $compiler->trigger_template_error("modifier '{$modifier_name}' not allowed by security setting", $compiler->lex->taglineno);
+ }
+ return false; // should not, but who knows what happens to the compiler in the future?
+ }
+
+ /**
+ * Check if stream is trusted.
+ *
+ * @param string $stream_name
* @return boolean true if stream is trusted
+ * @throws SmartyException if stream is not trusted
*/
- function isTrustedStream($stream_name)
+ public function isTrustedStream($stream_name)
{
if (isset($this->streams) && (empty($this->streams) || in_array($stream_name, $this->streams))) {
return true;
- } else {
- throw new SmartyException ("stream '{$stream_name}' not allowed by security setting");
- return false;
- }
- }
+ }
+
+ throw new SmartyException("stream '{$stream_name}' not allowed by security setting");
+ }
/**
* Check if directory of file resource is trusted.
- *
- * @param string $filepath
- * @param object $compiler compiler object
+ *
+ * @param string $filepath
* @return boolean true if directory is trusted
+ * @throws SmartyException if directory is not trusted
*/
- function isTrustedResourceDir($filepath)
+ public function isTrustedResourceDir($filepath)
{
- $_rp = realpath($filepath);
- if (isset($this->smarty->template_dir)) {
- foreach ((array)$this->smarty->template_dir as $curr_dir) {
- if (($_cd = realpath($curr_dir)) !== false &&
- strncmp($_rp, $_cd, strlen($_cd)) == 0 &&
- (strlen($_rp) == strlen($_cd) || substr($_rp, strlen($_cd), 1) == DS)) {
- return true;
- }
- }
- }
- if (!empty($this->smarty->security_policy->secure_dir)) {
- foreach ((array)$this->smarty->security_policy->secure_dir as $curr_dir) {
- if (($_cd = realpath($curr_dir)) !== false) {
- if ($_cd == $_rp) {
- return true;
- } elseif (strncmp($_rp, $_cd, strlen($_cd)) == 0 &&
- (strlen($_rp) == strlen($_cd) || substr($_rp, strlen($_cd), 1) == DS)) {
- return true;
- }
- }
- }
- }
-
- throw new SmartyException ("directory '{$_rp}' not allowed by security setting");
- return false;
- }
-
+ $_template = false;
+ $_config = false;
+ $_secure = false;
+
+ $_template_dir = $this->smarty->getTemplateDir();
+ $_config_dir = $this->smarty->getConfigDir();
+
+ // check if index is outdated
+ if ((!$this->_template_dir || $this->_template_dir !== $_template_dir)
+ || (!$this->_config_dir || $this->_config_dir !== $_config_dir)
+ || (!empty($this->secure_dir) && (!$this->_secure_dir || $this->_secure_dir !== $this->secure_dir))
+ ) {
+ $this->_resource_dir = array();
+ $_template = true;
+ $_config = true;
+ $_secure = !empty($this->secure_dir);
+ }
+
+ // rebuild template dir index
+ if ($_template) {
+ $this->_template_dir = $_template_dir;
+ foreach ($_template_dir as $directory) {
+ $directory = realpath($directory);
+ $this->_resource_dir[$directory] = true;
+ }
+ }
+
+ // rebuild config dir index
+ if ($_config) {
+ $this->_config_dir = $_config_dir;
+ foreach ($_config_dir as $directory) {
+ $directory = realpath($directory);
+ $this->_resource_dir[$directory] = true;
+ }
+ }
+
+ // rebuild secure dir index
+ if ($_secure) {
+ $this->_secure_dir = $this->secure_dir;
+ foreach ((array) $this->secure_dir as $directory) {
+ $directory = realpath($directory);
+ $this->_resource_dir[$directory] = true;
+ }
+ }
+
+ $_filepath = realpath($filepath);
+ $directory = dirname($_filepath);
+ $_directory = array();
+ while (true) {
+ // remember the directory to add it to _resource_dir in case we're successful
+ $_directory[] = $directory;
+ // test if the directory is trusted
+ if (isset($this->_resource_dir[$directory])) {
+ // merge sub directories of current $directory into _resource_dir to speed up subsequent lookups
+ $this->_resource_dir = array_merge($this->_resource_dir, $_directory);
+ return true;
+ }
+ // abort if we've reached root
+ if (($pos = strrpos($directory, DS)) === false || !isset($directory[1])) {
+ break;
+ }
+ // bubble up one level
+ $directory = substr($directory, 0, $pos);
+ }
+
+ // give up
+ throw new SmartyException("directory '{$_filepath}' not allowed by security setting");
+ }
+
/**
* Check if directory of file resource is trusted.
- *
- * @param string $filepath
- * @param object $compiler compiler object
+ *
+ * @param string $filepath
* @return boolean true if directory is trusted
+ * @throws SmartyException if PHP directory is not trusted
*/
- function isTrustedPHPDir($filepath)
+ public function isTrustedPHPDir($filepath)
{
- $_rp = realpath($filepath);
- if (!empty($this->trusted_dir)) {
- foreach ((array)$this->trusted_dir as $curr_dir) {
- if (($_cd = realpath($curr_dir)) !== false) {
- if ($_cd == $_rp) {
- return true;
- } elseif (strncmp($_rp, $_cd, strlen($_cd)) == 0 &&
- substr($_rp, strlen($_cd), 1) == DS) {
- return true;
- }
- }
- }
- }
-
- throw new SmartyException ("directory '{$_rp}' not allowed by security setting");
- return false;
- }
-}
+ if (empty($this->trusted_dir)) {
+ throw new SmartyException("directory '{$filepath}' not allowed by security setting (no trusted_dir specified)");
+ }
+
+ // check if index is outdated
+ if (!$this->_trusted_dir || $this->_trusted_dir !== $this->trusted_dir) {
+ $this->_php_resource_dir = array();
+
+ $this->_trusted_dir = $this->trusted_dir;
+ foreach ((array) $this->trusted_dir as $directory) {
+ $directory = realpath($directory);
+ $this->_php_resource_dir[$directory] = true;
+ }
+ }
+
+ $_filepath = realpath($filepath);
+ $directory = dirname($_filepath);
+ $_directory = array();
+ while (true) {
+ // remember the directory to add it to _resource_dir in case we're successful
+ $_directory[] = $directory;
+ // test if the directory is trusted
+ if (isset($this->_php_resource_dir[$directory])) {
+ // merge sub directories of current $directory into _resource_dir to speed up subsequent lookups
+ $this->_php_resource_dir = array_merge($this->_php_resource_dir, $_directory);
+ return true;
+ }
+ // abort if we've reached root
+ if (($pos = strrpos($directory, DS)) === false || !isset($directory[2])) {
+ break;
+ }
+ // bubble up one level
+ $directory = substr($directory, 0, $pos);
+ }
+
+ throw new SmartyException("directory '{$_filepath}' not allowed by security setting");
+ }
+
+}
?>
\ No newline at end of file