You are here

broken_link.module in Broken Link 8.2

Same filename and directory in other branches
  1. 8.3 broken_link.module

Contains broken_link.module.

File

broken_link.module
View source
<?php

/**
 * @file
 * Contains broken_link.module.
 */

/**
 * Implements hook_help().
 */
function broken_link_help($route_name, $route_match) {
  switch ($route_name) {

    // Main module help for the simple_responsive_table module.
    case 'help.page.broken_link':
      $output = '';
      $output .= '<h3>' . t('About') . '</h3>';
      $output .= '<p>' . t('Module will be needy one to handle many inbound links after Drupal migration.') . '</p>';
      $output .= '<h3>' . t('Configuration') . '</h3>';
      $output .= '<dl>';
      $output .= '<dt>' . t('Manage and configure broken link redirect in Administration » Configuration » System » Broken link redirect') . '</dt>';
      $output .= '<dd>' . t('Add/Edit broken link redirect entity with pattern and redirect path.') . '<br/>';
      $output .= t('Delete broken link redirect entity.') . '</dd>';
      $output .= '<dt>' . t('Manage broken link in Administration » Configuration » System » Broken link') . '</dt>';
      $output .= '<dd>' . t('Shows tracked broken link and number of hits.') . '<br/>';
      $output .= t('Delete tracked broken link.') . '</dd>';
      $output .= '</dl>';
      return $output;
    default:
  }
}

Functions

Namesort descending Description
broken_link_help Implements hook_help().