/framework/vendor/smarty3/lib/libs/sysplugins/smarty_internal_compile_private_registered_function.php

http://zoop.googlecode.com/ · PHP · 59 lines · 31 code · 2 blank · 26 comment · 6 complexity · 8e893bfdcbc87f48599a3bf1bcca82c1 MD5 · raw file

  1. <?php
  2. /**
  3. * Smarty Internal Plugin Compile Registered Function
  4. *
  5. * Compiles code for the execution of a registered function
  6. *
  7. * @package Smarty
  8. * @subpackage Compiler
  9. * @author Uwe Tews
  10. */
  11. /**
  12. * Smarty Internal Plugin Compile Registered Function Class
  13. */
  14. class Smarty_Internal_Compile_Private_Registered_Function extends Smarty_Internal_CompileBase {
  15. /**
  16. * Compiles code for the execution of a registered function
  17. *
  18. * @param array $args array with attributes from parser
  19. * @param string $tag name of 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. // This tag does create output
  27. $this->compiler->has_output = true;
  28. $this->required_attributes = array();
  29. $this->optional_attributes = array('_any');
  30. // check and get attributes
  31. $_attr = $this->_get_attributes($args);
  32. // not cachable?
  33. $this->compiler->tag_nocache = !$compiler->smarty->registered_plugins['function'][$tag][1];
  34. // convert attributes into parameter array string
  35. $_paramsArray = array();
  36. foreach ($_attr as $_key => $_value) {
  37. if (is_int($_key)) {
  38. $_paramsArray[] = "$_key=>$_value";
  39. } else {
  40. $_paramsArray[] = "'$_key'=>$_value";
  41. }
  42. }
  43. $_params = 'array(' . implode(",", $_paramsArray) . ')';
  44. // compile code
  45. $function = $compiler->smarty->registered_plugins['function'][$tag][0];
  46. // compile code
  47. if (!is_array($function)) {
  48. $output = "<?php echo {$function}({$_params},\$_smarty_tpl->smarty,\$_smarty_tpl);?>\n";
  49. } else if (is_object($function[0])) {
  50. $output = "<?php echo call_user_func(\$_smarty_tpl->smarty->registered_plugins['function']['{$tag}'][0],{$_params},\$_smarty_tpl->smarty,\$_smarty_tpl);?>\n";
  51. } else {
  52. $output = "<?php echo call_user_func(array('{$function[0]}','{$function[1]}'),{$_params},\$_smarty_tpl->smarty,\$_smarty_tpl);?>\n";
  53. }
  54. return $output;
  55. }
  56. }
  57. ?>