diff options
author | Thomas Lange <code@nerdmind.de> | 2017-04-29 01:09:30 +0200 |
---|---|---|
committer | Thomas Lange <code@nerdmind.de> | 2017-04-29 01:13:32 +0200 |
commit | 9626fb5c6a4d7451e88aa7bd7fa91306d3f3f1ea (patch) | |
tree | fd3a488d2f910781ef172b5447f3a476cdf0379e /template/admin/html/user | |
parent | 07eaab716f894b7668fd2aea6c3cbe81036efdf2 (diff) | |
download | blog-9626fb5c6a4d7451e88aa7bd7fa91306d3f3f1ea.tar.gz blog-9626fb5c6a4d7451e88aa7bd7fa91306d3f3f1ea.tar.xz blog-9626fb5c6a4d7451e88aa7bd7fa91306d3f3f1ea.zip |
Two changes have been made in this commit:
+ The method "Item::getArguments" has been optimized and checks now the syntax of the argument names (only A-Z, a-z, 0-9 and underscores are allowed).
+ The admin template has been changed and displays now the used arguments of an item within the list.
Diffstat (limited to 'template/admin/html/user')
-rw-r--r-- | template/admin/html/user/item.php | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/template/admin/html/user/item.php b/template/admin/html/user/item.php index 8f0cba1..13ba4ae 100644 --- a/template/admin/html/user/item.php +++ b/template/admin/html/user/item.php @@ -5,6 +5,15 @@ <blockquote cite="<?=$USER['URL']?>"> <p><?=excerpt($USER['BODY']['HTML'])?></p> </blockquote> + + <?php if($USER['ARGV']): ?> + <ul class="arguments"> + <?php foreach($USER['ARGV'] as $argument => $value): ?> + <li><strong><?=$argument?></strong>: <span class="blue"><?=escapeHTML($value)?></span></li> + <?php endforeach; ?> + </ul> + <?php endif; ?> + <footer> <ul> <li><a href="<?=$USER['URL']?>" target="_blank" title="<?=$Language->text('select_user')?>"><i class="fa fa-external-link"></i></a></li> |