You are here

function update_helper_checklist_checklistapi_checklist_info in Update helper 8

Same name and namespace in other branches
  1. 2.x modules/update_helper_checklist/update_helper_checklist.module \update_helper_checklist_checklistapi_checklist_info()

Implements hook_checklistapi_checklist_info().

File

modules/update_helper_checklist/update_helper_checklist.module, line 20
Update helper checklist hooks.

Code

function update_helper_checklist_checklistapi_checklist_info() {
  $definitions = [];
  $definitions['update_helper_checklist'] = [
    '#title' => t('Update helper instructions'),
    '#path' => '/admin/config/development/update-helper',
    '#description' => t('Provides steps to keep your site up to date.'),
    '#callback' => '_update_helper_checklist_checklistapi_checklist_items',
    '#storage' => 'state',
  ];
  return $definitions;
}