libs/sysplugins/smarty_internal_compile_eval.php Quellcode

smarty_internal_compile_eval.php
gehe zur Dokumentation dieser Datei
1 <?php
18 {
25  public $required_attributes = array('var');
32  public $optional_attributes = array('assign');
39  public $shorttag_order = array('var', 'assign');
40 
49  public function compile($args, $compiler)
50  {
51  $this->required_attributes = array('var');
52  $this->optional_attributes = array('assign');
53  // check and get attributes
54  $_attr = $this->getAttributes($compiler, $args);
55  if (isset($_attr['assign'])) {
56  // output will be stored in a smarty variable instead of being displayed
57  $_assign = $_attr['assign'];
58  }
59 
60  // create template object
61  $_output = "\$_template = new {$compiler->smarty->template_class}('eval:'." . $_attr['var'] . ", \$_smarty_tpl->smarty, \$_smarty_tpl);";
62  //was there an assign attribute?
63  if (isset($_assign)) {
64  $_output .= "\$_smarty_tpl->assign($_assign,\$_template->fetch());";
65  } else {
66  $_output .= "echo \$_template->fetch();";
67  }
68 
69  return "<?php $_output ?>";
70  }
71 }




Korrekturen, Hinweise und Ergänzungen

Bitte scheuen Sie sich nicht und melden Sie, was auf dieser Seite sachlich falsch oder irreführend ist, was ergänzt werden sollte, was fehlt usw. Dazu bitte oben aus dem Menü Seite den Eintrag Support Forum wählen. Es ist eine kostenlose Anmeldung erforderlich, um Anmerkungen zu posten. Unpassende Postings, Spam usw. werden kommentarlos entfernt.