3
0
Fork 0
mirror of https://github.com/farmOS/farmOS.git synced 2024-02-23 11:37:38 +01:00
farmOS/modules/taxonomy/log_category/farm_log_category.post_update.php
2022-11-16 10:44:03 -05:00

22 lines
569 B
PHP

<?php
/**
* @file
* Update hooks for farm_log_category.module.
*/
use Symfony\Component\Yaml\Yaml;
/**
* Create log categorize action.
*/
function farm_log_category_post_update_create_log_categorize_action(&$sandbox = NULL) {
$action_id = 'log_categorize_action';
$config_path = \Drupal::service('extension.list.module')->getPath('farm_log_category') . "/config/optional/system.action.$action_id.yml";
$data = Yaml::parseFile($config_path);
\Drupal::configFactory()
->getEditable("system.action.$action_id")
->setData($data)
->save(TRUE);
}