mirror of
https://github.com/Karaka-Management/oms-Admin.git
synced 2026-02-02 22:48:41 +00:00
fix tests
This commit is contained in:
parent
06dac3104f
commit
88654a8e34
|
|
@ -91,12 +91,13 @@ $tableView->setObjects($modules);
|
|||
<td data-label="<?= $this->getHtml('Status'); ?>">
|
||||
<span class="tag module-status-<?= $status; ?>">
|
||||
<a href="<?= $url; ?>">
|
||||
<?php if ($status === ModuleStatus::ACTIVE)
|
||||
<?php if ($status === ModuleStatus::ACTIVE) {
|
||||
echo \mb_strtolower($this->getHtml('Active'));
|
||||
elseif ($status === ModuleStatus::INACTIVE)
|
||||
} elseif ($status === ModuleStatus::INACTIVE) {
|
||||
echo \mb_strtolower($this->getHtml('Inactive'));
|
||||
else
|
||||
echo \mb_strtolower($this->getHtml('Available')); ?>
|
||||
} else {
|
||||
echo \mb_strtolower($this->getHtml('Available'));
|
||||
} ?>
|
||||
</a>
|
||||
<?php endforeach; ?>
|
||||
</span>
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user