Template/Update (Part 36)

* convert dbtype 'mail'
This commit is contained in:
Sarjuuk
2025-08-13 22:20:24 +02:00
parent 0cf9069eb1
commit 3f8d5d90e1
6 changed files with 259 additions and 230 deletions

59
endpoints/mails/mails.php Normal file
View File

@@ -0,0 +1,59 @@
<?php
namespace Aowow;
if (!defined('AOWOW_REVISION'))
die('illegal access');
class MailsBaseResponse extends TemplateResponse implements ICache
{
use TrListPage, TrCache;
protected int $type = Type::MAIL;
protected int $cacheType = CACHE_TYPE_PAGE;
protected string $template = 'list-page-generic';
protected string $pageName = 'mails';
protected ?int $activeTab = parent::TAB_DATABASE;
protected array $breadcrumb = [0, 103];
public function __construct(string $pageParam)
{
$this->getCategoryFromUrl($pageParam);
parent::__construct($pageParam);
}
protected function generate() : void
{
$this->h1 = Util::ucFirst(Lang::game('mails'));
/**************/
/* Page Title */
/**************/
array_unshift($this->title, $this->h1);
/****************/
/* Main Content */
/****************/
$tabData = [];
$mails = new MailList();
if (!$mails->error)
$tabData['data'] = $mails->getListviewData();
$this->extendGlobalData($mails->getJsGlobals());
$this->lvTabs = new Tabs(['parent' => "\$\$WH.ge('tabs-generic')"]);
$this->lvTabs->addListviewTab(new Listview(['data' => $mails->getListviewData()], MailList::$brickFile, 'mail'));
parent::generate();
}
}
?>