meraproject/content/modulebz/service/shop/dictionary/components.php
keboss-m 5c21d25d45 Initial commit: Merakomis portal, Docker stack and user-reader API.
Co-authored-by: Cursor <cursoragent@cursor.com>
2026-06-24 11:04:05 +03:00

36 lines
809 B
PHP

<?
use shop\Component;
use themes\Modulebz;
use core\site\structure\HTMLPage as Page;
$TITLE = Component::getTitle();
$link_id = \Site::sectionUrl(\Site::$URL[0] . '/' . \Site::$URL[1] . '/');
Page::addCrumb($TITLE, $link_id);
$data = Component::getTableData([
\Query::WHERE => new \Where(\Where::_and([
\Where::_operator(Component::$ACCOUNT, '=', UID)
])),
ModuleTable::ROW_CLICK => \core\core\structure\eRowClick::CARD,
]);
Modulebz::echoCrumbs();
?>
<div class="row">
<div class="c">
<div class="h"><?=$TITLE;?></div>
</div>
</div>
<div class="row">
<div class="c">
<div class="block">
<div class="body table">
<div class="r_table" data-data="<?= h(je($data)); ?>"></div>
</div>
</div>
</div>
</div>