You are here

function imce_js_rmdir in IMCE Mkdir 7

Same name and namespace in other branches
  1. 6 imce_mkdir.module \imce_js_rmdir()

Ajax operation: rmdir

File

./imce_mkdir.module, line 58

Code

function imce_js_rmdir(&$imce) {
  if ($imce['perm']['rmdir']) {
    $_POST['op'] = t('Remove');
    drupal_get_form('imce_mkdir_form', array(
      'imce' => &$imce,
    ));
    return array(
      'dirremoved' => array_map('rawurlencode', $imce['dirremoved']),
    );
  }
}