aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/extension/controller_interface.php
blob: 2b889253883161cb4d3b499fdc451cb3f0d399d0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<?php
/**
*
* @package extension
* @copyright (c) 2011 phpBB Group
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
*
*/

/**
* @ignore
*/
if (!defined('IN_PHPBB'))
{
	exit;
}

/**
* The interface that extension classes have to implement to run front pages
*
* @package extension
*/
interface phpbb_extension_controller_interface
{
	/**
	* Handle the request to display a page from an extension
	*
	* @return	null
	*/
	public function handle();
}