mirror of
https://github.com/smarty-php/smarty.git
synced 2025-08-05 10:54:27 +02:00
renamed calls to $smarty->_get_plugin_filepath() to $smarty->get_plugin_filepath()
This commit is contained in:
@@ -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;
|
||||||
|
@@ -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 = '';
|
||||||
|
@@ -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;
|
||||||
|
@@ -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;
|
||||||
|
@@ -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");
|
||||||
|
@@ -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();
|
||||||
|
Reference in New Issue
Block a user