You are here

function getid3_get_path in getID3() 6

Same name and namespace in other branches
  1. 8 getid3.module \getid3_get_path()
  2. 5 getid3.module \getid3_get_path()
  3. 7 getid3.module \getid3_get_path()

Returns the path where getID3() is installed.

3 calls to getid3_get_path()
getid3_admin_settings_form in ./getid3.admin.inc
Administration settings for getID3().
getid3_load in ./getid3.module
Loads the getID3 library once and returns whether it was successfully loaded.
getid3_requirements in ./getid3.install
Implementation of hook_requirements()

File

./getid3.module, line 95

Code

function getid3_get_path() {
  return variable_get('getid3_path', 'sites/all/libraries/getid3/getid3');
}