Files
aowow/endpoints/titles/titles.php
Sarjuuk 3edac3c77a Endpoints/Cache
* fix cache id collision when category == dbTypeId for a given dbType
 * increment version number to invalidate existing caches
 * maps endpoint doesn't need caching. It is entirely static content.
2025-10-08 19:48:21 +02:00

76 lines
2.0 KiB
PHP

<?php
namespace Aowow;
if (!defined('AOWOW_REVISION'))
die('illegal access');
class TitlesBaseResponse extends TemplateResponse implements ICache
{
use TrListPage, TrCache;
protected int $type = Type::TITLE;
protected int $cacheType = CACHE_TYPE_LIST_PAGE;
protected string $template = 'list-page-generic';
protected string $pageName = 'titles';
protected ?int $activeTab = parent::TAB_DATABASE;
protected array $breadcrumb = [0, 10];
protected array $validCats = [0, 1, 2, 3, 4, 5, 6];
public function __construct(string $pageParam)
{
$this->getCategoryFromUrl($pageParam);
parent::__construct($pageParam);
}
protected function generate() : void
{
$this->h1 = Util::ucFirst(Lang::game('titles'));
if ($this->category)
$this->breadcrumb[] = $this->category[0];
array_unshift($this->title, $this->h1);
if ($this->category)
array_unshift($this->title, Lang::title('cat', $this->category[0]));
$this->redButtons[BUTTON_WOWHEAD] = true;
$conditions = [];
if (!User::isInGroup(U_GROUP_EMPLOYEE)) // hide unused titles
$conditions[] = [['cuFlags', CUSTOM_EXCLUDE_FOR_LISTVIEW, '&'], 0];
if ($this->category)
$conditions[] = ['category', $this->category[0]];
$tabData = ['data' => []];
$titles = new TitleList($conditions);
if (!$titles->error)
{
$tabData['data'] = $titles->getListviewData();
if ($titles->hasDiffFields('category'))
$tabData['visibleCols'] = ['category'];
if (!$titles->hasAnySource())
$tabData['hiddenCols'] = ['source'];
}
$this->lvTabs = new Tabs(['parent' => "\$\$WH.ge('tabs-generic')"]);
$this->lvTabs->addListviewTab(new Listview($tabData, TitleList::$brickFile));
parent::generate();
}
}
?>