function rng_help in RNG - Events and Registrations 8.2
Same name and namespace in other branches
- 8 rng.module \rng_help()
- 3.x rng.module \rng_help()
Implements hook_help().
File
- ./
rng.module, line 18
Code
function rng_help($route_name, RouteMatchInterface $route_match) {
switch ($route_name) {
case 'rng.registration_type.overview':
$output = '<p>' . t('Each registration type is a form that is filled to create a registration. Events can choose which registration type to use for its registrations.') . '</p>';
return $output;
}
}