pterotype/inc/collections.php

13 lines
302 B
PHP
Raw Normal View History

<?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
);
}
?>