You are here

function elysia_cron_channel_exists in Elysia Cron 6.2

Same name and namespace in other branches
  1. 7.2 elysia_cron.module \elysia_cron_channel_exists()
1 call to elysia_cron_channel_exists()
drush_elysia_cron_run_wrapper in ./elysia_cron.drush.inc
A drush command callback.

File

./elysia_cron.module, line 1464

Code

function elysia_cron_channel_exists($channel) {
  global $elysia_cron_settings_by_channel;
  return isset($elysia_cron_settings_by_channel[$channel]);
}