| 
									
										
										
										
											2003-05-08 20:21:16 +00:00
										 |  |  | <?php | 
					
						
							|  |  |  | /** | 
					
						
							|  |  |  |  * Smarty plugin | 
					
						
							|  |  |  |  * @package Smarty | 
					
						
							|  |  |  |  * @subpackage plugins | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /** | 
					
						
							|  |  |  |  * Retrieves PHP script resource | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * sets $php_resource to the returned resource | 
					
						
							|  |  |  |  * @param string $resource | 
					
						
							|  |  |  |  * @param string $resource_type | 
					
						
							|  |  |  |  * @param  $php_resource | 
					
						
							|  |  |  |  * @return boolean | 
					
						
							| 
									
										
										
										
											2003-10-11 08:55:53 +00:00
										 |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-06-22 03:13:25 +00:00
										 |  |  | function smarty_core_get_php_resource(&$params, &$smarty) | 
					
						
							| 
									
										
										
										
											2003-05-08 20:21:16 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2003-10-11 08:55:53 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     $params['resource_base_path'] = $smarty->trusted_dir; | 
					
						
							|  |  |  |     $smarty->_parse_resource_name($params, $smarty); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-05-08 20:21:16 +00:00
										 |  |  |     /* | 
					
						
							|  |  |  |      * 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; | 
					
						
							| 
									
										
										
										
											2003-10-11 08:55:53 +00:00
										 |  |  |         } else { | 
					
						
							| 
									
										
										
										
											2003-05-08 20:21:16 +00:00
										 |  |  |             // test for file in include_path
 | 
					
						
							| 
									
										
										
										
											2003-10-11 08:55:53 +00:00
										 |  |  |             $_params = array('file_path' => $params['resource_name']); | 
					
						
							| 
									
										
										
										
											2004-09-16 23:07:32 +00:00
										 |  |  |             require_once(SMARTY_CORE_DIR . 'core.get_include_path.php'); | 
					
						
							| 
									
										
										
										
											2003-10-11 08:55:53 +00:00
										 |  |  |             if(smarty_core_get_include_path($_params, $smarty)) { | 
					
						
							|  |  |  |                 $_include_path = $_params['new_file_path']; | 
					
						
							|  |  |  |                 $_readable = true; | 
					
						
							| 
									
										
										
										
											2003-05-08 20:21:16 +00:00
										 |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } else if ($params['resource_type'] != 'file') { | 
					
						
							| 
									
										
										
										
											2003-10-11 08:55:53 +00:00
										 |  |  |         $_template_source = null; | 
					
						
							| 
									
										
										
										
											2003-09-12 13:40:53 +00:00
										 |  |  |         $_readable = is_callable($smarty->_plugins['resource'][$params['resource_type']][0][0]) | 
					
						
							| 
									
										
										
										
											2003-06-22 03:13:25 +00:00
										 |  |  |             && call_user_func_array($smarty->_plugins['resource'][$params['resource_type']][0][0], | 
					
						
							|  |  |  |                                     array($params['resource_name'], &$_template_source, &$smarty)); | 
					
						
							| 
									
										
										
										
											2003-05-08 20:21:16 +00:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* | 
					
						
							|  |  |  |      * Set the error function, depending on which class calls us. | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2003-06-22 03:13:25 +00:00
										 |  |  |     if (method_exists($smarty, '_syntax_error')) { | 
					
						
							| 
									
										
										
										
											2003-05-08 20:21:16 +00:00
										 |  |  |         $_error_funcc = '_syntax_error'; | 
					
						
							|  |  |  |     } else { | 
					
						
							|  |  |  |         $_error_funcc = 'trigger_error'; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if ($_readable) { | 
					
						
							| 
									
										
										
										
											2003-06-22 03:13:25 +00:00
										 |  |  |         if ($smarty->security) { | 
					
						
							| 
									
										
										
										
											2004-09-16 23:07:32 +00:00
										 |  |  |             require_once(SMARTY_CORE_DIR . 'core.is_trusted.php'); | 
					
						
							| 
									
										
										
										
											2003-06-22 03:13:25 +00:00
										 |  |  |             if (!smarty_core_is_trusted($params, $smarty)) { | 
					
						
							|  |  |  |                 $smarty->$_error_funcc('(secure mode) ' . $params['resource_type'] . ':' . $params['resource_name'] . ' is not trusted'); | 
					
						
							| 
									
										
										
										
											2003-05-08 20:21:16 +00:00
										 |  |  |                 return false; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } else { | 
					
						
							| 
									
										
										
										
											2003-06-22 03:13:25 +00:00
										 |  |  |         $smarty->$_error_funcc($params['resource_type'] . ':' . $params['resource_name'] . ' is not readable'); | 
					
						
							| 
									
										
										
										
											2003-05-08 20:21:16 +00:00
										 |  |  |         return false; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if ($params['resource_type'] == 'file') { | 
					
						
							|  |  |  |         $params['php_resource'] = $params['resource_name']; | 
					
						
							|  |  |  |     } else { | 
					
						
							|  |  |  |         $params['php_resource'] = $_template_source; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     return true; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* vim: set expandtab: */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | ?>
 |