function cloneimagefield_help in Node clone 5.2
Same name and namespace in other branches
- 5 cloneimagefield.module \cloneimagefield_help()
Implementation of hook_help().
File
- ./
cloneimagefield.module, line 7
Code
function cloneimagefield_help($section) {
switch ($section) {
case 'admin/help#cloneimagefield':
$output = '<p>' . t('The Clone Imagefield module works with the Clone Module and Imagefiled Module (a CCK field-type module) to copy attached images to be made when a node is cloned.') . '</p>';
return $output;
}
}