Template/Update (Part 3)

* convert amalgamation more.php into separate endpoints
 * fix url of help articles
This commit is contained in:
Sarjuuk
2025-08-06 01:24:10 +02:00
parent 5713834f90
commit 81d9248541
22 changed files with 651 additions and 330 deletions

View File

@@ -0,0 +1,34 @@
<?php
namespace Aowow;
if (!defined('AOWOW_REVISION'))
die('illegal access');
class TooltipsBaseResponse extends TemplateResponse
{
protected string $template = 'text-page-generic';
protected string $pageName = 'tooltips';
protected ?int $activeTab = parent::TAB_MORE;
protected array $breadcrumb = [2, 10];
public function __construct(string $pageParam)
{
parent::__construct($pageParam);
if ($pageParam)
$this->generateError();
}
protected function generate() : void
{
$this->h1 = Lang::main('moreTitles', $this->pageName);
array_unshift($this->title, $this->h1);
parent::generate();
}
}
?>