15 lines
461 B
PHP
15 lines
461 B
PHP
|
|
<?php
|
||
|
|
// [Workspace] badge before a project title (dashboard overview, My projects tab, Projects list).
|
||
|
|
// Hidden for projects in Default. Reflects the CURRENT user's personal workspace assignment.
|
||
|
|
if (empty($project['id'])) {
|
||
|
|
return;
|
||
|
|
}
|
||
|
|
|
||
|
|
$workspace = $this->WorkspaceOrgHelper->badge($project['id']);
|
||
|
|
|
||
|
|
if ($workspace === '') {
|
||
|
|
return;
|
||
|
|
}
|
||
|
|
?>
|
||
|
|
<span class="wso-badge" title="<?= $this->text->e(t('Workspace')) ?>">[<?= $this->text->e($workspace) ?>]</span>
|