Init du projet
This commit is contained in:
20
module/Smarty/src/Plugin/BlockPluginInterface.php
Normal file
20
module/Smarty/src/Plugin/BlockPluginInterface.php
Normal file
@ -0,0 +1,20 @@
|
||||
<?php
|
||||
namespace Smarty\Plugin;
|
||||
|
||||
use Smarty;
|
||||
|
||||
/**
|
||||
* Interface to detect if a class is Smarty Block plugin.
|
||||
*/
|
||||
interface BlockPluginInterface extends PluginInterface
|
||||
{
|
||||
/**
|
||||
* @param array $params
|
||||
* @param string $content
|
||||
* @param Smarty $smarty
|
||||
* @param bool $repeat
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
public function prepare(array $params, $content, $smarty, &$repeat);
|
||||
}
|
Reference in New Issue
Block a user