13 lines
302 B
PHP
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
|
||
|
);
|
||
|
}
|
||
|
?>
|