You are here

function advpoll_module_implements_alter in Advanced Poll 8

Implements hook_module_implements_alter().

File

./advpoll.module, line 162

Code

function advpoll_module_implements_alter(&$implementations, $hook) {

  // Disabling cron from the Poll module because it disables all ended polls.
  if ($hook == 'cron') {
    unset($implementations['poll']);
  }
}