aboutsummaryrefslogtreecommitdiff
path: root/mod/guidtool/views/default/guidtool
diff options
context:
space:
mode:
Diffstat (limited to 'mod/guidtool/views/default/guidtool')
-rw-r--r--mod/guidtool/views/default/guidtool/gallery.php26
-rw-r--r--mod/guidtool/views/default/guidtool/listing.php31
-rw-r--r--mod/guidtool/views/default/guidtool/profile.php16
3 files changed, 73 insertions, 0 deletions
diff --git a/mod/guidtool/views/default/guidtool/gallery.php b/mod/guidtool/views/default/guidtool/gallery.php
new file mode 100644
index 000000000..9212df17b
--- /dev/null
+++ b/mod/guidtool/views/default/guidtool/gallery.php
@@ -0,0 +1,26 @@
+<?php
+ /**
+ * Elgg GUID Tool
+ *
+ * @package ElggGUIDTool
+ * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
+ * @author Marcus Povey
+ * @copyright Curverider Ltd 2008
+ * @link http://elgg.com/
+ */
+
+ global $CONFIG;
+
+ $entity = $vars['entity']->entity;
+ $by = $entity->getOwnerEntity();
+
+
+
+ $info .= "<p><b><a href=\"{$CONFIG->url}pg/guidtool/view/{$entity->guid}/\">" . get_class($entity) . "</a></b></p>";
+
+ $info .= "<div>";
+ if ($by) $info .= elgg_echo('by') . " <a href=\"".$by->getURL()."\">{$by->name}</a> ";
+ $info .= " " . friendly_time($entity->time_created )."</div>";
+
+ echo elgg_view_listing($icon, $info);
+?> \ No newline at end of file
diff --git a/mod/guidtool/views/default/guidtool/listing.php b/mod/guidtool/views/default/guidtool/listing.php
new file mode 100644
index 000000000..21d93b64a
--- /dev/null
+++ b/mod/guidtool/views/default/guidtool/listing.php
@@ -0,0 +1,31 @@
+<?php
+ /**
+ * Elgg GUID Tool
+ *
+ * @package ElggGUIDTool
+ * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
+ * @author Marcus Povey
+ * @copyright Curverider Ltd 2008
+ * @link http://elgg.com/
+ */
+
+ global $CONFIG;
+
+ $entity = $vars['entity']->entity;
+ $by = $entity->getOwnerEntity();
+
+ $icon = elgg_view(
+ 'graphics/icon', array(
+ 'entity' => $vars['entity'],
+ 'size' => 'small',
+ )
+ );
+
+ $info .= "<p><b><a href=\"{$CONFIG->url}pg/guidtool/view/{$entity->guid}/\">" . get_class($entity) . "</a></b></p>";
+
+ $info .= "<div>";
+ if ($by) $info .= elgg_echo('by') . " <a href=\"".$by->getURL()."\">{$by->name}</a> ";
+ $info .= " " . friendly_time($entity->time_created )."</div>";
+
+ echo elgg_view_listing($icon, $info);
+?> \ No newline at end of file
diff --git a/mod/guidtool/views/default/guidtool/profile.php b/mod/guidtool/views/default/guidtool/profile.php
new file mode 100644
index 000000000..d32141b11
--- /dev/null
+++ b/mod/guidtool/views/default/guidtool/profile.php
@@ -0,0 +1,16 @@
+<?php
+ /**
+ * Elgg GUID Tool
+ *
+ * @package ElggGUIDTool
+ * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
+ * @author Marcus Povey
+ * @copyright Curverider Ltd 2008
+ * @link http://elgg.com/
+ */
+
+ $entity_guid = $vars['entity_guid'];
+
+
+ echo elgg_view('export/entity', array('entity' => get_entity($entity_guid)));
+?> \ No newline at end of file