uppy-8.x-1.x-dev/uppy.module
uppy.module
<?php
/**
* @file
* Contains uppy.module.
*/
use Drupal\Core\Routing\RouteMatchInterface;
/**
* Implements hook_help().
*/
function uppy_help($route_name, RouteMatchInterface $route_match) {
switch ($route_name) {
// Main module help for the uppy module.
case 'help.page.uppy':
$output = '';
$output .= '<h3>' . t('About') . '</h3>';
$output .= '<p>' . t('Adds a field input widget for the Uppy file uploader') . '</p>';
return $output;
default:
}
}
