parent
baf47fef7f
commit
508322cfdc
|
@ -44,12 +44,20 @@
|
|||
<?php if ($dashlet->getDisabled() === true) continue; ?>
|
||||
<tr>
|
||||
<td>
|
||||
<a href="<?= $this->href('dashboard/update-dashlet', array('pane' => $pane->getName(), 'dashlet' => $dashlet->getTitle())); ?>">
|
||||
<?= $dashlet->getTitle(); ?>
|
||||
</a>
|
||||
<?= $this->qlink(
|
||||
$dashlet->getTitle(),
|
||||
'dashboard/update-dashlet',
|
||||
array('pane' => $pane->getName(), 'dashlet' => $dashlet->getTitle()),
|
||||
array('title' => sprintf($this->translate('Edit dashlet %s'), $dashlet->getTitle()))
|
||||
); ?>
|
||||
</td>
|
||||
<td style="table-layout: fixed; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;">
|
||||
<a href="<?= $this->href($dashlet->getUrl()); ?>"><?= $dashlet->getUrl(); ?></a>
|
||||
<?= $this->qlink(
|
||||
$dashlet->getUrl(),
|
||||
$dashlet->getUrl(),
|
||||
null,
|
||||
array('title' => sprintf($this->translate('Show dashlet %s'), $dashlet->getTitle()))
|
||||
); ?>
|
||||
</td>
|
||||
<td>
|
||||
<?= $this->qlink(
|
||||
|
|
Loading…
Reference in New Issue