| 
									
										
										
										
											2003-05-08 20:21:16 +00:00
										 |  |  | <?php | 
					
						
							|  |  |  | /** | 
					
						
							|  |  |  |  * Smarty plugin | 
					
						
							|  |  |  |  * @package Smarty | 
					
						
							|  |  |  |  * @subpackage plugins | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /** | 
					
						
							|  |  |  |  * Load requested plugins | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * @param array $plugins | 
					
						
							| 
									
										
										
										
											2003-10-11 08:55:53 +00:00
										 |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // $plugins
 | 
					
						
							| 
									
										
										
										
											2003-05-08 20:21:16 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-06-22 03:13:25 +00:00
										 |  |  | function smarty_core_load_plugins($params, &$smarty) | 
					
						
							| 
									
										
										
										
											2003-05-08 20:21:16 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     foreach ($params['plugins'] as $_plugin_info) { | 
					
						
							|  |  |  |         list($_type, $_name, $_tpl_file, $_tpl_line, $_delayed_loading) = $_plugin_info; | 
					
						
							| 
									
										
										
										
											2003-06-22 03:13:25 +00:00
										 |  |  |         $_plugin = &$smarty->_plugins[$_type][$_name]; | 
					
						
							| 
									
										
										
										
											2003-05-08 20:21:16 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |         /* | 
					
						
							|  |  |  |          * We do not load plugin more than once for each instance of Smarty. | 
					
						
							|  |  |  |          * The following code checks for that. The plugin can also be | 
					
						
							|  |  |  |          * registered dynamically at runtime, in which case template file | 
					
						
							|  |  |  |          * and line number will be unknown, so we fill them in. | 
					
						
							|  |  |  |          * | 
					
						
							|  |  |  |          * The final element of the info array is a flag that indicates | 
					
						
							|  |  |  |          * whether the dynamically registered plugin function has been | 
					
						
							|  |  |  |          * checked for existence yet or not. | 
					
						
							|  |  |  |          */ | 
					
						
							|  |  |  |         if (isset($_plugin)) { | 
					
						
							|  |  |  |             if (empty($_plugin[3])) { | 
					
						
							| 
									
										
										
										
											2003-09-12 13:40:53 +00:00
										 |  |  |                 if (!is_callable($_plugin[0])) { | 
					
						
							| 
									
										
										
										
											2003-06-22 03:13:25 +00:00
										 |  |  |                     $smarty->_trigger_fatal_error("[plugin] $_type '$_name' is not implemented", $_tpl_file, $_tpl_line, __FILE__, __LINE__); | 
					
						
							| 
									
										
										
										
											2003-05-08 20:21:16 +00:00
										 |  |  |                 } else { | 
					
						
							|  |  |  |                     $_plugin[1] = $_tpl_file; | 
					
						
							|  |  |  |                     $_plugin[2] = $_tpl_line; | 
					
						
							|  |  |  |                     $_plugin[3] = true; | 
					
						
							| 
									
										
										
										
											2003-08-05 18:27:14 +00:00
										 |  |  |                     if (!isset($_plugin[4])) $_plugin[4] = true; /* cacheable */ | 
					
						
							| 
									
										
										
										
											2003-05-08 20:21:16 +00:00
										 |  |  |                 } | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |             continue; | 
					
						
							|  |  |  |         } else if ($_type == 'insert') { | 
					
						
							|  |  |  |             /* | 
					
						
							|  |  |  |              * For backwards compatibility, we check for insert functions in | 
					
						
							|  |  |  |              * the symbol table before trying to load them as a plugin. | 
					
						
							|  |  |  |              */ | 
					
						
							|  |  |  |             $_plugin_func = 'insert_' . $_name; | 
					
						
							|  |  |  |             if (function_exists($_plugin_func)) { | 
					
						
							| 
									
										
										
										
											2003-06-18 23:01:42 +00:00
										 |  |  |                 $_plugin = array($_plugin_func, $_tpl_file, $_tpl_line, true, false); | 
					
						
							| 
									
										
										
										
											2003-05-08 20:21:16 +00:00
										 |  |  |                 continue; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-07-12 15:22:57 +00:00
										 |  |  |         $_plugin_file = $smarty->get_plugin_filepath($_type, $_name); | 
					
						
							| 
									
										
										
										
											2003-05-08 20:21:16 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |         if (! $_found = ($_plugin_file != false)) { | 
					
						
							|  |  |  |             $_message = "could not load plugin file '$_type.$_name.php'\n"; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         /* | 
					
						
							|  |  |  |          * If plugin file is found, it -must- provide the properly named | 
					
						
							|  |  |  |          * plugin function. In case it doesn't, simply output the error and | 
					
						
							|  |  |  |          * do not fall back on any other method. | 
					
						
							|  |  |  |          */ | 
					
						
							|  |  |  |         if ($_found) { | 
					
						
							|  |  |  |             include_once $_plugin_file; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             $_plugin_func = 'smarty_' . $_type . '_' . $_name; | 
					
						
							| 
									
										
										
										
											2003-07-29 07:15:44 +00:00
										 |  |  |             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", $_tpl_file, $_tpl_line, __FILE__, __LINE__); | 
					
						
							| 
									
										
										
										
											2003-05-08 20:21:16 +00:00
										 |  |  |                 continue; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         /* | 
					
						
							|  |  |  |          * In case of insert plugins, their code may be loaded later via | 
					
						
							|  |  |  |          * 'script' attribute. | 
					
						
							|  |  |  |          */ | 
					
						
							|  |  |  |         else if ($_type == 'insert' && $_delayed_loading) { | 
					
						
							|  |  |  |             $_plugin_func = 'smarty_' . $_type . '_' . $_name; | 
					
						
							|  |  |  |             $_found = true; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         /* | 
					
						
							|  |  |  |          * Plugin specific processing and error checking. | 
					
						
							|  |  |  |          */ | 
					
						
							|  |  |  |         if (!$_found) { | 
					
						
							|  |  |  |             if ($_type == 'modifier') { | 
					
						
							|  |  |  |                 /* | 
					
						
							|  |  |  |                  * In case modifier falls back on using PHP functions | 
					
						
							|  |  |  |                  * directly, we only allow those specified in the security | 
					
						
							|  |  |  |                  * context. | 
					
						
							|  |  |  |                  */ | 
					
						
							| 
									
										
										
										
											2003-06-22 03:13:25 +00:00
										 |  |  |                 if ($smarty->security && !in_array($_name, $smarty->security_settings['MODIFIER_FUNCS'])) { | 
					
						
							| 
									
										
										
										
											2003-05-08 20:21:16 +00:00
										 |  |  |                     $_message = "(secure mode) modifier '$_name' is not allowed"; | 
					
						
							|  |  |  |                 } else { | 
					
						
							|  |  |  |                     if (!function_exists($_name)) { | 
					
						
							|  |  |  |                         $_message = "modifier '$_name' is not implemented"; | 
					
						
							|  |  |  |                     } else { | 
					
						
							|  |  |  |                         $_plugin_func = $_name; | 
					
						
							|  |  |  |                         $_found = true; | 
					
						
							|  |  |  |                     } | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  |             } else if ($_type == 'function') { | 
					
						
							|  |  |  |                 /* | 
					
						
							|  |  |  |                  * This is a catch-all situation. | 
					
						
							|  |  |  |                  */ | 
					
						
							|  |  |  |                 $_message = "unknown tag - '$_name'"; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if ($_found) { | 
					
						
							| 
									
										
										
										
											2003-06-22 03:13:25 +00:00
										 |  |  |             $smarty->_plugins[$_type][$_name] = array($_plugin_func, $_tpl_file, $_tpl_line, true, true); | 
					
						
							| 
									
										
										
										
											2003-05-08 20:21:16 +00:00
										 |  |  |         } else { | 
					
						
							|  |  |  |             // output error
 | 
					
						
							| 
									
										
										
										
											2003-06-22 03:13:25 +00:00
										 |  |  |             $smarty->_trigger_fatal_error('[plugin] ' . $_message, $_tpl_file, $_tpl_line, __FILE__, __LINE__); | 
					
						
							| 
									
										
										
										
											2003-05-08 20:21:16 +00:00
										 |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* vim: set expandtab: */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | ?>
 |