You are here

paragraphs_class.module in Paragraphs Class 8

File

paragraphs_class.module
View source
<?php

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

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

    // Main module help for the paragraphs_class module.
    case 'help.page.paragraphs_class':
      $output = '';
      $output .= '<h3>' . t('About') . '</h3>';
      $output .= '<p>' . t('Add to Drupal 8 Paragraphs Experimental Widget Class throw Behaviors') . '</p>';
      return $output;
    default:
  }
}

Functions

Namesort descending Description
paragraphs_class_help Implements hook_help().