summaryrefslogtreecommitdiff
path: root/modules/latestupdates/views
diff options
context:
space:
mode:
authorNathan Kinkade <nkinkade@nkinka.de>2009-12-24 03:32:31 +0000
committerNathan Kinkade <nkinkade@nkinka.de>2009-12-24 03:32:31 +0000
commit925a6a2220760cb7daacee1ab80a07b61b3a30a1 (patch)
treefaa3406ca40970f1b0e4489be11a3464666906b1 /modules/latestupdates/views
parent5855c4333ce6929c63d5639c7623152d80447d47 (diff)
Added a 3rd party module that displays all the latest photos, paginated.
Diffstat (limited to 'modules/latestupdates/views')
-rw-r--r--modules/latestupdates/views/latestupdates_block.html.php10
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>