/class/smarty/plugins/compiler.assign.php

https://gitlab.com/VoyaTrax/vtCMS · PHP · 40 lines · 15 code · 6 blank · 19 comment · 2 complexity · 6c3aaef0d3723c9f5875c7cd3610c1e6 MD5 · raw file

  1. <?php
  2. /**
  3. * Smarty plugin
  4. * @package Smarty
  5. * @subpackage plugins
  6. */
  7. /**
  8. * Smarty {assign} compiler function plugin
  9. *
  10. * Type: compiler function<br>
  11. * Name: assign<br>
  12. * Purpose: assign a value to a template variable
  13. * @link http://smarty.php.net/manual/en/language.custom.functions.php#LANGUAGE.FUNCTION.ASSIGN {assign}
  14. * (Smarty online manual)
  15. * @author Monte Ohrt <monte at ohrt dot com> (initial author)
  16. * @auther messju mohr <messju at lammfellpuschen dot de> (conversion to compiler function)
  17. * @param string containing var-attribute and value-attribute
  18. * @param Smarty_Compiler
  19. */
  20. function smarty_compiler_assign($tag_attrs, &$compiler)
  21. {
  22. $_params = $compiler->_parse_attrs($tag_attrs);
  23. if (!isset($_params['var'])) {
  24. $compiler->_syntax_error("assign: missing 'var' parameter", E_USER_WARNING);
  25. return;
  26. }
  27. if (!isset($_params['value'])) {
  28. $compiler->_syntax_error("assign: missing 'value' parameter", E_USER_WARNING);
  29. return;
  30. }
  31. return "\$this->assign({$_params['var']}, {$_params['value']});";
  32. }
  33. /* vim: set expandtab: */
  34. ?>