mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-19 17:58:51 +00:00
17 lines
402 B
PHP
17 lines
402 B
PHP
<?php
|
|
|
|
/**
|
|
* Template executor interface.
|
|
*
|
|
* Objects implementing this interface encapsulate a means of executing
|
|
* (i.e. rendering) a template.
|
|
*/
|
|
interface phpbb_template_executor
|
|
{
|
|
/**
|
|
* Executes the template managed by this executor.
|
|
* @param phpbb_template_context $context Template context to use
|
|
* @param array $lang Language entries to use
|
|
*/
|
|
public function execute($context, $lang);
|
|
}
|