aboutsummaryrefslogtreecommitdiff
path: root/mod/pages/views/default/annotation/icon.php
diff options
context:
space:
mode:
authorben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544>2008-08-13 12:28:33 +0000
committerben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544>2008-08-13 12:28:33 +0000
commit090f60fb6ace958748752e439548f1fa8673258f (patch)
treea39aa1cf7beeb1ae657feb00edd785fecae94fc4 /mod/pages/views/default/annotation/icon.php
parent55724ff6f6818f2c1b16d4bacd912ae2eb745fdb (diff)
downloadelgg-090f60fb6ace958748752e439548f1fa8673258f.tar.gz
elgg-090f60fb6ace958748752e439548f1fa8673258f.tar.bz2
Once again removing an accidentally committed plugin
git-svn-id: https://code.elgg.org/elgg/trunk@1896 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod/pages/views/default/annotation/icon.php')
-rw-r--r--mod/pages/views/default/annotation/icon.php32
1 files changed, 0 insertions, 32 deletions
diff --git a/mod/pages/views/default/annotation/icon.php b/mod/pages/views/default/annotation/icon.php
deleted file mode 100644
index cb2548cb2..000000000
--- a/mod/pages/views/default/annotation/icon.php
+++ /dev/null
@@ -1,32 +0,0 @@
-<?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