| 7 image_example.module | image_example_help($path) |
| 8 image_example.module | image_example_help($path) |
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;
}
}
Login or register to post comments