Browse Source

Add a docs link when given

pull/1311/head
Joas Schilling 10 years ago
parent
commit
3dabfb0793
No known key found for this signature in database GPG Key ID: E166FD8976B3BAC8
  1. 9
      apps/workflowengine/templates/admin.php

9
apps/workflowengine/templates/admin.php

@ -25,7 +25,14 @@
<div id="<?php p($_['appid']); ?>" class="section workflowengine">
<h2 class="inlineblock"><?php p($_['heading']); ?></h2>
<?php if ($_['description']): ?>
<?php if (!empty($_['docs'])): ?>
<a target="_blank" rel="noreferrer" class="icon-info svg"
title="<?php p($l->t('Open documentation'));?>"
href="<?php p(link_to_docs($_['docs'])); ?>">
</a>
<?php endif; ?>
<?php if (!empty($_['description'])): ?>
<p><?php p($_['description']); ?></p>
<?php endif; ?>

Loading…
Cancel
Save