aboutsummaryrefslogtreecommitdiffstats
path: root/tests/functional/fixtures/ext/foo/bar/controller.php
blob: 3375e317b358285ad42e5b3d5170328e4b190ac2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?php

class phpbb_ext_foo_bar_controller extends phpbb_extension_controller
{
	public function handle()
	{
		$this->template->set_filenames(array(
			'body' => 'foobar_body.html'
		));

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