mirror of
https://github.com/Karaka-Management/oms-Script.git
synced 2026-02-13 03:28:41 +00:00
Add tag icon
This commit is contained in:
parent
ee422c34ef
commit
303f14d3eb
|
|
@ -392,6 +392,7 @@ final class ApiController extends Controller
|
||||||
if (!isset($tag['id'])) {
|
if (!isset($tag['id'])) {
|
||||||
$request->setData('title', $tag['title'], true);
|
$request->setData('title', $tag['title'], true);
|
||||||
$request->setData('color', $tag['color'], true);
|
$request->setData('color', $tag['color'], true);
|
||||||
|
$request->setData('icon', $tag['icon'] ?? null, true);
|
||||||
$request->setData('language', $tag['language'], true);
|
$request->setData('language', $tag['language'], true);
|
||||||
|
|
||||||
$internalResponse = new HttpResponse();
|
$internalResponse = new HttpResponse();
|
||||||
|
|
|
||||||
|
|
@ -84,7 +84,7 @@ echo $this->getData('nav')->render(); ?>
|
||||||
<td data-label="<?= $this->getHtml('Name'); ?>"><a href="<?= $url; ?>"><?= $this->printHtml($template->name); ?></a>
|
<td data-label="<?= $this->getHtml('Name'); ?>"><a href="<?= $url; ?>"><?= $this->printHtml($template->name); ?></a>
|
||||||
<td data-label="<?= $this->getHtml('Tag'); ?>">
|
<td data-label="<?= $this->getHtml('Tag'); ?>">
|
||||||
<?php $tags = $template->getTags(); foreach ($tags as $tag) : ?>
|
<?php $tags = $template->getTags(); foreach ($tags as $tag) : ?>
|
||||||
<span class="tag" style="background: <?= $this->printHtml($tag->getColor()); ?>"><?= $this->printHtml($tag->getTitle()); ?></span>
|
<span class="tag" style="background: <?= $this->printHtml($tag->color); ?>"><?= $tag->icon !== null ? '<i class="' . $this->printHtml($tag->icon ?? '') . '"></i>' : ''; ?><?= $this->printHtml($tag->getTitle()); ?></span>
|
||||||
<?php endforeach; ?>
|
<?php endforeach; ?>
|
||||||
<td data-label="<?= $this->getHtml('Creator'); ?>"><a href="<?= $url; ?>"><?= $this->printHtml($template->createdBy->name1); ?></a>
|
<td data-label="<?= $this->getHtml('Creator'); ?>"><a href="<?= $url; ?>"><?= $this->printHtml($template->createdBy->name1); ?></a>
|
||||||
<td data-label="<?= $this->getHtml('Updated'); ?>"><a href="<?= $url; ?>"><?= $this->printHtml($template->createdAt->format('Y-m-d')); ?></a>
|
<td data-label="<?= $this->getHtml('Updated'); ?>"><a href="<?= $url; ?>"><?= $this->printHtml($template->createdAt->format('Y-m-d')); ?></a>
|
||||||
|
|
|
||||||
|
|
@ -141,7 +141,7 @@ echo $this->getData('nav')->render(); ?>
|
||||||
<td><?= $this->getHtml('Tags'); ?>
|
<td><?= $this->getHtml('Tags'); ?>
|
||||||
<td>
|
<td>
|
||||||
<?php $tags = $template->getTags(); foreach ($tags as $tag) : ?>
|
<?php $tags = $template->getTags(); foreach ($tags as $tag) : ?>
|
||||||
<span class="tag" style="background: <?= $this->printHtml($tag->getColor()); ?>"><?= $this->printHtml($tag->getTitle()); ?></span>
|
<span class="tag" style="background: <?= $this->printHtml($tag->color); ?>"><?= $tag->icon !== null ? '<i class="' . $this->printHtml($tag->icon ?? '') . '"></i>' : ''; ?><?= $this->printHtml($tag->getTitle()); ?></span>
|
||||||
<?php endforeach; ?>
|
<?php endforeach; ?>
|
||||||
</table>
|
</table>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user