renamed calls to $smarty->_get_plugin_filepath() to $smarty->get_plugin_filepath()

This commit is contained in:
messju
2004-07-12 15:24:43 +00:00
parent 4d1af77893
commit cba023a811
6 changed files with 8 additions and 8 deletions

View File

@@ -40,7 +40,7 @@
*/ */
function smarty_function_html_checkboxes($params, &$smarty) function smarty_function_html_checkboxes($params, &$smarty)
{ {
require_once $smarty->_get_plugin_filepath('shared','escape_special_chars'); require_once $smarty->get_plugin_filepath('shared','escape_special_chars');
$name = 'checkbox'; $name = 'checkbox';
$values = null; $values = null;

View File

@@ -36,7 +36,7 @@
*/ */
function smarty_function_html_image($params, &$smarty) function smarty_function_html_image($params, &$smarty)
{ {
require_once $smarty->_get_plugin_filepath('shared','escape_special_chars'); require_once $smarty->get_plugin_filepath('shared','escape_special_chars');
$alt = ''; $alt = '';
$file = ''; $file = '';

View File

@@ -28,7 +28,7 @@
*/ */
function smarty_function_html_options($params, &$smarty) function smarty_function_html_options($params, &$smarty)
{ {
require_once $smarty->_get_plugin_filepath('shared','escape_special_chars'); require_once $smarty->get_plugin_filepath('shared','escape_special_chars');
$name = null; $name = null;
$values = null; $values = null;

View File

@@ -40,7 +40,7 @@
*/ */
function smarty_function_html_radios($params, &$smarty) function smarty_function_html_radios($params, &$smarty)
{ {
require_once $smarty->_get_plugin_filepath('shared','escape_special_chars'); require_once $smarty->get_plugin_filepath('shared','escape_special_chars');
$name = 'radio'; $name = 'radio';
$values = null; $values = null;

View File

@@ -32,8 +32,8 @@
*/ */
function smarty_function_html_select_date($params, &$smarty) function smarty_function_html_select_date($params, &$smarty)
{ {
require_once $smarty->_get_plugin_filepath('shared','make_timestamp'); require_once $smarty->get_plugin_filepath('shared','make_timestamp');
require_once $smarty->_get_plugin_filepath('function','html_options'); require_once $smarty->get_plugin_filepath('function','html_options');
/* Default values. */ /* Default values. */
$prefix = "Date_"; $prefix = "Date_";
$start_year = strftime("%Y"); $start_year = strftime("%Y");

View File

@@ -21,8 +21,8 @@
*/ */
function smarty_function_html_select_time($params, &$smarty) function smarty_function_html_select_time($params, &$smarty)
{ {
require_once $smarty->_get_plugin_filepath('shared','make_timestamp'); require_once $smarty->get_plugin_filepath('shared','make_timestamp');
require_once $smarty->_get_plugin_filepath('function','html_options'); require_once $smarty->get_plugin_filepath('function','html_options');
/* Default values. */ /* Default values. */
$prefix = "Time_"; $prefix = "Time_";
$time = time(); $time = time();