You are here

function _plupload_library_path in Plupload integration 7.2

Same name and namespace in other branches
  1. 7 plupload.module \_plupload_library_path()

Returns the path to the plupload library.

3 calls to _plupload_library_path()
plupload_library in ./plupload.module
Implements hook_library().
plupload_requirements in ./plupload.install
Implements hook_requirements().
_plupload_requirements_version in ./plupload.install
Returns the version of the installed plupload library.

File

./plupload.module, line 304
Implementation of plupload.module.

Code

function _plupload_library_path() {
  return variable_get('plupload_library_path', module_exists('libraries') ? libraries_get_path('plupload') : 'sites/all/libraries/plupload');
}