You are here

function matrix_help in Matrix field 8.2

Implements hook_help().

File

./matrix.module, line 15
Contains matrix.module.

Code

function matrix_help($route_name, RouteMatchInterface $route_match) {
  switch ($route_name) {

    // Main module help for the matrix module.
    case 'help.page.matrix':
      $output = '';
      $output .= '<h3>' . t('About') . '</h3>';
      $output .= '<p>' . t('Defines field type for table with textfields') . '</p>';
      return $output;
    default:
  }
}