diff options
Diffstat (limited to 'mod/ecml/views/default')
-rw-r--r-- | mod/ecml/views/default/ecml/keywords/entity.php | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/mod/ecml/views/default/ecml/keywords/entity.php b/mod/ecml/views/default/ecml/keywords/entity.php new file mode 100644 index 000000000..47d0244cb --- /dev/null +++ b/mod/ecml/views/default/ecml/keywords/entity.php @@ -0,0 +1,22 @@ +<?php +/** + * ECML Generic Object GUID + * + * @package ECML + * @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.org/ + */ + +$guid = $vars['guid']; + +if ($entity = get_entity($guid)) { + echo elgg_view('output/url', array( + 'href' => $entity->getURL(), + 'title' => $entity->title, + 'text' => "<img src={$entity->getIcon('tiny')}>" . $entity->title + )); +} else { + echo elgg_echo('ecml:entity:invalid'); +}
\ No newline at end of file |