diff options
Diffstat (limited to 'modules/latestupdates/views')
| -rw-r--r-- | modules/latestupdates/views/latestupdates_block.html.php | 10 | 
1 files changed, 10 insertions, 0 deletions
| diff --git a/modules/latestupdates/views/latestupdates_block.html.php b/modules/latestupdates/views/latestupdates_block.html.php new file mode 100644 index 00000000..b1dd9074 --- /dev/null +++ b/modules/latestupdates/views/latestupdates_block.html.php @@ -0,0 +1,10 @@ +<?php defined("SYSPATH") or die("No direct script access.") ?> +<ul id="g-update-list"> +<? foreach($update_links as $title => $url): ?> +  <li style="clear: both;"> +    <a href="<?= $url ?>"> +      <?= t($title) ?> +    </a> +  </li> +<? endforeach ?> +</ul> | 
