mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-10 21:38:54 +00:00
14 lines
240 B
PHP
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();
|
|
}
|
|
}
|