You are here

function fullcalendar_default_path in FullCalendar 7.2

The default path to the FullCalendar plugin.

3 calls to fullcalendar_default_path()
fullcalendar_admin_settings in includes/fullcalendar.admin.inc
General configuration form for controlling the FullCalendar behaviour.
fullcalendar_get_js_path in ./fullcalendar.module
Returns the path to the FullCalendar plugin.
fullcalendar_library in ./fullcalendar.module
Implements hook_library().

File

./fullcalendar.module, line 11
Provides a views style plugin for FullCalendar

Code

function fullcalendar_default_path() {
  return module_exists('libraries') ? libraries_get_path('fullcalendar') : 'sites/all/libraries/fullcalendar';
}