aboutsummaryrefslogtreecommitdiffstats
path: root/tests/functional/fixtures/ext/error/class/controller.php
blob: 99849584bcbe5a0b81260bfd6b9b2f1df1658521 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?php

class phpbb_ext_foobar_controller extends phpbb_extension_controller
{
	public function handle()
	{
		$this->template->set_ext_dir_prefix($this->phpbb_root_path . 'ext/error/class/');

		$this->template->set_filenames(array(
			'body' => 'index_body.html'
		));

		page_header('Test extension');
		page_footer();
	}
}