diff options
Diffstat (limited to 'engine/lib')
-rw-r--r-- | engine/lib/access.php | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/engine/lib/access.php b/engine/lib/access.php index 7120100bb..9765b2d58 100644 --- a/engine/lib/access.php +++ b/engine/lib/access.php @@ -625,6 +625,19 @@ END; return false;
}
+ /**
+ * Lists entities from an access collection
+ *
+ * @param $collection_id
+ * @param $entity_type
+ * @param $entity_subtype
+ * @param $owner_guid
+ * @param $limit
+ * @param $fullview
+ * @param $viewtypetoggle
+ * @param $pagination
+ * @return str
+ */
function list_entities_from_access_collection($collection_id, $entity_type = "", $entity_subtype = "", $owner_guid = 0, $limit = 10, $fullview = true, $viewtypetoggle = true, $pagination = true) {
$offset = (int) get_input('offset');
$limit = (int) $limit;
|