You are here

function imce_update_6001 in IMCE 6.2

Same name and namespace in other branches
  1. 6 imce.install \imce_update_6001()

New option: total user quota.

File

./imce.install, line 67
Installs, updates, and uninstalls IMCE.

Code

function imce_update_6001() {
  $profiles = variable_get('imce_profiles', array());
  foreach ($profiles as $id => $profile) {
    $profiles[$id]['tuquota'] = 0;
  }
  variable_set('imce_profiles', $profiles);
  return array();
}