toggle_editable_fields.module in Toggle Editable fields 8
Contains toggle_editable_fields.module.
File
toggle_editable_fields.moduleView 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
Name | Description |
---|---|
toggle_editable_fields_help | Implements hook_help(). |