[ Index ] |
|
Code source de CMS made simple 1.0.5 |
1 <?php 2 /** 3 * Smarty plugin 4 * @package Smarty 5 * @subpackage plugins 6 */ 7 8 /** 9 * Load requested plugins 10 * 11 * @param array $plugins 12 */ 13 14 // $plugins 15 16 function smarty_core_load_plugins($params, &$smarty) 17 { 18 19 foreach ($params['plugins'] as $_plugin_info) { 20 list($_type, $_name, $_tpl_file, $_tpl_line, $_delayed_loading) = $_plugin_info; 21 $_plugin = &$smarty->_plugins[$_type][$_name]; 22 23 /* 24 * We do not load plugin more than once for each instance of Smarty. 25 * The following code checks for that. The plugin can also be 26 * registered dynamically at runtime, in which case template file 27 * and line number will be unknown, so we fill them in. 28 * 29 * The final element of the info array is a flag that indicates 30 * whether the dynamically registered plugin function has been 31 * checked for existence yet or not. 32 */ 33 if (isset($_plugin)) { 34 if (empty($_plugin[3])) { 35 if (!is_callable($_plugin[0])) { 36 $smarty->_trigger_fatal_error("[plugin] $_type '$_name' is not implemented", $_tpl_file, $_tpl_line, __FILE__, __LINE__); 37 } else { 38 $_plugin[1] = $_tpl_file; 39 $_plugin[2] = $_tpl_line; 40 $_plugin[3] = true; 41 if (!isset($_plugin[4])) $_plugin[4] = true; /* cacheable */ 42 } 43 } 44 continue; 45 } else if ($_type == 'insert') { 46 /* 47 * For backwards compatibility, we check for insert functions in 48 * the symbol table before trying to load them as a plugin. 49 */ 50 $_plugin_func = 'insert_' . $_name; 51 if (function_exists($_plugin_func)) { 52 $_plugin = array($_plugin_func, $_tpl_file, $_tpl_line, true, false); 53 continue; 54 } 55 } 56 57 $_plugin_file = $smarty->_get_plugin_filepath($_type, $_name); 58 59 if (! $_found = ($_plugin_file != false)) { 60 $_message = "could not load plugin file '$_type.$_name.php'\n"; 61 } 62 63 /* 64 * If plugin file is found, it -must- provide the properly named 65 * plugin function. In case it doesn't, simply output the error and 66 * do not fall back on any other method. 67 */ 68 if ($_found) { 69 include_once $_plugin_file; 70 71 $_plugin_func = 'smarty_' . $_type . '_' . $_name; 72 $_cms_plugin_func = 'smarty_cms_' . $_type . '_' . $_name; 73 if (!function_exists($_cms_plugin_func) && !function_exists($_plugin_func)) { 74 $smarty->_trigger_fatal_error("[plugin] function $_plugin_func() not found in $_plugin_file", $_tpl_file, $_tpl_line, __FILE__, __LINE__); 75 continue; 76 } 77 if (!is_callable($_plugin_func) && is_callable($_cms_plugin_func)) 78 { 79 $_plugin_func = $_cms_plugin_func; 80 } 81 } 82 /* 83 * In case of insert plugins, their code may be loaded later via 84 * 'script' attribute. 85 */ 86 else if ($_type == 'insert' && $_delayed_loading) { 87 $_plugin_func = 'smarty_' . $_type . '_' . $_name; 88 $_found = true; 89 } 90 91 /* 92 * Plugin specific processing and error checking. 93 */ 94 if (!$_found) { 95 if ($_type == 'modifier') { 96 /* 97 * In case modifier falls back on using PHP functions 98 * directly, we only allow those specified in the security 99 * context. 100 */ 101 if ($smarty->security && !in_array($_name, $smarty->security_settings['MODIFIER_FUNCS'])) { 102 $_message = "(secure mode) modifier '$_name' is not allowed"; 103 } else { 104 if (!function_exists($_name)) { 105 $_message = "modifier '$_name' is not implemented"; 106 } else { 107 $_plugin_func = $_name; 108 $_found = true; 109 } 110 } 111 } else if ($_type == 'function') { 112 /* 113 * This is a catch-all situation. 114 */ 115 $_message = "unknown tag - '$_name'"; 116 } 117 } 118 119 if ($_found) { 120 $smarty->_plugins[$_type][$_name] = array($_plugin_func, $_tpl_file, $_tpl_line, true, true); 121 } else { 122 // output error 123 $smarty->_trigger_fatal_error('[plugin] ' . $_message, $_tpl_file, $_tpl_line, __FILE__, __LINE__); 124 } 125 } 126 } 127 128 /* vim: set expandtab: */ 129 130 ?>
titre
Description
Corps
titre
Description
Corps
titre
Description
Corps
titre
Corps
Généré le : Tue Apr 3 18:50:37 2007 | par Balluche grâce à PHPXref 0.7 |