You are here

hosting.feature.cron.inc in Hosting 6.2

Expose the cron feature to hostmaster.

File

cron/hosting.feature.cron.inc
View source
<?php

/**
 * @file
 *   Expose the cron feature to hostmaster.
 */

/**
 * Implementation of hook_hosting_feature().
 */
function hosting_cron_hosting_feature() {
  $features['cron'] = array(
    'title' => t('Cron queue'),
    'description' => t('Keeps track of running the cron process on all your sites.'),
    'status' => HOSTING_FEATURE_ENABLED,
    'module' => 'hosting_cron',
    'group' => 'optional',
  );
  return $features;
}

Functions

Namesort descending Description
hosting_cron_hosting_feature Implementation of hook_hosting_feature().