| 
									
										
										
										
											2003-05-08 20:21:16 +00:00
										 |  |  | <?php | 
					
						
							|  |  |  | /** | 
					
						
							|  |  |  |  * Smarty plugin | 
					
						
							|  |  |  |  * @package Smarty | 
					
						
							|  |  |  |  * @subpackage plugins | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /** | 
					
						
							|  |  |  |  * load a resource plugin | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * @param string $type | 
					
						
							| 
									
										
										
										
											2003-10-11 08:55:53 +00:00
										 |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // $type
 | 
					
						
							| 
									
										
										
										
											2003-05-08 20:21:16 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-06-22 03:13:25 +00:00
										 |  |  | function smarty_core_load_resource_plugin($params, &$smarty) | 
					
						
							| 
									
										
										
										
											2003-05-08 20:21:16 +00:00
										 |  |  | { | 
					
						
							|  |  |  |     /* | 
					
						
							|  |  |  |      * Resource plugins are not quite like the other ones, so they are | 
					
						
							|  |  |  |      * handled differently. The first element of plugin info is the array of | 
					
						
							|  |  |  |      * functions provided by the plugin, the second one indicates whether | 
					
						
							|  |  |  |      * all of them exist or not. | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-06-22 03:13:25 +00:00
										 |  |  |     $_plugin = &$smarty->_plugins['resource'][$params['type']]; | 
					
						
							| 
									
										
										
										
											2003-05-08 20:21:16 +00:00
										 |  |  |     if (isset($_plugin)) { | 
					
						
							|  |  |  |         if (!$_plugin[1] && count($_plugin[0])) { | 
					
						
							|  |  |  |             $_plugin[1] = true; | 
					
						
							| 
									
										
										
										
											2003-10-11 08:55:53 +00:00
										 |  |  |             foreach ($_plugin[0] as $_plugin_func) { | 
					
						
							| 
									
										
										
										
											2003-09-12 13:40:53 +00:00
										 |  |  |                 if (!is_callable($_plugin_func)) { | 
					
						
							| 
									
										
										
										
											2003-05-08 20:21:16 +00:00
										 |  |  |                     $_plugin[1] = false; | 
					
						
							|  |  |  |                     break; | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if (!$_plugin[1]) { | 
					
						
							| 
									
										
										
										
											2003-06-22 03:13:25 +00:00
										 |  |  |             $smarty->_trigger_fatal_error("[plugin] resource '" . $params['type'] . "' is not implemented", null, null, __FILE__, __LINE__); | 
					
						
							| 
									
										
										
										
											2003-05-08 20:21:16 +00:00
										 |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         return; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-07-23 15:34:53 +00:00
										 |  |  |     $_plugin_file = $smarty->_get_plugin_filepath('resource', $params['type']); | 
					
						
							| 
									
										
										
										
											2003-05-08 20:21:16 +00:00
										 |  |  |     $_found = ($_plugin_file != false); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if ($_found) {            /* | 
					
						
							|  |  |  |          * If the plugin file is found, it -must- provide the properly named | 
					
						
							|  |  |  |          * plugin functions. | 
					
						
							|  |  |  |          */ | 
					
						
							| 
									
										
										
										
											2003-06-29 12:25:03 +00:00
										 |  |  |         include_once($_plugin_file); | 
					
						
							| 
									
										
										
										
											2003-05-08 20:21:16 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |         /* | 
					
						
							|  |  |  |          * Locate functions that we require the plugin to provide. | 
					
						
							|  |  |  |          */ | 
					
						
							|  |  |  |         $_resource_ops = array('source', 'timestamp', 'secure', 'trusted'); | 
					
						
							|  |  |  |         $_resource_funcs = array(); | 
					
						
							|  |  |  |         foreach ($_resource_ops as $_op) { | 
					
						
							|  |  |  |             $_plugin_func = 'smarty_resource_' . $params['type'] . '_' . $_op; | 
					
						
							|  |  |  |             if (!function_exists($_plugin_func)) { | 
					
						
							| 
									
										
										
										
											2003-06-22 03:13:25 +00:00
										 |  |  |                 $smarty->_trigger_fatal_error("[plugin] function $_plugin_func() not found in $_plugin_file", null, null, __FILE__, __LINE__); | 
					
						
							| 
									
										
										
										
											2003-05-08 20:21:16 +00:00
										 |  |  |                 return; | 
					
						
							|  |  |  |             } else { | 
					
						
							|  |  |  |                 $_resource_funcs[] = $_plugin_func; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-06-22 03:13:25 +00:00
										 |  |  |         $smarty->_plugins['resource'][$params['type']] = array($_resource_funcs, true); | 
					
						
							| 
									
										
										
										
											2003-05-08 20:21:16 +00:00
										 |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* vim: set expandtab: */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | ?>
 |