mirror of
https://github.com/smarty-php/smarty.git
synced 2026-08-07 22:12:16 +02:00
b390e50974
* Add support for shorttags in functions Co-authored-by: Anne Zijlstra <a.zijlstra@iwink.nl> Co-authored-by: Simon Wisselink <s.wisselink@iwink.nl>
16 lines
376 B
PHP
16 lines
376 B
PHP
<?php
|
|
|
|
namespace Smarty\FunctionHandler;
|
|
|
|
/**
|
|
* Function handler interface with support for specifying supported properties
|
|
*/
|
|
interface AttributeFunctionHandlerInterface extends FunctionHandlerInterface
|
|
{
|
|
/**
|
|
* Returns an array with the supported attributes, flags, and shorttags
|
|
* @return array<string, array>
|
|
*/
|
|
public function getSupportedAttributes(): array;
|
|
}
|