You are here

function image_example_help in Examples for Developers 7

Implements hook_help().

Related topics

File

image_example/image_example.module, line 63
Module file for image_example

Code

function image_example_help($path) {
  switch ($path) {
    case 'image_example/styles':
      $output = '<p>' . t('Use this form to upload an image and choose an Image Style to use when displaying the image. This demonstrates basic use of the Drupal 7 Image styles & effects system.') . '</p>';
      $output .= '<p>' . t('Image styles can be added/edited using the !link.', array(
        '!link' => l(t('Image styles UI'), 'admin/config/media/image-styles'),
      )) . '</p>';
      return $output;
  }
}