| Versions | |
|---|---|
| 4.7 – 5 | fileupload_help($section) |
Implementation of hook_help.
developer/
<?php
function fileupload_help($section) {
switch ($section) {
case 'admin/modules#description':
return t('An example module to demonstrate file uploads.');
case 'node/add#fileupload':
return t('Simple file upload node example.');
}
}
?>