function textimage_help in Textimage 7.3
Same name and namespace in other branches
- 8.4 textimage.module \textimage_help()
- 8.3 textimage.module \textimage_help()
- 5.2 textimage.module \textimage_help()
- 5 textimage.module \textimage_help()
- 6.2 textimage.module \textimage_help()
- 7.2 textimage.module \textimage_help()
Implements hook_help().
File
- ./
textimage.module, line 22 - Textimage - Provides text to image manipulations.
Code
function textimage_help($path, $arg) {
switch ($path) {
case 'admin/config/media/textimage':
$output = '<p>';
$output .= t('Textimage provides image effects to generate images with overlaid text.') . ' ';
$output .= t('Use <a href="@image">Image styles</a> features to create Image styles.', array(
'@image' => url('admin/config/media/image-styles'),
)) . ' ';
$output .= t('Adding Textimage effects to a style will identify it as relevant for Textimage.') . ' ';
$output .= t('On the edit image style form, a "Textimage options" section allows selecting Textimage-specific options for the style.');
$output .= '</p>';
return $output;
}
}