You are here

toggle_editable_fields.module in Toggle Editable fields 8

File

toggle_editable_fields.module
View source
<?php

/**
 * @file
 * Contains toggle_editable_fields.module.
 */
use Drupal\Core\Routing\RouteMatchInterface;

/**
 * Implements hook_help().
 */
function toggle_editable_fields_help($route_name, RouteMatchInterface $route_match) {
  $output = '';
  switch ($route_name) {

    // Main module help for the toggle_editable_fields module.
    case 'help.page.toggle_editable_fields':
      $output .= '<h3>' . t('About') . '</h3>';
      $output .= '<p>' . t('Bootstrap Toggle') . '</p>';
    default:
  }
  return $output;
}

Functions

Namesort descending Description
toggle_editable_fields_help Implements hook_help().