You are here

devel_kint_extras.module in Devel Kint Extras 1.x

File

devel_kint_extras.module
View source
<?php

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

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

    // Main module help for the devel_kint_extras module.
    case 'help.page.devel_kint_extras':
      $output = '';
      $output .= '<h3>' . t('About') . '</h3>';
      $output .= '<p>' . t('Shows methods and statics available for an object when using Kint with Devel.') . '</p>';
      return $output;
    default:
  }
}

Functions

Namesort descending Description
devel_kint_extras_help Implements hook_help().