phpbb/tests/functional/fixtures/ext/error/class/controller.php
2012-03-28 20:21:54 -04:00

14 lines
240 B
PHP

<?php
class phpbb_ext_foobar_controller extends phpbb_extension_controller
{
public function handle()
{
$this->template->set_filenames(array(
'body' => 'index_body.html'
));
page_header('Test extension');
page_footer();
}
}