You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
1.0 KiB
27 lines
1.0 KiB
<?php |
|
|
|
function islandora_ingest_get_information(AbstractFedoraObject $collection_object) { |
|
$models = $collection_object->models; |
|
$collection_info = module_invoke_all('islandora_ingest_get_information', $models, $collection_object); |
|
|
|
return $collection_info; |
|
} |
|
|
|
function islandora_ingest_get_object($content_models, $collection_pid, $relationship, $namespace) { |
|
module_load_include('inc', 'islandora', 'RestConnection'); |
|
global $user; |
|
$connection = new RestConnection($user); |
|
$object = $connection->repository->constructObject($namespace); |
|
foreach($content_models as $content_model) { |
|
$object->relationships->add(FEDORA_MODEL_URI, 'hasModel', $content_model); |
|
} |
|
$object->relationships->add($relationship['uri'], $relationship['value'], $collection_pid); |
|
module_invoke_all('islandora_ingest_pre_ingest', $object, $content_models, $collection_pid); |
|
return $object; |
|
} |
|
|
|
function islandora_ingest_add_object(&$object) { |
|
$object->repository->ingestObject($object); |
|
module_invoke_all('islandora_ingest_post_ingest', $object); |
|
return $object; |
|
} |