trusted_dir; require_once(SMARTY_DIR . 'core/core.parse_file_path.php'); smarty_core_parse_file_path($params, $this); /* * Find out if the resource exists. */ if ($params['resource_type'] == 'file') { $_readable = false; if(file_exists($params['resource_name']) && is_readable($params['resource_name'])) { $_readable = true; } else { // test for file in include_path $_params = array('file_path' => $params['resource_name']); require_once(SMARTY_DIR . 'core/core.get_include_path.php'); if(smarty_core_get_include_path($_params, $this)) { $_include_path = $_params['new_file_path']; $_readable = true; } } } else if ($params['resource_type'] != 'file') { $_template_source = null; $_readable = $this->_plugin_implementation_exists($this->_plugins['resource'][$params['resource_type']][0][0]) && call_user_func_array($this->_plugins['resource'][$params['resource_type']][0][0], array($params['resource_name'], &$_template_source, &$this)); } /* * Set the error function, depending on which class calls us. */ if (method_exists($this, '_syntax_error')) { $_error_funcc = '_syntax_error'; } else { $_error_funcc = 'trigger_error'; } if ($_readable) { if ($this->security) { require_once(SMARTY_DIR . 'core/core.is_trusted.php'); if (!smarty_core_is_trusted($params, $this)) { $this->$_error_funcc('(secure mode) ' . $params['resource_type'] . ':' . $params['resource_name'] . ' is not trusted'); return false; } } } else { $this->$_error_funcc($params['resource_type'] . ':' . $params['resource_name'] . ' is not readable'); return false; } if ($params['resource_type'] == 'file') { $params['php_resource'] = $params['resource_name']; } else { $params['php_resource'] = $_template_source; } return true; } /* vim: set expandtab: */ ?>