You are here

function upload_element_help in Upload element 6

Implementation of hook_help().

File

./upload_element.module, line 22
A module that provides two new elements to the FAPI for file handling.

Code

function upload_element_help($path, $arg) {
  switch ($path) {
    case 'admin/help#upload_element':
      $output = '<p>' . t('A module that provides two new FAPI elements to handle file uploads.') . '</p>';
      return $output;
  }
}