You are here

function elysia_cron_theme in Elysia Cron 7.2

Same name and namespace in other branches
  1. 5.2 elysia_cron.module \elysia_cron_theme()
  2. 5 elysia_cron.module \elysia_cron_theme()
  3. 6.2 elysia_cron.module \elysia_cron_theme()
  4. 6 elysia_cron.module \elysia_cron_theme()
  5. 7 elysia_cron.module \elysia_cron_theme()

Implementation of hook_theme().

File

./elysia_cron.module, line 1728

Code

function elysia_cron_theme() {
  return array(
    'elysia_cron_description' => array(
      'variables' => array(
        'job' => NULL,
      ),
    ),
    'elysia_cron_settings_form' => array(
      'render element' => 'form',
    ),
  );
}