aboutsummaryrefslogtreecommitdiff
path: root/mod/pages/views/default/annotation/page.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/page.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/page.php')
-rw-r--r--mod/pages/views/default/annotation/page.php40
1 files changed, 0 insertions, 40 deletions
diff --git a/mod/pages/views/default/annotation/page.php b/mod/pages/views/default/annotation/page.php
deleted file mode 100644
index ff06178ec..000000000
--- a/mod/pages/views/default/annotation/page.php
+++ /dev/null
@@ -1,40 +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);
-
- $icon = elgg_view(
- "annotation/icon", array(
- 'annotation' => $vars['annotation'],
- 'size' => 'small',
- )
- );
-
- $owner_guid = $annotation->owner_guid;
- $owner = get_entity($owner_guid);
-
- $rev = sprintf(elgg_echo('pages:revision'),
- friendly_time($annotation->time_created),
-
- "<a href=\"" . $owner->getURL() . "\">" . $owner->name ."</a>"
- );
-
- $link = $entity->getURL() . "?rev=" . $annotation->id;
-
- $info = <<< END
-
-<div><a href="$link">{$entity->title}</a></div>
-<div>$rev</div>
-END;
-
- echo elgg_view_listing($icon, $info);
-?> \ No newline at end of file