fileupload_help

Definition

fileupload_help($section)
developer/examples/fileupload.module, line 44

Description

Implementation of hook_help.

Code

<?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.');
  }
}
?>
 
 

All source code and documentation on this site is released under the terms of the GNU General Public License, version 2 and later. Drupal is a registered trademark of Dries Buytaert.