You are here

property Smarty::$default_resource_type in Quiz 6.5

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

This is the resource type to be used when not specified at the beginning of the resource path. examples: $smarty->display('file:index.tpl'); $smarty->display('db:index.tpl'); $smarty->display('index.tpl'); // will use default resource type {include file="file:index.tpl"} {include file="db:index.tpl"} {include file="index.tpl"} {* will use default resource type *}

Type: array

File

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

Class

Smarty
@package Smarty

Code

var $default_resource_type = 'file';