You are here

function elfinder_prepare_directory in elFinder file manager 6.2

Same name and namespace in other branches
  1. 8.2 elfinder.module \elfinder_prepare_directory()
  2. 6 elfinder.module \elfinder_prepare_directory()
  3. 7.3 elfinder.module \elfinder_prepare_directory()
  4. 7 elfinder.module \elfinder_prepare_directory()
  5. 7.2 elfinder.module \elfinder_prepare_directory()

prepare directory for files

2 calls to elfinder_prepare_directory()
elfinder_admin_form_validate in inc/elfinder.admin.inc
Validate form data
elfinder_admin_form_validate in inc/elfinder.admin.profiles.inc
Validate form data

File

./elfinder.module, line 1140

Code

function elfinder_prepare_directory($directory) {
  $rc = file_check_directory($directory, FILE_CREATE_DIRECTORY);
  return $rc;
}