You are here

function imce_fileop_form in IMCE 6

Same name and namespace in other branches
  1. 6.2 inc/imce.page.inc \imce_fileop_form()
  2. 7 inc/imce.page.inc \imce_fileop_form()

File operations form.

2 string references to 'imce_fileop_form'
imce_content in inc/page.inc
Content of the file browser.
imce_process_fileop in inc/js.inc
Process file operations form

File

inc/page.inc, line 131

Code

function imce_fileop_form(&$form_state, $ref) {
  $imce =& $ref['imce'];
  $form['filenames'] = array(
    '#type' => 'textfield',
    '#title' => t('Selected files'),
    '#maxlength' => $imce['filenum'] ? $imce['filenum'] * 255 : NULL,
  );

  //thumbnail
  if (!empty($imce['thumbnails']) && imce_perm_exists($imce, 'thumb')) {
    $form['fset_thumb'] = array(
      '#type' => 'fieldset',
      '#title' => t('Thumbnails'),
    ) + imce_thumb_form($imce);
  }

  //delete
  if (imce_perm_exists($imce, 'delete')) {
    $form['fset_delete'] = array(
      '#type' => 'fieldset',
      '#title' => t('Delete'),
    ) + imce_delete_form($imce);
  }

  //resize
  if (imce_perm_exists($imce, 'resize')) {
    $form['fset_resize'] = array(
      '#type' => 'fieldset',
      '#title' => t('Resize'),
    ) + imce_resize_form($imce);
  }
  $form['#action'] = $imce['url'];
  return $form;
}