diff options
author | ben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-08-13 12:27:12 +0000 |
---|---|---|
committer | ben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-08-13 12:27:12 +0000 |
commit | 55724ff6f6818f2c1b16d4bacd912ae2eb745fdb (patch) | |
tree | 5365657ba47de2e891d84965a6ba2bb98d4783d8 /mod/pages/views/default/annotation/icon.php | |
parent | a6e012278e2a33721e91ae36a7fda65804785440 (diff) | |
download | elgg-55724ff6f6818f2c1b16d4bacd912ae2eb745fdb.tar.gz elgg-55724ff6f6818f2c1b16d4bacd912ae2eb745fdb.tar.bz2 |
Added a new latest activity title to the front page
git-svn-id: https://code.elgg.org/elgg/trunk@1895 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod/pages/views/default/annotation/icon.php')
-rw-r--r-- | mod/pages/views/default/annotation/icon.php | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/mod/pages/views/default/annotation/icon.php b/mod/pages/views/default/annotation/icon.php new file mode 100644 index 000000000..cb2548cb2 --- /dev/null +++ b/mod/pages/views/default/annotation/icon.php @@ -0,0 +1,32 @@ +<?php + /** + * Elgg Pages + * + * @package ElggPages + * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2 + * @author Curverider Ltd + * @copyright Curverider Ltd 2008 + * @link http://elgg.com/ + */ + + + $annotation = $vars['annotation']; + $entity = get_entity($annotation->entity_guid); + + // Get size + if (!in_array($vars['size'],array('small','medium','large','tiny','master','topbar'))) + $vars['size'] = "medium"; + + // Get any align and js + if (!empty($vars['align'])) { + $align = " align=\"{$vars['align']}\" "; + } else { + $align = ""; + } + + +?> + +<div class="groupicon"> +<a href="<?php echo $entity->getURL() . "?rev=" . $annotation->id; ?>"><img src="<?php echo $vars['url']; ?>mod/pages/graphics/default<?php echo $vars['size']; ?>.jpg" border="0" <?php echo $align; ?> <?php echo $vars['js']; ?> /></a> +</div>
\ No newline at end of file |