3
0
Fork 0
mirror of https://github.com/farmOS/farmOS.git synced 2024-02-23 11:37:38 +01:00
farmOS/modules/core/update/farm_update.api.php

33 lines
569 B
PHP
Raw Normal View History

<?php
/**
* @file
* Hooks provided by farm_update.
*
* This file contains no working PHP code; it exists to provide additional
* documentation for doxygen as well as to document hooks in the standard
* Drupal manner.
*/
/**
* @addtogroup hooks
* @{
*/
/**
* Specify config items that should be excluded from automatic updates.
*
* @return array
* An array of config item names.
*/
function hook_farm_update_exclude_config() {
return [
'views.view.farm_log.yml',
'asset.type.structure.yml',
];
}
/**
* @} End of "addtogroup hooks".
*/