PageRenderTime 58ms CodeModel.GetById 18ms RepoModel.GetById 0ms app.codeStats 0ms

/vtiger6/libraries/Smarty/libs/sysplugins/smarty_internal_template.php

https://bitbucket.org/thomashii/vtigercrm-6-for-postgresql
PHP | 684 lines | 420 code | 31 blank | 233 comment | 125 complexity | 8d40e719ebb826950bb73a49f1702c65 MD5 | raw file
Possible License(s): Apache-2.0, LGPL-3.0, LGPL-2.1, GPL-2.0, GPL-3.0
  1. <?php
  2. /**
  3. * Smarty Internal Plugin Template
  4. *
  5. * This file contains the Smarty template engine
  6. *
  7. * @package Smarty
  8. * @subpackage Template
  9. * @author Uwe Tews
  10. */
  11. /**
  12. * Main class with template data structures and methods
  13. *
  14. * @package Smarty
  15. * @subpackage Template
  16. *
  17. * @property Smarty_Template_Source $source
  18. * @property Smarty_Template_Compiled $compiled
  19. * @property Smarty_Template_Cached $cached
  20. */
  21. class Smarty_Internal_Template extends Smarty_Internal_TemplateBase {
  22. /**
  23. * cache_id
  24. * @var string
  25. */
  26. public $cache_id = null;
  27. /**
  28. * $compile_id
  29. * @var string
  30. */
  31. public $compile_id = null;
  32. /**
  33. * caching enabled
  34. * @var boolean
  35. */
  36. public $caching = null;
  37. /**
  38. * cache lifetime in seconds
  39. * @var integer
  40. */
  41. public $cache_lifetime = null;
  42. /**
  43. * Template resource
  44. * @var string
  45. */
  46. public $template_resource = null;
  47. /**
  48. * flag if compiled template is invalid and must be (re)compiled
  49. * @var bool
  50. */
  51. public $mustCompile = null;
  52. /**
  53. * flag if template does contain nocache code sections
  54. * @var bool
  55. */
  56. public $has_nocache_code = false;
  57. /**
  58. * special compiled and cached template properties
  59. * @var array
  60. */
  61. public $properties = array('file_dependency' => array(),
  62. 'nocache_hash' => '',
  63. 'function' => array());
  64. /**
  65. * required plugins
  66. * @var array
  67. */
  68. public $required_plugins = array('compiled' => array(), 'nocache' => array());
  69. /**
  70. * Global smarty instance
  71. * @var Smarty
  72. */
  73. public $smarty = null;
  74. /**
  75. * blocks for template inheritance
  76. * @var array
  77. */
  78. public $block_data = array();
  79. /**
  80. * variable filters
  81. * @var array
  82. */
  83. public $variable_filters = array();
  84. /**
  85. * optional log of tag/attributes
  86. * @var array
  87. */
  88. public $used_tags = array();
  89. /**
  90. * internal flag to allow relative path in child template blocks
  91. * @var bool
  92. */
  93. public $allow_relative_path = false;
  94. /**
  95. * internal capture runtime stack
  96. * @var array
  97. */
  98. public $_capture_stack = array(0 => array());
  99. /**
  100. * Create template data object
  101. *
  102. * Some of the global Smarty settings copied to template scope
  103. * It load the required template resources and cacher plugins
  104. *
  105. * @param string $template_resource template resource string
  106. * @param Smarty $smarty Smarty instance
  107. * @param Smarty_Internal_Template $_parent back pointer to parent object with variables or null
  108. * @param mixed $_cache_id cache id or null
  109. * @param mixed $_compile_id compile id or null
  110. * @param bool $_caching use caching?
  111. * @param int $_cache_lifetime cache life-time in seconds
  112. */
  113. public function __construct($template_resource, $smarty, $_parent = null, $_cache_id = null, $_compile_id = null, $_caching = null, $_cache_lifetime = null)
  114. {
  115. $this->smarty = &$smarty;
  116. // Smarty parameter
  117. $this->cache_id = $_cache_id === null ? $this->smarty->cache_id : $_cache_id;
  118. $this->compile_id = $_compile_id === null ? $this->smarty->compile_id : $_compile_id;
  119. $this->caching = $_caching === null ? $this->smarty->caching : $_caching;
  120. if ($this->caching === true)
  121. $this->caching = Smarty::CACHING_LIFETIME_CURRENT;
  122. $this->cache_lifetime = $_cache_lifetime === null ? $this->smarty->cache_lifetime : $_cache_lifetime;
  123. $this->parent = $_parent;
  124. // Template resource
  125. $this->template_resource = $template_resource;
  126. // copy block data of template inheritance
  127. if ($this->parent instanceof Smarty_Internal_Template) {
  128. $this->block_data = $this->parent->block_data;
  129. }
  130. }
  131. /**
  132. * Returns if the current template must be compiled by the Smarty compiler
  133. *
  134. * It does compare the timestamps of template source and the compiled templates and checks the force compile configuration
  135. *
  136. * @return boolean true if the template must be compiled
  137. */
  138. public function mustCompile()
  139. {
  140. if (!$this->source->exists) {
  141. if ($this->parent instanceof Smarty_Internal_Template) {
  142. $parent_resource = " in '$this->parent->template_resource}'";
  143. } else {
  144. $parent_resource = '';
  145. }
  146. throw new SmartyException("Unable to load template {$this->source->type} '{$this->source->name}'{$parent_resource}");
  147. }
  148. if ($this->mustCompile === null) {
  149. $this->mustCompile = (!$this->source->uncompiled && ($this->smarty->force_compile || $this->source->recompiled || $this->compiled->timestamp === false ||
  150. ($this->smarty->compile_check && $this->compiled->timestamp < $this->source->timestamp)));
  151. }
  152. return $this->mustCompile;
  153. }
  154. /**
  155. * Compiles the template
  156. *
  157. * If the template is not evaluated the compiled template is saved on disk
  158. */
  159. public function compileTemplateSource()
  160. {
  161. if (!$this->source->recompiled) {
  162. $this->properties['file_dependency'] = array();
  163. if ($this->source->components) {
  164. // uses real resource for file dependency
  165. $source = end($this->source->components);
  166. $this->properties['file_dependency'][$this->source->uid] = array($this->source->filepath, $this->source->timestamp, $source->type);
  167. } else {
  168. $this->properties['file_dependency'][$this->source->uid] = array($this->source->filepath, $this->source->timestamp, $this->source->type);
  169. }
  170. }
  171. if ($this->smarty->debugging) {
  172. Smarty_Internal_Debug::start_compile($this);
  173. }
  174. // compile locking
  175. if ($this->smarty->compile_locking && !$this->source->recompiled) {
  176. if ($saved_timestamp = $this->compiled->timestamp) {
  177. touch($this->compiled->filepath);
  178. }
  179. }
  180. // call compiler
  181. try {
  182. $code = $this->compiler->compileTemplate($this);
  183. } catch (Exception $e) {
  184. // restore old timestamp in case of error
  185. if ($this->smarty->compile_locking && !$this->source->recompiled && $saved_timestamp) {
  186. touch($this->compiled->filepath, $saved_timestamp);
  187. }
  188. throw $e;
  189. }
  190. // compiling succeded
  191. if (!$this->source->recompiled && $this->compiler->write_compiled_code) {
  192. // write compiled template
  193. $_filepath = $this->compiled->filepath;
  194. if ($_filepath === false)
  195. throw new SmartyException('getCompiledFilepath() did not return a destination to save the compiled template to');
  196. Smarty_Internal_Write_File::writeFile($_filepath, $code, $this->smarty);
  197. $this->compiled->exists = true;
  198. $this->compiled->isCompiled = true;
  199. }
  200. if ($this->smarty->debugging) {
  201. Smarty_Internal_Debug::end_compile($this);
  202. }
  203. // release compiler object to free memory
  204. unset($this->compiler);
  205. }
  206. /**
  207. * Writes the cached template output
  208. *
  209. * @return bool
  210. */
  211. public function writeCachedContent($content)
  212. {
  213. if ($this->source->recompiled || !($this->caching == Smarty::CACHING_LIFETIME_CURRENT || $this->caching == Smarty::CACHING_LIFETIME_SAVED)) {
  214. // don't write cache file
  215. return false;
  216. }
  217. $this->properties['cache_lifetime'] = $this->cache_lifetime;
  218. $this->properties['unifunc'] = 'content_' . uniqid('', false);
  219. $content = $this->createTemplateCodeFrame($content, true);
  220. $_smarty_tpl = $this;
  221. eval("?>" . $content);
  222. $this->cached->valid = true;
  223. $this->cached->processed = true;
  224. return $this->cached->write($this, $content);
  225. }
  226. /**
  227. * Template code runtime function to get subtemplate content
  228. *
  229. * @param string $template the resource handle of the template file
  230. * @param mixed $cache_id cache id to be used with this template
  231. * @param mixed $compile_id compile id to be used with this template
  232. * @param integer $caching cache mode
  233. * @param integer $cache_lifetime life time of cache data
  234. * @param array $vars optional variables to assign
  235. * @param int $parent_scope scope in which {include} should execute
  236. * @returns string template content
  237. */
  238. public function getSubTemplate($template, $cache_id, $compile_id, $caching, $cache_lifetime, $data, $parent_scope)
  239. {
  240. // already in template cache?
  241. if ($this->smarty->allow_ambiguous_resources) {
  242. $_templateId = Smarty_Resource::getUniqueTemplateName($this->smarty, $template) . $cache_id . $compile_id;
  243. } else {
  244. $_templateId = $this->smarty->joined_template_dir . '#' . $template . $cache_id . $compile_id;
  245. }
  246. if (isset($_templateId[150])) {
  247. $_templateId = sha1($_templateId);
  248. }
  249. if (isset($this->smarty->template_objects[$_templateId])) {
  250. // clone cached template object because of possible recursive call
  251. $tpl = clone $this->smarty->template_objects[$_templateId];
  252. $tpl->parent = $this;
  253. $tpl->caching = $caching;
  254. $tpl->cache_lifetime = $cache_lifetime;
  255. } else {
  256. $tpl = new $this->smarty->template_class($template, $this->smarty, $this, $cache_id, $compile_id, $caching, $cache_lifetime);
  257. }
  258. // get variables from calling scope
  259. if ($parent_scope == Smarty::SCOPE_LOCAL) {
  260. $tpl->tpl_vars = $this->tpl_vars;
  261. } elseif ($parent_scope == Smarty::SCOPE_PARENT) {
  262. $tpl->tpl_vars = &$this->tpl_vars;
  263. } elseif ($parent_scope == Smarty::SCOPE_GLOBAL) {
  264. $tpl->tpl_vars = &Smarty::$global_tpl_vars;
  265. } elseif (($scope_ptr = $this->getScopePointer($parent_scope)) == null) {
  266. $tpl->tpl_vars = &$this->tpl_vars;
  267. } else {
  268. $tpl->tpl_vars = &$scope_ptr->tpl_vars;
  269. }
  270. $tpl->config_vars = $this->config_vars;
  271. if (!empty($data)) {
  272. // set up variable values
  273. foreach ($data as $_key => $_val) {
  274. $tpl->tpl_vars[$_key] = new Smarty_variable($_val);
  275. }
  276. }
  277. return $tpl->fetch(null, null, null, null, false, false, true);
  278. }
  279. /**
  280. * Template code runtime function to set up an inline subtemplate
  281. *
  282. * @param string $template the resource handle of the template file
  283. * @param mixed $cache_id cache id to be used with this template
  284. * @param mixed $compile_id compile id to be used with this template
  285. * @param integer $caching cache mode
  286. * @param integer $cache_lifetime life time of cache data
  287. * @param array $vars optional variables to assign
  288. * @param int $parent_scope scope in which {include} should execute
  289. * @param string $hash nocache hash code
  290. * @returns string template content
  291. */
  292. public function setupInlineSubTemplate($template, $cache_id, $compile_id, $caching, $cache_lifetime, $data, $parent_scope, $hash)
  293. {
  294. $tpl = new $this->smarty->template_class($template, $this->smarty, $this, $cache_id, $compile_id, $caching, $cache_lifetime);
  295. $tpl->properties['nocache_hash'] = $hash;
  296. // get variables from calling scope
  297. if ($parent_scope == Smarty::SCOPE_LOCAL ) {
  298. $tpl->tpl_vars = $this->tpl_vars;
  299. } elseif ($parent_scope == Smarty::SCOPE_PARENT) {
  300. $tpl->tpl_vars = &$this->tpl_vars;
  301. } elseif ($parent_scope == Smarty::SCOPE_GLOBAL) {
  302. $tpl->tpl_vars = &Smarty::$global_tpl_vars;
  303. } elseif (($scope_ptr = $this->getScopePointer($parent_scope)) == null) {
  304. $tpl->tpl_vars = &$this->tpl_vars;
  305. } else {
  306. $tpl->tpl_vars = &$scope_ptr->tpl_vars;
  307. }
  308. $tpl->config_vars = $this->config_vars;
  309. if (!empty($data)) {
  310. // set up variable values
  311. foreach ($data as $_key => $_val) {
  312. $tpl->tpl_vars[$_key] = new Smarty_variable($_val);
  313. }
  314. }
  315. return $tpl;
  316. }
  317. /**
  318. * Create code frame for compiled and cached templates
  319. *
  320. * @param string $content optional template content
  321. * @param bool $cache flag for cache file
  322. * @return string
  323. */
  324. public function createTemplateCodeFrame($content = '', $cache = false)
  325. {
  326. $plugins_string = '';
  327. // include code for plugins
  328. if (!$cache) {
  329. if (!empty($this->required_plugins['compiled'])) {
  330. $plugins_string = '<?php ';
  331. foreach ($this->required_plugins['compiled'] as $tmp) {
  332. foreach ($tmp as $data) {
  333. $file = addslashes($data['file']);
  334. $plugins_string .= "if (!is_callable('{$data['function']}')) include '{$file}';\n";
  335. }
  336. }
  337. $plugins_string .= '?>';
  338. }
  339. if (!empty($this->required_plugins['nocache'])) {
  340. $this->has_nocache_code = true;
  341. $plugins_string .= "<?php echo '/*%%SmartyNocache:{$this->properties['nocache_hash']}%%*/<?php \$_smarty = \$_smarty_tpl->smarty; ";
  342. foreach ($this->required_plugins['nocache'] as $tmp) {
  343. foreach ($tmp as $data) {
  344. $file = addslashes($data['file']);
  345. $plugins_string .= addslashes("if (!is_callable('{$data['function']}')) include '{$file}';\n");
  346. }
  347. }
  348. $plugins_string .= "?>/*/%%SmartyNocache:{$this->properties['nocache_hash']}%%*/';?>\n";
  349. }
  350. }
  351. // build property code
  352. $this->properties['has_nocache_code'] = $this->has_nocache_code;
  353. $output = '';
  354. if (!$this->source->recompiled) {
  355. $output = "<?php /*%%SmartyHeaderCode:{$this->properties['nocache_hash']}%%*/";
  356. if ($this->smarty->direct_access_security) {
  357. $output .= "if(!defined('SMARTY_DIR')) exit('no direct access allowed');\n";
  358. }
  359. }
  360. if ($cache) {
  361. // remove compiled code of{function} definition
  362. unset($this->properties['function']);
  363. if (!empty($this->smarty->template_functions)) {
  364. // copy code of {function} tags called in nocache mode
  365. foreach ($this->smarty->template_functions as $name => $function_data) {
  366. if (isset($function_data['called_nocache'])) {
  367. foreach ($function_data['called_functions'] as $func_name) {
  368. $this->smarty->template_functions[$func_name]['called_nocache'] = true;
  369. }
  370. }
  371. }
  372. foreach ($this->smarty->template_functions as $name => $function_data) {
  373. if (isset($function_data['called_nocache'])) {
  374. unset($function_data['called_nocache'], $function_data['called_functions'], $this->smarty->template_functions[$name]['called_nocache']);
  375. $this->properties['function'][$name] = $function_data;
  376. }
  377. }
  378. }
  379. }
  380. $this->properties['version'] = Smarty::SMARTY_VERSION;
  381. if (!isset($this->properties['unifunc'])) {
  382. $this->properties['unifunc'] = 'content_' . uniqid('', false);
  383. }
  384. if (!$this->source->recompiled) {
  385. $output .= "\$_valid = \$_smarty_tpl->decodeProperties(" . var_export($this->properties, true) . ',' . ($cache ? 'true' : 'false') . "); /*/%%SmartyHeaderCode%%*/?>\n";
  386. }
  387. if (!$this->source->recompiled) {
  388. $output .= '<?php if ($_valid && !is_callable(\'' . $this->properties['unifunc'] . '\')) {function ' . $this->properties['unifunc'] . '($_smarty_tpl) {?>';
  389. }
  390. $output .= $plugins_string;
  391. $output .= $content;
  392. if (!$this->source->recompiled) {
  393. $output .= '<?php }} ?>';
  394. }
  395. return $output;
  396. }
  397. /**
  398. * This function is executed automatically when a compiled or cached template file is included
  399. *
  400. * - Decode saved properties from compiled template and cache files
  401. * - Check if compiled or cache file is valid
  402. *
  403. * @param array $properties special template properties
  404. * @param bool $cache flag if called from cache file
  405. * @return bool flag if compiled or cache file is valid
  406. */
  407. public function decodeProperties($properties, $cache = false)
  408. {
  409. $this->has_nocache_code = $properties['has_nocache_code'];
  410. $this->properties['nocache_hash'] = $properties['nocache_hash'];
  411. if (isset($properties['cache_lifetime'])) {
  412. $this->properties['cache_lifetime'] = $properties['cache_lifetime'];
  413. }
  414. if (isset($properties['file_dependency'])) {
  415. $this->properties['file_dependency'] = array_merge($this->properties['file_dependency'], $properties['file_dependency']);
  416. }
  417. if (!empty($properties['function'])) {
  418. $this->properties['function'] = array_merge($this->properties['function'], $properties['function']);
  419. $this->smarty->template_functions = array_merge($this->smarty->template_functions, $properties['function']);
  420. }
  421. $this->properties['version'] = (isset($properties['version'])) ? $properties['version'] : '';
  422. $this->properties['unifunc'] = $properties['unifunc'];
  423. // check file dependencies at compiled code
  424. $is_valid = true;
  425. if ($this->properties['version'] != Smarty::SMARTY_VERSION) {
  426. $is_valid = false;
  427. } 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'])) {
  428. foreach ($this->properties['file_dependency'] as $_file_to_check) {
  429. if ($_file_to_check[2] == 'file' || $_file_to_check[2] == 'php') {
  430. if ($this->source->filepath == $_file_to_check[0] && isset($this->source->timestamp)) {
  431. // do not recheck current template
  432. $mtime = $this->source->timestamp;
  433. } else {
  434. // file and php types can be checked without loading the respective resource handlers
  435. $mtime = filemtime($_file_to_check[0]);
  436. }
  437. } elseif ($_file_to_check[2] == 'string') {
  438. continue;
  439. } else {
  440. $source = Smarty_Resource::source(null, $this->smarty, $_file_to_check[0]);
  441. $mtime = $source->timestamp;
  442. }
  443. if ($mtime > $_file_to_check[1]) {
  444. $is_valid = false;
  445. break;
  446. }
  447. }
  448. }
  449. if ($cache) {
  450. $this->cached->valid = $is_valid;
  451. } else {
  452. $this->mustCompile = !$is_valid;
  453. }
  454. // store data in reusable Smarty_Template_Compiled
  455. if (!$cache) {
  456. $this->compiled->_properties = $properties;
  457. }
  458. return $is_valid;
  459. }
  460. /**
  461. * Template code runtime function to create a local Smarty variable for array assignments
  462. *
  463. * @param string $tpl_var tempate variable name
  464. * @param bool $nocache cache mode of variable
  465. * @param int $scope scope of variable
  466. */
  467. public function createLocalArrayVariable($tpl_var, $nocache = false, $scope = Smarty::SCOPE_LOCAL)
  468. {
  469. if (!isset($this->tpl_vars[$tpl_var])) {
  470. $this->tpl_vars[$tpl_var] = new Smarty_variable(array(), $nocache, $scope);
  471. } else {
  472. $this->tpl_vars[$tpl_var] = clone $this->tpl_vars[$tpl_var];
  473. if ($scope != Smarty::SCOPE_LOCAL) {
  474. $this->tpl_vars[$tpl_var]->scope = $scope;
  475. }
  476. if (!(is_array($this->tpl_vars[$tpl_var]->value) || $this->tpl_vars[$tpl_var]->value instanceof ArrayAccess)) {
  477. settype($this->tpl_vars[$tpl_var]->value, 'array');
  478. }
  479. }
  480. }
  481. /**
  482. * Template code runtime function to get pointer to template variable array of requested scope
  483. *
  484. * @param int $scope requested variable scope
  485. * @return array array of template variables
  486. */
  487. public function &getScope($scope)
  488. {
  489. if ($scope == Smarty::SCOPE_PARENT && !empty($this->parent)) {
  490. return $this->parent->tpl_vars;
  491. } elseif ($scope == Smarty::SCOPE_ROOT && !empty($this->parent)) {
  492. $ptr = $this->parent;
  493. while (!empty($ptr->parent)) {
  494. $ptr = $ptr->parent;
  495. }
  496. return $ptr->tpl_vars;
  497. } elseif ($scope == Smarty::SCOPE_GLOBAL) {
  498. return Smarty::$global_tpl_vars;
  499. }
  500. $null = null;
  501. return $null;
  502. }
  503. /**
  504. * Get parent or root of template parent chain
  505. *
  506. * @param int $scope pqrent or root scope
  507. * @return mixed object
  508. */
  509. public function getScopePointer($scope)
  510. {
  511. if ($scope == Smarty::SCOPE_PARENT && !empty($this->parent)) {
  512. return $this->parent;
  513. } elseif ($scope == Smarty::SCOPE_ROOT && !empty($this->parent)) {
  514. $ptr = $this->parent;
  515. while (!empty($ptr->parent)) {
  516. $ptr = $ptr->parent;
  517. }
  518. return $ptr;
  519. }
  520. return null;
  521. }
  522. /**
  523. * [util function] counts an array, arrayaccess/traversable or PDOStatement object
  524. *
  525. * @param mixed $value
  526. * @return int the count for arrays and objects that implement countable, 1 for other objects that don't, and 0 for empty elements
  527. */
  528. public function _count($value)
  529. {
  530. if (is_array($value) === true || $value instanceof Countable) {
  531. return count($value);
  532. } elseif ($value instanceof IteratorAggregate) {
  533. // Note: getIterator() returns a Traversable, not an Iterator
  534. // thus rewind() and valid() methods may not be present
  535. return iterator_count($value->getIterator());
  536. } elseif ($value instanceof Iterator) {
  537. return iterator_count($value);
  538. } elseif ($value instanceof PDOStatement) {
  539. return $value->rowCount();
  540. } elseif ($value instanceof Traversable) {
  541. return iterator_count($value);
  542. } elseif ($value instanceof ArrayAccess) {
  543. if ($value->offsetExists(0)) {
  544. return 1;
  545. }
  546. } elseif (is_object($value)) {
  547. return count($value);
  548. }
  549. return 0;
  550. }
  551. /**
  552. * runtime error not matching capture tags
  553. *
  554. */
  555. public function capture_error()
  556. {
  557. throw new SmartyException("Not matching {capture} open/close in \"{$this->template_resource}\"");
  558. }
  559. /**
  560. * Empty cache for this template
  561. *
  562. * @param integer $exp_time expiration time
  563. * @return integer number of cache files deleted
  564. */
  565. public function clearCache($exp_time=null)
  566. {
  567. Smarty_CacheResource::invalidLoadedCache($this->smarty);
  568. return $this->cached->handler->clear($this->smarty, $this->template_name, $this->cache_id, $this->compile_id, $exp_time);
  569. }
  570. /**
  571. * set Smarty property in template context
  572. *
  573. * @param string $property_name property name
  574. * @param mixed $value value
  575. */
  576. public function __set($property_name, $value)
  577. {
  578. switch ($property_name) {
  579. case 'source':
  580. case 'compiled':
  581. case 'cached':
  582. case 'compiler':
  583. $this->$property_name = $value;
  584. return;
  585. // FIXME: routing of template -> smarty attributes
  586. default:
  587. if (property_exists($this->smarty, $property_name)) {
  588. $this->smarty->$property_name = $value;
  589. return;
  590. }
  591. }
  592. throw new SmartyException("invalid template property '$property_name'.");
  593. }
  594. /**
  595. * get Smarty property in template context
  596. *
  597. * @param string $property_name property name
  598. */
  599. public function __get($property_name)
  600. {
  601. switch ($property_name) {
  602. case 'source':
  603. if (empty($this->template_resource)) {
  604. throw new SmartyException("Unable to parse resource name \"{$this->template_resource}\"");
  605. }
  606. $this->source = Smarty_Resource::source($this);
  607. // cache template object under a unique ID
  608. // do not cache eval resources
  609. if ($this->source->type != 'eval') {
  610. if ($this->smarty->allow_ambiguous_resources) {
  611. $_templateId = $this->source->unique_resource . $this->cache_id . $this->compile_id;
  612. } else {
  613. $_templateId = $this->smarty->joined_template_dir . '#' . $this->template_resource . $this->cache_id . $this->compile_id;
  614. }
  615. if (isset($_templateId[150])) {
  616. $_templateId = sha1($_templateId);
  617. }
  618. $this->smarty->template_objects[$_templateId] = $this;
  619. }
  620. return $this->source;
  621. case 'compiled':
  622. $this->compiled = $this->source->getCompiled($this);
  623. return $this->compiled;
  624. case 'cached':
  625. if (!class_exists('Smarty_Template_Cached')) {
  626. include SMARTY_SYSPLUGINS_DIR . 'smarty_cacheresource.php';
  627. }
  628. $this->cached = new Smarty_Template_Cached($this);
  629. return $this->cached;
  630. case 'compiler':
  631. $this->smarty->loadPlugin($this->source->compiler_class);
  632. $this->compiler = new $this->source->compiler_class($this->source->template_lexer_class, $this->source->template_parser_class, $this->smarty);
  633. return $this->compiler;
  634. // FIXME: routing of template -> smarty attributes
  635. default:
  636. if (property_exists($this->smarty, $property_name)) {
  637. return $this->smarty->$property_name;
  638. }
  639. }
  640. throw new SmartyException("template property '$property_name' does not exist.");
  641. }
  642. /**
  643. * Template data object destrutor
  644. *
  645. */
  646. public function __destruct()
  647. {
  648. if ($this->smarty->cache_locking && isset($this->cached) && $this->cached->is_locked) {
  649. $this->cached->handler->releaseLock($this->smarty, $this->cached);
  650. }
  651. }
  652. }
  653. ?>