11 lines
523 B
PHP
11 lines
523 B
PHP
<?php $type = $this->RecoRecoHelper->iconType($task) ?>
|
|
<?php if ($type === 'template'): ?>
|
|
<span title="<?= t('RecoReco: recurring template') ?>">
|
|
<i class="fa fa-refresh fa-rotate-90" role="img" aria-label="<?= t('RecoReco: recurring template') ?>"></i>
|
|
</span>
|
|
<?php elseif ($type === 'clone'): ?>
|
|
<span title="<?= t('RecoReco: generated copy') ?>">
|
|
<i class="fa fa-refresh fa-rotate-90 fa-inverse" role="img" aria-label="<?= t('RecoReco: generated copy') ?>"></i>
|
|
</span>
|
|
<?php endif ?>
|