Browse Source

Rosie is right

Adding default to $object argument in derivative_alter hook
implementation to be congruent with the API definition
pull/673/head
Diego Pino Navarro 8 years ago
parent
commit
6dfaf007f7
  1. 2
      tests/islandora_derivatives_test.module

2
tests/islandora_derivatives_test.module

@ -48,7 +48,7 @@ function islandora_derivatives_test_some_cmodel_islandora_derivative() {
/** /**
* Implements hook_islandora_CMODEL_PID_derivative_alter(). * Implements hook_islandora_CMODEL_PID_derivative_alter().
*/ */
function islandora_derivatives_test_some_cmodel_islandora_derivative_alter(&$derivatives, AbstractObject $object, $ds_modified_params) { function islandora_derivatives_test_some_cmodel_islandora_derivative_alter(&$derivatives, AbstractObject $object = NULL, $ds_modified_params = array()) {
// Use a mask to determine if only the label has been modified. // Use a mask to determine if only the label has been modified.
$diff = array_diff_key($ds_modified_params, array( $diff = array_diff_key($ds_modified_params, array(
'label' => NULL, 'label' => NULL,

Loading…
Cancel
Save