bootstrap_layouts.module in Bootstrap Layouts 8
Same filename and directory in other branches
Contains bootstrap_layouts.module..
File
bootstrap_layouts.moduleView source
<?php
/**
* @file
* Contains bootstrap_layouts.module..
*/
use Drupal\Core\Routing\RouteMatchInterface;
/**
* Implements hook_help().
*/
function bootstrap_layouts_help($route_name, RouteMatchInterface $route_match) {
switch ($route_name) {
// Main module help for the bootstrap_layouts module.
case 'help.page.bootstrap_layouts':
$output = '';
$output .= '<h3>' . t('About') . '</h3>';
$output .= '<p>' . t('This module is going to generate layouts with Bootstrap grid system.') . '</p>';
return $output;
default:
}
}
Functions
Name![]() |
Description |
---|---|
bootstrap_layouts_help | Implements hook_help(). |