You are here

function webfm_file_att_access in Web File Manager 5

1 call to webfm_file_att_access()
webfm_ajax in ./webfm.module
Ajax post requests

File

./webfm.module, line 2013

Code

function webfm_file_att_access($webfm_file) {
  if ((int) $webfm_file->perm & WEBFM_FILE_ACCESS_ROLE_ATTACH) {
    return webfm_path_access($webfm_file->fpath);
  }
  return FALSE;
}