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

/_kemiaeve/core/smarty/sysplugins/smarty_internal_compile_private_registered_block.php

http://kemiaeve.googlecode.com/
PHP | 79 lines | 48 code | 2 blank | 29 comment | 15 complexity | 0a316ac30d714b69eccd096d8c13fdff MD5 | raw file
Possible License(s): LGPL-2.1
  1. <?php
  2. /**
  3. * Smarty Internal Plugin Compile Registered Block
  4. *
  5. * Compiles code for the execution of a registered block function
  6. *
  7. * @package Smarty
  8. * @subpackage Compiler
  9. * @author Uwe Tews
  10. */
  11. /**
  12. * Smarty Internal Plugin Compile Registered Block Class
  13. */
  14. class Smarty_Internal_Compile_Private_Registered_Block extends Smarty_Internal_CompileBase {
  15. /**
  16. * Compiles code for the execution of a block function
  17. *
  18. * @param array $args array with attributes from parser
  19. * @param string $tag name of block function
  20. * @param object $compiler compiler object
  21. * @return string compiled code
  22. */
  23. public function compile($args, $compiler, $tag)
  24. {
  25. $this->compiler = $compiler;
  26. if (strlen($tag) < 6 || substr($tag,-5) != 'close') {
  27. // opening tag of block plugin
  28. $this->required_attributes = array();
  29. $this->optional_attributes = array('_any');
  30. // check and get attributes
  31. $_attr = $this->_get_attributes($args);
  32. // convert attributes into parameter array string
  33. $_paramsArray = array();
  34. foreach ($_attr as $_key => $_value) {
  35. if (is_int($_key)) {
  36. $_paramsArray[] = "$_key=>$_value";
  37. } else {
  38. $_paramsArray[] = "'$_key'=>$_value";
  39. }
  40. }
  41. $_params = 'array(' . implode(",", $_paramsArray) . ')';
  42. $this->_open_tag($tag, array($_params, $this->compiler->nocache));
  43. // maybe nocache because of nocache variables or nocache plugin
  44. $this->compiler->nocache = !$compiler->smarty->registered_plugins['block'][$tag][1] | $this->compiler->nocache | $this->compiler->tag_nocache;
  45. $function = $compiler->smarty->registered_plugins['block'][$tag][0];
  46. // compile code
  47. if (!is_array($function)) {
  48. $output = "<?php \$_smarty_tpl->smarty->_tag_stack[] = array('{$tag}', {$_params}); \$_block_repeat=true; {$function}({$_params}, null, \$_smarty_tpl->smarty, \$_block_repeat, \$_smarty_tpl);while (\$_block_repeat) { ob_start();?>";
  49. } else if (is_object($function[0])) {
  50. $output = "<?php \$_smarty_tpl->smarty->_tag_stack[] = array('{$tag}', {$_params}); \$_block_repeat=true; call_user_func_array(\$_smarty_tpl->smarty->registered_plugins['block']['{$tag}'][0],array({$_params}, null, \$_smarty_tpl->smarty, &\$_block_repeat, \$_smarty_tpl));while (\$_block_repeat) { ob_start();?>";
  51. } else {
  52. $output = "<?php \$_smarty_tpl->smarty->_tag_stack[] = array('{$tag}', {$_params}); \$_block_repeat=true; call_user_func_array(array('{$function[0]}','{$function[1]}'),array({$_params}, null, \$_smarty_tpl->smarty, &\$_block_repeat, \$_smarty_tpl));while (\$_block_repeat) { ob_start();?>";
  53. }
  54. } else {
  55. // must endblock be nocache?
  56. if ($this->compiler->nocache) {
  57. $this->compiler->tag_nocache = true;
  58. }
  59. $base_tag = substr($tag, 0, -5);
  60. // closing tag of block plugin, restore nocache
  61. list($_params, $this->compiler->nocache) = $this->_close_tag($base_tag);
  62. // This tag does create output
  63. $this->compiler->has_output = true;
  64. $function = $compiler->smarty->registered_plugins['block'][$base_tag][0];
  65. // compile code
  66. if (!is_array($function)) {
  67. $output = "<?php \$_block_content = ob_get_clean(); \$_block_repeat=false; echo {$function}({$_params}, \$_block_content, \$_smarty_tpl->smarty, \$_block_repeat, \$_smarty_tpl); } array_pop(\$_smarty_tpl->smarty->_tag_stack);?>";
  68. } else if (is_object($function[0])) {
  69. $output = "<?php \$_block_content = ob_get_clean(); \$_block_repeat=false; echo call_user_func_array(\$_smarty_tpl->smarty->registered_plugins['block']['{$base_tag}'][0],array({$_params}, \$_block_content, \$_smarty_tpl->smarty, &\$_block_repeat, \$_smarty_tpl)); } array_pop(\$_smarty_tpl->smarty->_tag_stack);?>";
  70. } else {
  71. $output = "<?php \$_block_content = ob_get_clean(); \$_block_repeat=false; echo call_user_func_array(array('{$function[0]}','{$function[1]}'),array({$_params}, \$_block_content, \$_smarty_tpl->smarty, &\$_block_repeat, \$_smarty_tpl)); } array_pop(\$_smarty_tpl->smarty->_tag_stack);?>";
  72. }
  73. }
  74. return $output."\n";
  75. }
  76. }
  77. ?>