You are here

function _epsacrop_get_path_from_fid in EPSA Crop - Image Cropping 6

Same name and namespace in other branches
  1. 6.2 epsacrop.module \_epsacrop_get_path_from_fid()
2 calls to _epsacrop_get_path_from_fid()
theme_epsacrop_widget_item in ./epsacrop.module
fonction theme qui ajouter le lien gérer le crop
_epsacrop_update_file in ./epsacrop.module

File

./epsacrop.module, line 334
The main file of module

Code

function _epsacrop_get_path_from_fid($fid) {
  if (!empty($fid) && is_numeric($fid)) {
    return (string) db_result(db_query_range("SELECT filepath FROM {files} WHERE fid = %d", $fid, 0, 1));
  }
  return FALSE;
}