You are here

function elfinder_lib_path in elFinder file manager 8.2

Same name and namespace in other branches
  1. 6.2 elfinder.module \elfinder_lib_path()
  2. 6 elfinder.module \elfinder_lib_path()
  3. 7.3 elfinder.module \elfinder_lib_path()
  4. 7 elfinder.module \elfinder_lib_path()
  5. 7.2 elfinder.module \elfinder_lib_path()

library files path

3 calls to elfinder_lib_path()
elfinder_check_badpaths in ./elfinder.module
elfinder_connector_path in ./elfinder.module
library to filesystem connector path
elfinder_requirements in ./elfinder.install
Implements hook_requirements().

File

./elfinder.module, line 214

Code

function elfinder_lib_path($name = 'elfinder') {
  $path = drupal_get_path('module', 'elfinder') . '/vendor/' . $name;
  return $path;
}