aboutsummaryrefslogtreecommitdiff
path: root/mod/embed/embed.php
diff options
context:
space:
mode:
Diffstat (limited to 'mod/embed/embed.php')
-rw-r--r--mod/embed/embed.php38
1 files changed, 38 insertions, 0 deletions
diff --git a/mod/embed/embed.php b/mod/embed/embed.php
new file mode 100644
index 000000000..461bbdebb
--- /dev/null
+++ b/mod/embed/embed.php
@@ -0,0 +1,38 @@
+<?php
+
+ // This page can only be run from within the Elgg framework
+ if (!is_callable('elgg_view')) exit;
+
+ // Get the name of the form field we need to inject into
+ $internalname = get_input('internalname');
+
+ if (!isloggedin()) exit;
+
+ global $SESSION;
+
+ $offset = (int) get_input('offset',0);
+ $simpletype = get_input('simpletype');
+ $entity_types = array('object' => array('file'));
+
+ if (empty($simpletype)) {
+ $count = elgg_get_entities(array('type' => 'object', 'subtype' => 'file', 'owner_guid' => $SESSION['user']->guid, 'count' => TRUE));
+ $entities = elgg_get_entities(array('type' => 'object', 'subtype' => 'file', 'owner_guid' => $SESSION['user']->guid, 'limit' => 6, 'offset' => $offset));
+ } else {
+ $count = elgg_get_entities_from_metadata(array('metadata_name' => 'simpletype', 'metadata_value' => $simpletype, 'types' => 'object', 'subtypes' => 'file', 'owner_guid' => $SESSION['user']->guid, 'limit' => 6, 'offset' => $offset, 'count' => TRUE));
+ $entities = elgg_get_entities_from_metadata(array('metadata_name' => 'simpletype', 'metadata_value' => $simpletype, 'types' => 'object', 'subtypes' => 'file', 'owner_guid' => $SESSION['user']->guid, 'limit' => 6, 'offset' => $offset));
+ }
+
+ $types = get_tags(0,10,'simpletype','object','file',$SESSION['user']->guid);
+
+ // Echo the embed view
+ echo elgg_view('embed/media', array(
+ 'entities' => $entities,
+ 'internalname' => $internalname,
+ 'offset' => $offset,
+ 'count' => $count,
+ 'simpletype' => $simpletype,
+ 'limit' => 6,
+ 'simpletypes' => $types,
+ ));
+
+?> \ No newline at end of file