You are here

function panels_get_file_path in Panels 5

panels path helper function

2 calls to panels_get_file_path()
panels_add_page in ./panels.module
Handle the add panels page
panels_edit_form in ./panels.module
Edit an already loaded panels.

File

./panels.module, line 133

Code

function panels_get_file_path($module, $file, $base_path = true) {
  if ($base_path) {
    $output = base_path();
  }
  return $output . drupal_get_path('module', $module) . '/' . $file;
}