Added Canvas 1.1.0, originally not under SCM so no historical development records...
[canvas.git] / library / smarty / internals / core.get_php_resource.php
blob8fa1da6bfb3d653599d199a580958b58a3e59b1c
1 <?php
2 /**
3 * Smarty plugin
4 * @package Smarty
5 * @subpackage plugins
6 */
8 /**
9 * Retrieves PHP script resource
11 * sets $php_resource to the returned resource
12 * @param string $resource
13 * @param string $resource_type
14 * @param $php_resource
15 * @return boolean
18 function smarty_core_get_php_resource(&$params, &$smarty)
21 $params['resource_base_path'] = $smarty->trusted_dir;
22 $smarty->_parse_resource_name($params, $smarty);
25 * Find out if the resource exists.
28 if ($params['resource_type'] == 'file') {
29 $_readable = false;
30 if(file_exists($params['resource_name']) && is_readable($params['resource_name'])) {
31 $_readable = true;
32 } else {
33 // test for file in include_path
34 $_params = array('file_path' => $params['resource_name']);
35 require_once(SMARTY_CORE_DIR . 'core.get_include_path.php');
36 if(smarty_core_get_include_path($_params, $smarty)) {
37 $_include_path = $_params['new_file_path'];
38 $_readable = true;
41 } else if ($params['resource_type'] != 'file') {
42 $_template_source = null;
43 $_readable = is_callable($smarty->_plugins['resource'][$params['resource_type']][0][0])
44 && call_user_func_array($smarty->_plugins['resource'][$params['resource_type']][0][0],
45 array($params['resource_name'], &$_template_source, &$smarty));
49 * Set the error function, depending on which class calls us.
51 if (method_exists($smarty, '_syntax_error')) {
52 $_error_funcc = '_syntax_error';
53 } else {
54 $_error_funcc = 'trigger_error';
57 if ($_readable) {
58 if ($smarty->security) {
59 require_once(SMARTY_CORE_DIR . 'core.is_trusted.php');
60 if (!smarty_core_is_trusted($params, $smarty)) {
61 $smarty->$_error_funcc('(secure mode) ' . $params['resource_type'] . ':' . $params['resource_name'] . ' is not trusted');
62 return false;
65 } else {
66 $smarty->$_error_funcc($params['resource_type'] . ':' . $params['resource_name'] . ' is not readable');
67 return false;
70 if ($params['resource_type'] == 'file') {
71 $params['php_resource'] = $params['resource_name'];
72 } else {
73 $params['php_resource'] = $_template_source;
75 return true;
78 /* vim: set expandtab: */