function image_widget_crop_help in Image Widget Crop 8
Same name and namespace in other branches
- 8.2 image_widget_crop.module \image_widget_crop_help()
Implements hook_help().
File
- ./
image_widget_crop.module, line 20 - Contains image_widget_crop.module.
Code
function image_widget_crop_help($route_name, RouteMatchInterface $route_match) {
switch ($route_name) {
case 'help.page.image_widget_crop':
$output = '';
$output .= '<h3>' . t('About') . '</h3>';
$output .= '<p>' . t('Implement CROP API into the fields image');
$output .= '<h3>' . t('Try module') . '</h3>';
$output .= '<p>' . t('You can Test ImageWidgetCrop in action directly with the sub-module, "ImageWidgetCrop example" to test differents usecase of this module');
$output .= '</dl>';
return $output;
}
}