aboutsummaryrefslogtreecommitdiff
path: root/mod/guidtool/views/default/guidtool/gallery.php
diff options
context:
space:
mode:
Diffstat (limited to 'mod/guidtool/views/default/guidtool/gallery.php')
-rw-r--r--mod/guidtool/views/default/guidtool/gallery.php29
1 files changed, 0 insertions, 29 deletions
diff --git a/mod/guidtool/views/default/guidtool/gallery.php b/mod/guidtool/views/default/guidtool/gallery.php
deleted file mode 100644
index 23148ee50..000000000
--- a/mod/guidtool/views/default/guidtool/gallery.php
+++ /dev/null
@@ -1,29 +0,0 @@
-<?php
- /**
- * Elgg GUID Tool
- *
- * @package ElggGUIDTool
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider Ltd
- * @copyright Curverider Ltd 2008-2009
- * @link http://elgg.com/
- */
-
- global $CONFIG;
-
- $entity = $vars['entity']->entity;
- $by = $entity->getOwnerEntity();
-
-
- $strap = $entity->title ? $entity->title : $entity->name;
- $info .= "<p><b><a href=\"{$CONFIG->url}pg/guidtool/view/{$entity->guid}/\">[GUID:{$entity->guid}] " . get_class($entity) . " " . get_subtype_from_id($entity->subtype) . "</a></b> $strap</p>";
-
- $desc = $entity->description ? substr($entity->description, 0, 100) : "";
- $info .= "<p>$desc</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