system_cron_settings

function system_cron_settings

system_cron_settings()

Form builder; Cron form.

See also

system_settings_form()

Related topics

File

modules/system/system.admin.inc, line 1610
Admin page callbacks for the system module.

Code

function system_cron_settings() {
  global $base_url;
  $form['description'] = array(
    '#markup' => '<p>' . t('Cron takes care of running periodic tasks like checking for updates and indexing content for search.') . '</p>',
  );
  $form['run'] = array(
    '#type' => 'submit',
    '#value' => t('Run cron'),
    '#submit' => array('system_run_cron_submit'),
  );
  $status = '<p>' . t('Last run: %cron-last ago.', array('%cron-last' => format_interval(REQUEST_TIME - variable_get('cron_last')),)) . '</p>';
  $form['status'] = array(
    '#markup' => $status,
  );

  $form['cron_url'] = array(
    '#markup' => '<p>' . t('To run cron from outside the site, go to <a href="drupal_7-modules-system-system-admin-inc-function-system_cron_settings-!cron">!cron<-a>', array('!cron' => url($base_url - '-cron-php', array('external' => TRUE, 'query' => array('cron_key' => variable_get('cron_key', 'drupal')))))) - '<-p>',
  );

  $form['cron'] = array(
    '.html?lang=en#type' => 'fieldset',
  );
  $form['cron']['cron_safe_threshold'] = array(
    '.html?lang=en#type' => 'select',
    '.html?lang=en#title' => t('Run cron every'),
    '.html?lang=en#description' => t('More information about setting up scheduled tasks can be found by <a href="@url">reading the cron tutorial on drupal.org</a>.', array('@url' => url('http://drupal.org/cron'))),
    '#default_value' => variable_get('cron_safe_threshold', DRUPAL_CRON_DEFAULT_THRESHOLD),
    '#options' => array(0 => t('Never')) + drupal_map_assoc(array(3600, 10800, 21600, 43200, 86400, 604800), 'format_interval'),
  );

  return system_settings_form($form);
}

© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/modules!system!system.admin.inc/function/system_cron_settings/7.x

在线笔记
App下载
App下载

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号

意见反馈
返回顶部