You are here

function imce_download_form in IMCE 7

Download form.

1 call to imce_download_form()
imce_fileop_form in inc/imce.page.inc
File operations form.

File

inc/imce.page.inc, line 285
Implements the file browser.

Code

function imce_download_form(&$imce) {
  $form['download'] = array(
    '#type' => 'submit',
    '#value' => t('Download'),
    '#submit' => NULL,
  );
  return $form;
}