You are here

function image_widget_crop_help in Image Widget Crop 8.2

Same name and namespace in other branches
  1. 8 image_widget_crop.module \image_widget_crop_help()

Implements hook_help().

File

./image_widget_crop.module, line 18
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 different use case of this module');
      $output .= '</dl>';
      return $output;
  }
}