aboutsummaryrefslogtreecommitdiff
path: root/mod/pages/views/default/annotation/page.php
diff options
context:
space:
mode:
authorbrettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544>2010-07-15 17:59:57 +0000
committerbrettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544>2010-07-15 17:59:57 +0000
commitbcfbbf1b7cf2a0c96af1dfe55c919c09eceac916 (patch)
treee22653836d685eedbe81df5f4b1c118e6324c86d /mod/pages/views/default/annotation/page.php
parentff5846ea6cb4e5edc84c99c6eda7b37dccce8bf5 (diff)
downloadelgg-bcfbbf1b7cf2a0c96af1dfe55c919c09eceac916.tar.gz
elgg-bcfbbf1b7cf2a0c96af1dfe55c919c09eceac916.tar.bz2
First pass at standardizing pages.
git-svn-id: http://code.elgg.org/elgg/trunk@6716 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod/pages/views/default/annotation/page.php')
-rw-r--r--mod/pages/views/default/annotation/page.php60
1 files changed, 27 insertions, 33 deletions
diff --git a/mod/pages/views/default/annotation/page.php b/mod/pages/views/default/annotation/page.php
index ecfd0a302..c59c80567 100644
--- a/mod/pages/views/default/annotation/page.php
+++ b/mod/pages/views/default/annotation/page.php
@@ -1,40 +1,34 @@
<?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-2010
- * @link http://elgg.com/
- */
-
- $annotation = $vars['annotation'];
- $entity = get_entity($annotation->entity_guid);
-
- $icon = elgg_view(
- "annotation/icon", array(
+/**
+ * Default page listing?
+ *
+ * @package ElggPages
+ */
+
+$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
-
+ )
+);
+
+$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);
-?>
+echo elgg_view_listing($icon, $info);