You are here

function template_preprocess_filedepot_newfolderdialog in filedepot 7

Same name and namespace in other branches
  1. 6 lib-theme.php \template_preprocess_filedepot_newfolderdialog()

File

./lib-theme.php, line 505
lib-theme.php Theme support functions for the module

Code

function template_preprocess_filedepot_newfolderdialog(&$variables) {
  $variables['folder_options'] = filedepot_recursiveAccessOptions('admin', $variables['cid']);
  $variables['LANG_folder'] = t('Folder Name');
  $variables['LANG_description'] = t('Description');
  $variables['LANG_inherit'] = t('Inherit Parent Permissions');
  $variables['LANG_submit'] = t('Submit');
  $variables['LANG_cancel'] = t('Cancel');
}