1 update.module update_config_info()

Implements hook_config_info().

Related topics

File

core/modules/update/update.module, line 753
Handles update checking for Backdrop core and contributed projects.

Code

function update_config_info() {
  $prefixes['update.settings'] = array(
    'label' => t('Update settings'),
    'group' => t('Configuration'),
  );
  return $prefixes;
}