function elfinder_prepare_directory in elFinder file manager 7
Same name and namespace in other branches
- 8.2 elfinder.module \elfinder_prepare_directory()
- 6.2 elfinder.module \elfinder_prepare_directory()
- 6 elfinder.module \elfinder_prepare_directory()
- 7.3 elfinder.module \elfinder_prepare_directory()
- 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_filesystemconnector in ./elfinder.module 
- File browser to filesystem php connector callback
File
- ./elfinder.module, line 734 
Code
function elfinder_prepare_directory($directory) {
  $rc = NULL;
  $rc = file_prepare_directory($directory, FILE_CREATE_DIRECTORY);
  return $rc;
}