pterotype/inc/collections.php
Jeremy Dormitzer 1e808f3eca Make a number of changes after understanding the spec better
These include:

- enable querying activities and objects by ActivityPub id
- GET the outbox
2018-09-18 22:55:47 -04:00

13 lines
302 B
PHP

<?php
namespace collections;
function make_ordered_collection( $objects ) {
$ordered_collection = array(
'@context' => 'https://www.w3.org/ns/activitystreams',
'type' => 'OrderedCollection',
'totalItems' => count( $objects ),
'orderedItems' => $objects
);
}
?>