mirror of
https://github.com/smarty-php/smarty.git
synced 2025-08-04 10:24:26 +02:00
update SmartyBC
This commit is contained in:
@@ -31,7 +31,7 @@
|
||||
require_once(dirname(__FILE__) . '/Smarty.class.php');
|
||||
|
||||
/**
|
||||
* Smarty Backward Compatability Wrapper Class
|
||||
* Smarty Backward Compatibility Wrapper Class
|
||||
*
|
||||
* @package Smarty
|
||||
*/
|
||||
@@ -54,11 +54,10 @@ class SmartyBC extends Smarty
|
||||
/**
|
||||
* Initialize new SmartyBC object
|
||||
*
|
||||
* @param array $options options to set during initialization, e.g. array( 'forceCompile' => false )
|
||||
*/
|
||||
public function __construct(array $options = array())
|
||||
public function __construct()
|
||||
{
|
||||
parent::__construct($options);
|
||||
parent::__construct();
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -108,7 +107,7 @@ class SmartyBC extends Smarty
|
||||
}
|
||||
|
||||
/**
|
||||
* Unregisters custom function
|
||||
* Unregister custom function
|
||||
*
|
||||
* @param string $function name of template function
|
||||
*/
|
||||
@@ -137,7 +136,7 @@ class SmartyBC extends Smarty
|
||||
}
|
||||
|
||||
/**
|
||||
* Unregisters object
|
||||
* Unregister object
|
||||
*
|
||||
* @param string $object name of template object
|
||||
*/
|
||||
@@ -160,7 +159,7 @@ class SmartyBC extends Smarty
|
||||
}
|
||||
|
||||
/**
|
||||
* Unregisters block function
|
||||
* Unregister block function
|
||||
*
|
||||
* @param string $block name of template function
|
||||
*/
|
||||
@@ -182,7 +181,7 @@ class SmartyBC extends Smarty
|
||||
}
|
||||
|
||||
/**
|
||||
* Unregisters compiler function
|
||||
* Unregister compiler function
|
||||
*
|
||||
* @param string $function name of template function
|
||||
*/
|
||||
@@ -203,7 +202,7 @@ class SmartyBC extends Smarty
|
||||
}
|
||||
|
||||
/**
|
||||
* Unregisters modifier
|
||||
* Unregister modifier
|
||||
*
|
||||
* @param string $modifier name of template modifier
|
||||
*/
|
||||
@@ -224,7 +223,7 @@ class SmartyBC extends Smarty
|
||||
}
|
||||
|
||||
/**
|
||||
* Unregisters a resource
|
||||
* Unregister a resource
|
||||
*
|
||||
* @param string $type name of resource
|
||||
*/
|
||||
@@ -245,7 +244,7 @@ class SmartyBC extends Smarty
|
||||
}
|
||||
|
||||
/**
|
||||
* Unregisters a prefilter function
|
||||
* Unregister a prefilter function
|
||||
*
|
||||
* @param callable $function
|
||||
*/
|
||||
@@ -266,7 +265,7 @@ class SmartyBC extends Smarty
|
||||
}
|
||||
|
||||
/**
|
||||
* Unregisters a postfilter function
|
||||
* Unregister a postfilter function
|
||||
*
|
||||
* @param callable $function
|
||||
*/
|
||||
@@ -287,7 +286,7 @@ class SmartyBC extends Smarty
|
||||
}
|
||||
|
||||
/**
|
||||
* Unregisters an outputfilter function
|
||||
* Unregister an outputfilter function
|
||||
*
|
||||
* @param callable $function
|
||||
*/
|
||||
|
Reference in New Issue
Block a user