function imce_js_rmdir in IMCE Mkdir 6
Same name and namespace in other branches
- 7 imce_mkdir.module \imce_js_rmdir()
Ajax operation: rmdir
File
- ./
imce_mkdir.module, line 60
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']),
);
}
}