blob: 32e4e9a7b4b6045f278bc84058f71411f657c1d5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<?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);
}
|