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.
16 lines
510 B
16 lines
510 B
<?php |
|
|
|
/** |
|
* @file |
|
* Install/update hook implementations. |
|
*/ |
|
|
|
/** |
|
* Add Media Attributes from IIIF action. |
|
*/ |
|
function islandora_iiif_update_92001(&$sandbox) { |
|
$config_id = 'system.action.media_attributes_from_iiif_action'; |
|
$config_path = \Drupal::service('extension.list.module')->getPath('islandora_iiif') . '/config/optional/' . $config_id .'.yml'; |
|
$data = \Symfony\Component\Yaml\Yaml::parseFile($config_path); |
|
\Drupal::configFactory()->getEditable($config_id)->setData($data)->save(TRUE); |
|
}
|
|
|