You are here

calendar_systems.module in Calendar Systems 8.2

Contains Calendar Systems hook implementations.

File

calendar_systems.module
View source
<?php

namespace Drupal\calendar_systems;


/**
 * @file
 * Contains Calendar Systems hook implementations.
 */

/**
 * @param $route_name
 * @param \Drupal\Core\Routing\RouteMatchInterface $route_match
 * @return string
 */
function calendar_systems_help($route_name, \Drupal\Core\Routing\RouteMatchInterface $route_match) {
  return Model::hook_help($route_name, $route_match);
}

/**
 * Implementation of hook_patch() of patch_manager module
 */
function calendar_systems_patch() {
  return Model::hook_patch();
}

Functions

Namesort descending Description
calendar_systems_help
calendar_systems_patch Implementation of hook_patch() of patch_manager module