You are here

time_field.module in Time Field For Drupal 8.x / 9.x 2.x

Same filename and directory in other branches
  1. 8 time_field.module

Contains time_field.module.

File

time_field.module
View source
<?php

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

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

    // Main module help for the time_field module.
    case 'help.page.time_field':
      $output = '';
      $output .= '<h3>' . t('What "Time field" module provides?') . '</h3>';
      $output .= '<p>' . t('This module provides Time and TimeRange fields also corresponding widgets and formatters.') . '</p>';
      $output .= '<h3>' . t('How it saves data?') . '</h3>';
      $output .= '<p>' . t('Time field module saves time data as integers number of seconds passed through midnight.') . '</p>';
      return $output;
    default:
  }
}

Functions

Namesort descending Description
time_field_help Implements hook_help().