|
|
@ -117,7 +117,7 @@ function islandora_collection_node_postinsert($node) { |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
$node = array_pop($nodes); |
|
|
|
$node = array_pop($nodes); |
|
|
|
$url = "http://localhost:8181/islandora/rest/collection/$parent_collection"; |
|
|
|
$url = "http://127.0.0.1:8181/islandora/rest/collection/$parent_collection"; |
|
|
|
dd("REQUEST URL: $url"); |
|
|
|
dd("REQUEST URL: $url"); |
|
|
|
|
|
|
|
|
|
|
|
// Don't forget the trailing slash. |
|
|
|
// Don't forget the trailing slash. |
|
|
@ -155,7 +155,7 @@ function islandora_collection_node_postupdate($node) { |
|
|
|
|
|
|
|
|
|
|
|
$node = array_pop($nodes); |
|
|
|
$node = array_pop($nodes); |
|
|
|
$uuid = $node->uuid; |
|
|
|
$uuid = $node->uuid; |
|
|
|
httprl_request("http://localhost:8181/islandora/rest/collection/$uuid", |
|
|
|
httprl_request("http://127.0.0.1:8181/islandora/rest/collection/$uuid", |
|
|
|
array( |
|
|
|
array( |
|
|
|
'method' => 'PUT', |
|
|
|
'method' => 'PUT', |
|
|
|
'data' => json_encode($node), |
|
|
|
'data' => json_encode($node), |
|
|
@ -177,7 +177,7 @@ function islandora_collection_node_postdelete($node) { |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
$uuid = $node->uuid; |
|
|
|
$uuid = $node->uuid; |
|
|
|
httprl_request("http://localhost:8181/islandora/rest/collection/$uuid", |
|
|
|
httprl_request("http://127.0.0.1:8181/islandora/rest/collection/$uuid", |
|
|
|
array( |
|
|
|
array( |
|
|
|
'method' => 'DELETE', |
|
|
|
'method' => 'DELETE', |
|
|
|
)); |
|
|
|
)); |
|
|
|