nriault/module/Smarty/src/Plugin/BlockPluginInterface.php
2018-06-25 22:39:00 +02:00

21 lines
402 B
PHP

<?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);
}