You are here

property Smarty::$php_handling in Quiz 6.5

Same name and namespace in other branches
  1. 6.6 includes/moodle/lib/smarty/Smarty.class.php \Smarty::php_handling

This determines how Smarty handles "<?php ... ?>" tags in templates. possible values: <ul> <li>SMARTY_PHP_PASSTHRU -> print tags as plain text</li> <li>SMARTY_PHP_QUOTE -> escape tags as entities</li> <li>SMARTY_PHP_REMOVE -> remove php tags</li> <li>SMARTY_PHP_ALLOW -> execute php tags</li> </ul>

Type: integer

File

includes/moodle/lib/smarty/Smarty.class.php, line 201

Class

Smarty
@package Smarty

Code

var $php_handling = SMARTY_PHP_PASSTHRU;