You are here

calendar_systems_fullcalendar.module in Calendar Systems 8.3

File

calendar_systems_fullcalendar/calendar_systems_fullcalendar.module
View source
<?php

/**
 * Implements hook_js_alter().
 *
 * Our js will be loaded via libraries.yml
 *
 * @param $javascript
 */
function calendar_systems_fullcalendar_js_alter(&$javascript) {
  $unset = [];
  foreach ($javascript as $key => $value) {
    if (strpos($key, 'fullcalendar.library') >= 0) {
      $unset[] = $key;
    }
  }
  foreach ($unset as $u) {
    unset($javascript[$u]);
  }
}

Functions