Newer
Older
// $Id$
/**
* @file
* Configuration system that lets administrators modify the workings of the site.
*/

Dries Buytaert
committed
/**
* Implementation of hook_help().
*/
function system_help($section) {

Dries Buytaert
committed
switch ($section) {

Dries Buytaert
committed
case 'admin/help#system':
$output = '<p>'. t('The system module provides system-wide defaults such as running jobs at a particular time, and storing web pages to improve efficiency. The ability to run scheduled jobs makes administering the web site more usable, as administrators do not have to manually start jobs. The storing of web pages, or caching, allows the site to efficiently re-use web pages and improve web site performance. The settings module provides control over preferences, behaviours including visual and operational settings.') .'</p>';

Dries Buytaert
committed
$output .= '<p>'. t('Some modules require regularly scheduled actions, such as cleaning up logfiles. Cron, which stands for chronograph, is a periodic command scheduler executing commands at intervals specified in seconds. It can be used to control the execution of daily, weekly and monthly jobs (or anything with a period measured in seconds). The aggregator module periodically updates feeds using cron. Ping periodically notifies services of new content on your site. Search periodically indexes the content on your site. Automating tasks is one of the best ways to keep a system running smoothly, and if most of your administration does not require your direct involvement, cron is an ideal solution. Cron can, if necessary, also be run manually.') .'</p>';

Dries Buytaert
committed
$output .= '<p>'. t('There is a caching mechanism which stores dynamically generated web pages in a database. By caching a web page, the system module does not have to create the page each time someone wants to view it, instead it takes only one SQL query to display it, reducing response time and the server\'s load. Only pages requested by <em>anonymous</em> users are cached. In order to reduce server load and save bandwidth, the system module stores and sends cached pages compressed.') .'</p>';
$output .= t('<p>You can</p>
<ul>
<li>activate your cron job on the cron page <a href="@file-cron">cron.php</a>.</li>
<li>read how to <a href="@external-http-drupal-org-cron">configure cron jobs</a>.</li>
<li>administer cache settings in <a href="@admin-settings">administer >> site configuration >> page caching</a>.</li>
<li><a href="@cron-status">view</a> whether or not cron is running on your site.</li>
<li>run cron <a href="@cron-manually">manually</a>.</li>

Dries Buytaert
committed
</ul>

Steven Wittens
committed
', array('@file-cron' => 'cron.php', '@external-http-drupal-org-cron' => 'http://drupal.org/cron', '@cron-status' => url('admin/logs/status'), '@cron-manually' => url('admin/logs/status/run-cron'), '@admin-settings' => url('admin/settings/page-caching')));
$output .= '<p>'. t('For more information please read the configuration and customization handbook <a href="@system">System page</a>.', array('@system' => 'http://drupal.org/handbook/modules/system/')) .'</p>';

Dries Buytaert
committed
return $output;

Dries Buytaert
committed
case 'admin':

Dries Buytaert
committed
return t('<p>Welcome to the administration section. Here you may control how your site functions.</p>');

Steven Wittens
committed
case 'admin/by-module':
return t('<p>This page shows you all available administration tasks for each module.</p>');
case 'admin/settings/page-caching':
return t('Enabling the cache will offer a sufficient performance boost. Drupal can store and send compressed cached pages requested by "anonymous" users. By caching a web page, Drupal does not have to create the page each time someone wants to view it.');

Dries Buytaert
committed
case 'admin/build/themes':
return t('<p>Select which themes are available to your users and specify the default theme. To configure site-wide display settings, click the "configure" task above. Alternately, to override these settings in a specific theme, click the "configure" link for the corresponding theme. Note that different themes may have different regions available for rendering content like blocks. If you want consistency in what your users see, you may wish to enable only one theme.</p>');

Dries Buytaert
committed
case 'admin/build/themes/settings':
return t('<p>These options control the default display settings for your entire site, across all themes. Unless they have been overridden by a specific theme, these settings will be used.</p>');

Dries Buytaert
committed
case 'admin/build/themes/settings/'. arg(3):
$reference = explode('.', arg(3), 2);
$theme = array_pop($reference);
return t('<p>These options control the display settings for the <code>%template</code> theme. When your site is displayed using this theme, these settings will be used. By clicking "Reset to defaults," you can choose to use the <a href="@global">global settings</a> for this theme.</p>', array('%template' => $theme, '@global' => url('admin/build/themes/settings')));

Steven Wittens
committed
case 'admin/build/modules':

Dries Buytaert
committed
return t('<p>Modules are plugins for Drupal that extend its core functionality. Here you can select which modules are enabled. Click on the name of the module in the navigation menu for their individual configuration pages. Once a module is enabled, new <a href="@permissions">permissions</a> might be made available. Modules can automatically be temporarily disabled to reduce server load when your site becomes extremely busy by enabling the throttle.module and checking throttle. The auto-throttle functionality must be enabled on the <a href="@throttle">throttle configuration page</a> after having enabled the throttle module.</p>

Steven Wittens
committed
<p>It is important that <a href="@update-php">update.php</a> is run every time a module is updated to a newer version.</p><p>You can find all administration tasks belonging to a particular module on the <a href="@by-module">administration by module page</a>.', array('@permissions' => url('admin/user/access'), '@throttle' => url('admin/settings/throttle'), '@update-php' => $base_url .'/update.php', '@by-module' => url('admin/by-module')));

Dries Buytaert
committed
case 'admin/build/modules/uninstall':
return (t('<p>The uninstall process removes all data related to a module. To uninstall a module, you must first disable it. Not all modules support this feature.</p>'));

Steven Wittens
committed
case 'admin/logs/status':
return t('<p>Here you can find a short overview of your Drupal site\'s parameters as well as any problems detected with your installation. It is useful to copy/paste this information when you need support.</p>');

Dries Buytaert
committed
}

Dries Buytaert
committed
return array('administer site configuration', 'access administration pages', 'select different theme');
/**
* Implementation of hook_elements().
*/
function system_elements() {
// Top level form

Gerhard Killesreiter
committed
$type['form'] = array('#method' => 'post', '#action' => request_uri());

Dries Buytaert
committed
$type['checkbox'] = array('#input' => TRUE, '#return_value' => 1);
$type['submit'] = array('#input' => TRUE, '#name' => 'op', '#button_type' => 'submit', '#executes_submit_callback' => TRUE);
$type['button'] = array('#input' => TRUE, '#name' => 'op', '#button_type' => 'submit', '#executes_submit_callback' => FALSE);
$type['textfield'] = array('#input' => TRUE, '#size' => 60, '#maxlength' => 128, '#autocomplete_path' => FALSE);
$type['password'] = array('#input' => TRUE, '#size' => 30);

Gerhard Killesreiter
committed
$type['password_confirm'] = array('#input' => TRUE, '#process' => array('expand_password_confirm' => array()));
$type['textarea'] = array('#input' => TRUE, '#cols' => 60, '#rows' => 5);
$type['radios'] = array('#input' => TRUE, '#process' => array('expand_radios' => array()));

Dries Buytaert
committed
$type['radio'] = array('#input' => TRUE);
$type['checkboxes'] = array('#input' => TRUE, '#process' => array('expand_checkboxes' => array()), '#tree' => TRUE);

Dries Buytaert
committed
$type['select'] = array('#input' => TRUE);
$type['weight'] = array('#input' => TRUE, '#delta' => 10, '#default_value' => 0, '#process' => array('process_weight' => array()));

Dries Buytaert
committed
$type['date'] = array('#input' => TRUE, '#process' => array('expand_date' => array()), '#validate' => array('date_validate' => array()));

Dries Buytaert
committed
$type['file'] = array('#input' => TRUE, '#size' => 60);
// Form structure
$type['item'] = array();

Dries Buytaert
committed
$type['hidden'] = array('#input' => TRUE);
$type['value'] = array('#input' => TRUE);
$type['markup'] = array('#prefix' => '', '#suffix' => '');
$type['fieldset'] = array('#collapsible' => FALSE, '#collapsed' => FALSE);

Steven Wittens
committed
$items[] = array('path' => 'system/files', 'title' => t('File download'),
'callback' => 'file_download',
'access' => TRUE,
'type' => MENU_CALLBACK);
$access = user_access('administer site configuration');

Steven Wittens
committed
$items[] = array('path' => 'admin', 'title' => t('Administer'),

Dries Buytaert
committed
'access' => user_access('access administration pages'),

Dries Buytaert
committed
'callback' => 'system_main_admin_page',

Dries Buytaert
committed
'weight' => 9);

Steven Wittens
committed
$items[] = array('path' => 'admin/compact', 'title' => t('Compact mode'),

Dries Buytaert
committed
'access' => user_access('access administration pages'),
'callback' => 'system_admin_compact_page',
'type' => MENU_CALLBACK);

Steven Wittens
committed
$items[] = array('path' => 'admin/by-task', 'title' => t('By task'),

Steven Wittens
committed
'callback' => 'system_main_admin_page',
'type' => MENU_DEFAULT_LOCAL_TASK);

Steven Wittens
committed
$items[] = array('path' => 'admin/by-module', 'title' => t('By module'),

Steven Wittens
committed
'callback' => 'system_admin_by_module',
'type' => MENU_LOCAL_TASK,
'weight' => 2);

Dries Buytaert
committed
// menu items that are basically just menu blocks
$items[] = array(
'path' => 'admin/settings',

Steven Wittens
committed
'title' => t('Site configuration'),

Dries Buytaert
committed
'description' => t('Adjust basic site configuration options.'),
'position' => 'right',
'weight' => -5,
'callback' => 'system_settings_overview',
'access' => $access);
$items[] = array('path' => 'admin/build',

Steven Wittens
committed
'title' => t('Site building'),

Dries Buytaert
committed
'description' => t('Control how your site looks and feels.'),
'position' => 'right',
'weight' => -10,
'callback' => 'system_admin_menu_block_page',
'access' => $access);
$items[] = array(
'path' => 'admin/settings/admin',

Steven Wittens
committed
'title' => t('Administration theme'),

Dries Buytaert
committed
'description' => t('Settings for how your administrative pages should look.'),
'position' => 'left',

Dries Buytaert
committed
'callback' => 'drupal_get_form',
'callback arguments' => array('system_admin_theme_settings'),

Dries Buytaert
committed
'block callback' => 'system_admin_theme_settings',

Dries Buytaert
committed
'access' => $access);

Dries Buytaert
committed

Dries Buytaert
committed
$items[] = array(
'path' => 'admin/build/themes',

Steven Wittens
committed
'title' => t('Themes'),

Dries Buytaert
committed
'description' => t('Change which theme your site uses or allows users to set.'),

Dries Buytaert
committed
'callback' => 'drupal_get_form',
'callback arguments' => array('system_themes'),
'access' => $access);

Dries Buytaert
committed
$items[] = array(
'path' => 'admin/build/themes/select',

Steven Wittens
committed
'title' => t('List'),

Dries Buytaert
committed
'description' => t('Select the default theme.'),

Dries Buytaert
committed
'callback' => 'drupal_get_form',
'callback arguments' => array('system_themes'),

Dries Buytaert
committed
'access' => $access,
'type' => MENU_DEFAULT_LOCAL_TASK,
'weight' => -1);
$items[] = array('path' => 'admin/build/themes/settings',

Steven Wittens
committed
'title' => t('Configure'),

Dries Buytaert
committed
'callback' => 'drupal_get_form',
'callback arguments' => array('system_theme_settings'),

Dries Buytaert
committed
'access' => $access,

Steven Wittens
committed
$items[] = array('path' => 'admin/build/themes/settings/global', 'title' => t('Global settings'),

Dries Buytaert
committed
'callback' => 'drupal_get_form',
'callback arguments' => array('system_theme_settings'),
'access' => $access,
'type' => MENU_DEFAULT_LOCAL_TASK,
'weight' => -1);

Dries Buytaert
committed
if ($theme->status) {

Dries Buytaert
committed
$items[] = array('path' => 'admin/build/themes/settings/'. $theme->name, 'title' => $theme->name,

Dries Buytaert
committed
'callback' => 'drupal_get_form', 'callback arguments' => array('system_theme_settings', $theme->name),
'access' => $access, 'type' => MENU_LOCAL_TASK);

Dries Buytaert
committed
}

Steven Wittens
committed
$items[] = array('path' => 'admin/build/modules',

Steven Wittens
committed
'title' => t('Modules'),

Dries Buytaert
committed
'description' => t('Enable or disable add-on modules for your site.'),

Dries Buytaert
committed
'callback' => 'drupal_get_form',
'callback arguments' => array('system_modules'),

Dries Buytaert
committed
'access' => $access);
$items[] = array('path' => 'admin/build/modules/list',
'title' => t('List'),
'type' => MENU_DEFAULT_LOCAL_TASK,
'access' => $access);

Dries Buytaert
committed
$items[] = array('path' => 'admin/build/modules/list/confirm',
'title' => t('List'),
'callback' => 'drupal_get_form',
'callback arguments' => array('system_modules'),
'type' => MENU_CALLBACK,
'access' => $access);
$items[] = array('path' => 'admin/build/modules/uninstall',
'title' => t('Uninstall'),
'callback' => 'drupal_get_form',
'callback arguments' => array('system_modules_uninstall'),
'type' => MENU_LOCAL_TASK,
'access' => $access);

Dries Buytaert
committed
$items[] = array('path' => 'admin/build/modules/uninstall/confirm',
'title' => t('Uninstall'),
'callback' => 'drupal_get_form',
'callback arguments' => array('system_modules_uninstall'),
'type' => MENU_CALLBACK,
'access' => $access);
// Settings:
$items[] = array(
'path' => 'admin/settings/site-information',

Steven Wittens
committed
'title' => t('Site information'),

Dries Buytaert
committed
'description' => t('Change basic site information, such as the site name, slogan, e-mail address, mission, front page and more.'),

Dries Buytaert
committed
'callback' => 'drupal_get_form',
'callback arguments' => array('system_site_information_settings'));
$items[] = array(
'path' => 'admin/settings/error-reporting',

Steven Wittens
committed
'title' => t('Error reporting'),

Neil Drumm
committed
'description' => t('Control how Drupal deals with errors including 403/404 errors as well as PHP error reporting.'),

Dries Buytaert
committed
'callback' => 'drupal_get_form',
'callback arguments' => array('system_error_reporting_settings'));
$items[] = array(
'path' => 'admin/settings/page-caching',

Steven Wittens
committed
'title' => t('Page caching'),

Dries Buytaert
committed
'description' => t('Enable or disable page caching for anonymous users.'),

Dries Buytaert
committed
'callback' => 'drupal_get_form',
'callback arguments' => array('system_page_caching_settings'));
$items[] = array(
'path' => 'admin/settings/file-system',

Steven Wittens
committed
'title' => t('File system'),

Dries Buytaert
committed
'description' => t('Tell Drupal where to store uploaded files and how they are accessed.'),

Dries Buytaert
committed
'callback' => 'drupal_get_form',
'callback arguments' => array('system_file_system_settings'));
$items[] = array(
'path' => 'admin/settings/image-toolkit',

Steven Wittens
committed
'title' => t('Image toolkit'),

Dries Buytaert
committed
'description' => t('Choose which image toolkit to use if you have installed optional toolkits.'),

Dries Buytaert
committed
'callback' => 'drupal_get_form',
'callback arguments' => array('system_image_toolkit_settings'));

Dries Buytaert
committed
'path' => 'admin/content/rss-publishing',
'title' => t('RSS publishing'),

Dries Buytaert
committed
'description' => t('Configure the number of items per feed and whether feeds should be titles/teasers/full-text.'),

Dries Buytaert
committed
'callback' => 'drupal_get_form',
'callback arguments' => array('system_rss_feeds_settings'));
$items[] = array(
'path' => 'admin/settings/date-time',

Steven Wittens
committed
'title' => t('Date and time'),

Dries Buytaert
committed
'description' => t('Settings for how Drupal displays date and time, as well as the system\'s default timezone.'),

Dries Buytaert
committed
'callback' => 'drupal_get_form',
'callback arguments' => array('system_date_time_settings'));

Steven Wittens
committed
'path' => 'admin/settings/site-maintenance',

Steven Wittens
committed
'title' => t('Site maintenance'),

Dries Buytaert
committed
'description' => t('Take the site off-line for maintenance or bring it back online.'),

Dries Buytaert
committed
'callback' => 'drupal_get_form',

Steven Wittens
committed
'callback arguments' => array('system_site_maintenance_settings'));
$items[] = array(
'path' => 'admin/settings/clean-urls',

Steven Wittens
committed
'title' => t('Clean URLs'),

Dries Buytaert
committed
'description' => t('Enable or disable clean URLs for your site.'),

Dries Buytaert
committed
'callback' => 'drupal_get_form',
'callback arguments' => array('system_clean_url_settings'));

Steven Wittens
committed
// Logs:
$items[] = array(
'path' => 'admin/logs',

Steven Wittens
committed
'title' => t('Logs'),

Steven Wittens
committed
'description' => t('View system logs and other status information.'),
'callback' => 'system_admin_menu_block_page',
'weight' => 5,
'position' => 'left');
$items[] = array(
'path' => 'admin/logs/status',

Steven Wittens
committed
'title' => t('Status report'),

Steven Wittens
committed
'description' => t('Get a status report about your site\'s operation and any detected problems.'),
'callback' => 'system_status',

Steven Wittens
committed
'access' => $access);
$items[] = array(
'path' => 'admin/logs/status/run-cron',

Steven Wittens
committed
'title' => t('Run cron'),

Steven Wittens
committed
'callback' => 'system_run_cron',
'type' => MENU_CALLBACK);
$items[] = array(
'path' => 'admin/logs/status/php',
'title' => t('PHP'),
'callback' => 'system_php',
'type' => MENU_CALLBACK);
$items[] = array(
'path' => 'admin/logs/status/sql',
'title' => t('SQL'),
'callback' => 'system_sql',
'type' => MENU_CALLBACK);
else {
/**
* Use the administrative theme if the user is looking at a page in the admin/* path.
*/
if (arg(0) == 'admin') {
global $custom_theme;
$custom_theme = variable_get('admin_theme', '0');
drupal_add_css(drupal_get_path('module', 'system') .'/admin.css', 'core');
}
// Add the CSS for this module. We put this in !$may_cache so it is only
// added once per request.
drupal_add_css(drupal_get_path('module', 'system') .'/defaults.css', 'core');
drupal_add_css(drupal_get_path('module', 'system') .'/system.css', 'core');
}
/**
* Implementation of hook_user().
*
* Allows users to individually set their theme and time zone.
*/
function system_user($type, $edit, &$user, $category = NULL) {
if ($type == 'form' && $category == 'account') {
$form['theme_select'] = system_theme_select_form(t('Selecting a different theme will change the look and feel of the site.'), $edit['theme'], 2);
if (variable_get('configurable_timezones', 1)) {
$form['timezone'] = array('#type'=>'fieldset', '#title' => t('Locale settings'), '#weight' => 6);
$form['timezone']['timezone'] = array(

Dries Buytaert
committed
'#type' => 'select', '#title' => t('Time zone'), '#default_value' => strlen($edit['timezone']) ? $edit['timezone'] : variable_get('date_default_timezone', 0),
'#options' => $zones, '#description' => t('Select your current local time. Dates and times throughout this site will be displayed using this time zone.')

Dries Buytaert
committed
/**
* Provide the administration overview page.
*/
function system_main_admin_page($arg = NULL) {
// If we received an argument, they probably meant some other page.
// Let's 404 them since the menu system cannot be told we do not
// accept arguments.

Steven Wittens
committed
if (isset($arg) && substr($arg, 0, 3) != 'by-') {

Dries Buytaert
committed
return drupal_not_found();
}

Steven Wittens
committed
// Check for status report errors.
if (system_status(TRUE)) {
drupal_set_message(t('One or more problems were detected with your Drupal installation. Check the <a href="@status">status report</a> for more information.', array('@status' => url('admin/logs/status'))), 'error');
}

Dries Buytaert
committed
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
$menu = menu_get_item(NULL, 'admin');
usort($menu['children'], '_menu_sort');
foreach ($menu['children'] as $mid) {
$block = menu_get_item($mid);
if ($block['block callback'] && function_exists($block['block callback'])) {
$arguments = isset($block['block arguments']) ? $block['block arguments'] : array();
$block['content'] .= call_user_func_array($block['block callback'], $arguments);
}
$block['content'] .= theme('admin_block_content', system_admin_menu_block($block));
$blocks[] = $block;
}
return theme('admin_page', $blocks);
}
/**
* Provide a single block on the administration overview page.
*/
function system_admin_menu_block($block) {
$content = array();
if (is_array($block['children'])) {
usort($block['children'], '_menu_sort');
foreach ($block['children'] as $mid) {
$item = menu_get_item($mid);
if ($item['type'] & MENU_VISIBLE_IN_TREE) {
$content[] = $item;
}
}
}
return $content;
}
/**
* Provide a single block from the administration menu as a page.
* This function is often a destination for these blocks.
* For example, 'admin/content/types' needs to have a destination to be valid

Dries Buytaert
committed
* in the Drupal menu system, but too much information there might be
* hidden, so we supply the contents of the block.
*/
function system_admin_menu_block_page() {
$menu = menu_get_item(NULL, $_GET['q']);
$content = system_admin_menu_block($menu);
$output = theme('admin_block_content', $content);
return $output;
}
function system_admin_compact_page($mode = 'off') {
global $user;
user_save($user, array('admin_compact_mode' => ($mode == 'on')));
drupal_goto('admin');
}

Dries Buytaert
committed

Dries Buytaert
committed
/**

Dries Buytaert
committed
* This function allows selection of the theme to show in administration sections.

Dries Buytaert
committed
*/

Dries Buytaert
committed
function system_admin_theme_settings() {

Dries Buytaert
committed
$themes = system_theme_data();
ksort($themes);
$options[0] = t('System default');
foreach ($themes as $theme) {
$options[$theme->name] = $theme->name;
}
$form['admin_theme'] = array(
'#type' => 'select',
'#options' => $options,
'#title' => t('Administration theme'),
'#description' => t('Choose which theme the administration pages should display in. If you choose "System default" the administration pages theme will display in the same theme the rest of the site uses.'),
'#default_value' => variable_get('admin_theme', '0'),

Dries Buytaert
committed
);
// In order to give it our own submit, we have to give it the default submit
// too because the presence of a #submit will prevent the default #submit
// from being used. Also we want ours first.

Dries Buytaert
committed
$form['#submit']['system_admin_theme_submit'] = array();

Dries Buytaert
committed
$form['#submit']['system_settings_form_submit'] = array();

Dries Buytaert
committed
return system_settings_form($form);

Dries Buytaert
committed
}

Dries Buytaert
committed
function system_admin_theme_submit($form_id, $form_values) {

Dries Buytaert
committed
// If we're changing themes, make sure the theme has its blocks initialized.
if ($form_values['admin_theme'] != variable_get('admin_theme', '0')) {

Dries Buytaert
committed
$result = db_query("SELECT status FROM {blocks} WHERE theme = '%s'", $form_values['admin_theme']);
if (!db_num_rows($result)) {
system_initialize_theme_blocks($form_values['admin_theme']);
}
}
}
/*
* Returns a fieldset containing the theme select form.
*
* @param $description
* description of the fieldset
* @param $default_value
* default value of theme radios
* @param $weight
* weight of the fieldset
* @return
* a form array
*/
function system_theme_select_form($description = '', $default_value = '', $weight = 0) {
if (user_access('select different theme')) {
foreach (list_themes() as $theme) {
if ($theme->status) {
$enabled[] = $theme;
}
}
if (count($enabled) > 1) {
ksort($enabled);
$form['themes'] = array(
'#type' => 'fieldset',
'#title' => t('Theme configuration'),
'#description' => $description,
'#collapsible' => TRUE,
'#theme' => 'system_theme_select_form'
);
foreach ($enabled as $info) {
// For the default theme, revert to an empty string so the user's theme updates when the site theme is changed.
$info->key = $info->name == variable_get('theme_default', 'bluemarine') ? '' : $info->name;
$info->screenshot = dirname($info->filename) . '/screenshot.png';
$screenshot = file_exists($info->screenshot) ? theme('image', $info->screenshot, t('Screenshot for %theme theme', array('%theme' => $info->name)), '', array('class' => 'screenshot'), FALSE) : t('no screenshot');
$form['themes'][$info->key]['screenshot'] = array('#value' => $screenshot);
$form['themes'][$info->key]['description'] = array('#type' => 'item', '#title' => $info->name, '#value' => dirname($info->filename) . ($info->name == variable_get('theme_default', 'bluemarine') ? t('<br /> <em>(site default theme)</em>') : ''));
$options[$info->key] = '';
}
$form['themes']['theme'] = array('#type' => 'radios', '#options' => $options, '#default_value' => $default_value ? $default_value : '');
$form['#weight'] = $weight;
return $form;
}
}
}
function theme_system_theme_select_form($form) {

Dries Buytaert
committed
foreach (element_children($form) as $key) {
$row = array();
if (is_array($form[$key]['description'])) {

Dries Buytaert
committed
$row[] = drupal_render($form[$key]['screenshot']);
$row[] = drupal_render($form[$key]['description']);
$row[] = drupal_render($form['theme'][$key]);

Dries Buytaert
committed
}
$rows[] = $row;
}
$header = array(t('Screenshot'), t('Name'), t('Selected'));

Dries Buytaert
committed
$output = theme('table', $header, $rows);
return $output;
}
function _system_zonelist() {
$timestamp = time();
$zonelist = array(-11, -10, -9.5, -9, -8, -7, -6, -5, -4, -3.5, -3, -2, -1, 0, 1, 2, 3, 3.5, 4, 5, 5.5, 5.75, 6, 6.5, 7, 8, 9, 9.5, 10, 10.5, 11, 11.5, 12, 12.75, 13, 14);
$zones = array();
foreach ($zonelist as $offset) {
$zone = $offset * 3600;
$zones[$zone] = format_date($timestamp, 'custom', variable_get('date_format_long', 'l, F j, Y - H:i') . ' O', $zone);
}
return $zones;
}
function system_site_information_settings() {
$form['site_name'] = array(
'#type' => 'textfield',
'#title' => t('Name'),

Steven Wittens
committed
'#default_value' => variable_get('site_name', 'Drupal'),
'#description' => t('The name of this web site.'),
'#required' => TRUE
$form['site_mail'] = array(
'#type' => 'textfield',
'#title' => t('E-mail address'),
'#default_value' => variable_get('site_mail', ini_get('sendmail_from')),

Dries Buytaert
committed
'#description' => t('A valid e-mail address for this website, used by the auto-mailer during registration, new password requests, notifications, etc.')
$form['site_slogan'] = array(
'#type' => 'textfield',
'#title' => t('Slogan'),
'#default_value' => variable_get('site_slogan', ''),
'#description' => t('The slogan of this website. Some themes display a slogan when available.')
$form['site_mission'] = array(
'#type' => 'textarea',
'#title' => t('Mission'),
'#default_value' => variable_get('site_mission', ''),
'#description' => t('Your site\'s mission statement or focus.')
$form['site_footer'] = array(
'#type' => 'textarea',
'#title' => t('Footer message'),
'#default_value' => variable_get('site_footer', ''),
'#description' => t('This text will be displayed at the bottom of each page. Useful for adding a copyright notice to your pages.')
$form['anonymous'] = array(
'#type' => 'textfield',
'#title' => t('Anonymous user'),
'#default_value' => variable_get('anonymous', 'Anonymous'),

Dries Buytaert
committed
'#description' => t('The name used to indicate anonymous users.')
$form['site_frontpage'] = array(
'#type' => 'textfield',
'#title' => t('Default front page'),
'#default_value' => variable_get('site_frontpage', 'node'),
'#size' => 40,
'#description' => t('The home page displays content from this relative URL. If unsure, specify "node".'),
'#field_prefix' => url(NULL, NULL, NULL, TRUE) . (variable_get('clean_url', 0) ? '' : '?q=')

Dries Buytaert
committed
return system_settings_form($form);
// We check for clean URL support using an image on the client side.
'#type' => 'radios',
'#title' => t('Clean URLs'),
'#default_value' => variable_get('clean_url', 0),
'#options' => array(t('Disabled'), t('Enabled')),
'#description' => t('This option makes Drupal emit "clean" URLs (i.e. without <code>?q=</code> in the URL.)'),
);
if (!variable_get('clean_url', 0)) {
if (strpos(request_uri(), '?q=') !== FALSE) {
$form['clean_url']['#description'] .= t(' Before enabling clean URLs, you must perform a test to determine if your server is properly configured. If you are able to see this page again after clicking the "Run the clean URL test" link, the test has succeeded and the radio buttons above will be available. If instead you are directed to a "Page not found" error, you will need to change the configuration of your server. The <a href="@handbook">handbook page on Clean URLs</a> has additional troubleshooting information. !run-test', array('@handbook' => 'http://drupal.org/node/15365', '!run-test' => '<a href ="'. base_path() . 'admin/settings/clean-urls">'. t('Run the clean URL test') .'</a>'));
$form['clean_url']['#disabled'] = TRUE;
}
else {
$form['clean_url']['#description'] .= t(' You have successfully demonstrated that clean URLs work on your server. You are welcome to enable/disable them as you wish.');
$form['#collapsed'] = FALSE;

Dries Buytaert
committed
return system_settings_form($form);
}
function system_error_reporting_settings() {
'#title' => t('Default 403 (access denied) page'),
'#default_value' => variable_get('site_403', ''),
'#size' => 40,
'#description' => t('This page is displayed when the requested document is denied to the current user. If unsure, specify nothing.'),
'#field_prefix' => url(NULL, NULL, NULL, TRUE) . (variable_get('clean_url', 0) ? '' : '?q=')
'#title' => t('Default 404 (not found) page'),
'#default_value' => variable_get('site_404', ''),
'#size' => 40,
'#description' => t('This page is displayed when no other content matches the requested document. If unsure, specify nothing.'),
'#field_prefix' => url(NULL, NULL, NULL, TRUE) . (variable_get('clean_url', 0) ? '' : '?q=')

Dries Buytaert
committed
'#type' => 'select', '#title' => t('Error reporting'), '#default_value' => variable_get('error_level', 1),
'#options' => array(t('Write errors to the log'), t('Write errors to the log and to the screen')),
'#description' => t('Where Drupal, PHP and SQL errors are logged. On a production server it is recommended that errors are only written to the error log. On a test server it can be helpful to write logs to the screen.')
$period = drupal_map_assoc(array(3600, 10800, 21600, 32400, 43200, 86400, 172800, 259200, 604800, 1209600, 2419200), 'format_interval');
$period['1000000000'] = t('Never');
'#type' => 'select',
'#title' => t('Discard log entries older than'),
'#default_value' => variable_get('watchdog_clear', 604800),
'#options' => $period,
'#description' => t('The time log entries should be kept. Older entries will be automatically discarded. Requires crontab.')

Dries Buytaert
committed
return system_settings_form($form);
$description = '<p>'. t("The normal cache mode is suitable for most sites and does not cause any side effects. The aggressive cache mode causes Drupal to skip the loading (init) and unloading (exit) of enabled modules when serving a cached page. This results in an additional performance boost but can cause unwanted side effects.") .'</p>';
$problem_modules = array_unique(array_merge(module_implements('init'), module_implements('exit')));
sort($problem_modules);
if (count($problem_modules) > 0) {
$description .= '<p>'. t("<strong class=\"error\">The following enabled modules are incompatible with aggressive mode caching and will not function properly: %modules</strong>", array('%modules' => implode(', ', $problem_modules))) .'.</p>';
}
else {
$description .= '<p>'. t("<strong class=\"ok\">Currently, all enabled modules are compatible with the aggressive caching policy.</strong> Please note, if you use aggressive caching and enable new modules, you'll need to check this page again to ensure compatibility.") .'</p>';
}
'#title' => t('Caching mode'),
'#default_value' => variable_get('cache', CACHE_DISABLED),
'#options' => array(CACHE_DISABLED => t('Disabled'), CACHE_NORMAL => t('Normal (recommended, no side effects)'), CACHE_AGGRESSIVE => t('Aggressive (experts only, possible side effects)')),
'#description' => $description

Dries Buytaert
committed
$period = drupal_map_assoc(array(0, 60, 180, 300, 600, 900, 1800, 2700, 3600, 10800, 21600, 32400, 43200, 86400), 'format_interval');
$period[0] = t('none');
$form['cache_lifetime'] = array(
'#type' => 'select',
'#title' => t('Minimum cache lifetime'),
'#default_value' => variable_get('cache_lifetime', 0),
'#options' => $period,
'#description' => t('On high-traffic sites it can become necessary to enforce a minimum cache lifetime. The minimum cache lifetime is the minimum amount of time that will go by before the cache is emptied and recreated. A larger minimum cache lifetime offers better performance, but users will not see new content for a longer period of time.')

Dries Buytaert
committed
return system_settings_form($form);

Dries Buytaert
committed
'#type' => 'textfield',
'#title' => t('File system path'),
'#default_value' => file_directory_path(),
'#maxlength' => 255,

Neil Drumm
committed
'#description' => t('A file system path where the files will be stored. This directory has to exist and be writable by Drupal. If the download method is set to public this directory has to be relative to the Drupal installation directory, and be accessible over the web. When download method is set to private this directory should not be accessible over the web. Changing this location after the site has been in use will cause problems so only change this setting on an existing site if you know what you are doing.'),

Gerhard Killesreiter
committed
'#after_build' => array('system_check_directory'),

Dries Buytaert
committed
'#type' => 'textfield',
'#title' => t('Temporary directory'),
'#default_value' => file_directory_temp(),
'#maxlength' => 255,
'#description' => t('Location where uploaded files will be kept during previews. Relative paths will be resolved relative to the Drupal installation directory.'),

Gerhard Killesreiter
committed
'#after_build' => array('system_check_directory'),
$form['file_downloads'] = array(
'#type' => 'radios',
'#title' => t('Download method'),
'#default_value' => variable_get('file_downloads', FILE_DOWNLOADS_PUBLIC),

Neil Drumm
committed
'#options' => array(FILE_DOWNLOADS_PUBLIC => t('Public - files are available using HTTP directly.'), FILE_DOWNLOADS_PRIVATE => t('Private - files are transferred by Drupal.')),

Dries Buytaert
committed
'#description' => t('If you want any sort of access control on the downloading of files, this needs to be set to <em>private</em>. You can change this at any time, however all download URLs will change and there may be unexpected problems so it is not recommended.')

Dries Buytaert
committed
return system_settings_form($form);
}
function system_image_toolkit_settings() {

Dries Buytaert
committed
$toolkits_available = image_get_available_toolkits();
if (count($toolkits_available) > 1) {
$form['image_toolkit'] = array(
'#type' => 'radios',
'#title' => t('Select an image processing toolkit'),
'#default_value' => variable_get('image_toolkit', image_get_toolkit()),
'#options' => $toolkits_available

Dries Buytaert
committed
return system_settings_form($form);

Dries Buytaert
committed
}

Dries Buytaert
committed
$form['error'] = array('#value' => '<p>'. t("No image toolkits found. Drupal will use PHP's built-in GD library for image handling.") .'</p>');
return $form;
}
}
function system_rss_feeds_settings() {

Dries Buytaert
committed
$form['feed_default_items'] = array(
'#type' => 'select',
'#title' => t('Number of items per feed'),
'#default_value' => variable_get('feed_default_items', 10),

Dries Buytaert
committed
'#options' => drupal_map_assoc(array(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 15, 20, 25, 30)),
'#description' => t('The default number of items to include in a feed.')
$form['feed_item_length'] = array(
'#type' => 'select',
'#title' => t('Display of XML feed items'),
'#default_value' => variable_get('feed_item_length','teaser'),

Dries Buytaert
committed
'#options' => array('title' => t('Titles only'), 'teaser' => t('Titles plus teaser'), 'fulltext' => t('Full text')),
'#description' => t('Global setting for the length of XML feed items that are output by default.')

Dries Buytaert
committed

Dries Buytaert
committed
return system_settings_form($form);
// Date settings: possible date formats
$dateshort = array('Y-m-d H:i', 'm/d/Y - H:i', 'd/m/Y - H:i', 'Y/m/d - H:i',
'd.m.Y - H:i', 'm/d/Y - g:ia', 'd/m/Y - g:ia', 'Y/m/d - g:ia',
'M j Y - H:i', 'j M Y - H:i', 'Y M j - H:i',
'M j Y - g:ia', 'j M Y - g:ia', 'Y M j - g:ia');
$datemedium = array('D, Y-m-d H:i', 'D, m/d/Y - H:i', 'D, d/m/Y - H:i',
'D, Y/m/d - H:i', 'F j, Y - H:i', 'j F, Y - H:i', 'Y, F j - H:i',
'F j, Y - g:ia', 'j F Y - g:ia', 'Y, F j - g:ia', 'j. F Y - G:i');
$datelong = array('l, F j, Y - H:i', 'l, j F, Y - H:i', 'l, Y, F j - H:i',
'l, F j, Y - g:ia', 'l, j F Y - g:ia', 'l, Y, F j - g:ia', 'l, j. F Y - G:i');
// Date settings: construct choices for user
$form['date_default_timezone'] = array(
'#type' => 'select',
'#title' => t('Default time zone'),
'#default_value' => variable_get('date_default_timezone', 0),
'#options' => $zones,
'#description' => t('Select the default site time zone.')
$form['configurable_timezones'] = array(
'#type' => 'radios',
'#title' => t('Configurable time zones'),
'#default_value' => variable_get('configurable_timezones', 1),
'#options' => array(t('Disabled'), t('Enabled')),
'#description' => t('Enable or disable user-configurable time zones. When enabled, users can set their own time zone and dates will be updated accordingly.')
$form['date_format_short'] = array(
'#type' => 'select',
'#title' => t('Short date format'),
'#default_value' => variable_get('date_format_short', $dateshort[1]),
'#options' => $dateshortchoices,
'#description' => t('The short format of date display.')
$form['date_format_medium'] = array(
'#type' => 'select',
'#title' => t('Medium date format'),
'#default_value' => variable_get('date_format_medium', $datemedium[1]),
'#options' => $datemediumchoices,
'#description' => t('The medium sized date display.')
$form['date_format_long'] = array(
'#type' => 'select',
'#title' => t('Long date format'),
'#default_value' => variable_get('date_format_long', $datelong[0]),
'#options' => $datelongchoices,
'#description' => t('Longer date format used for detailed display.')
$form['date_first_day'] = array(
'#type' => 'select',
'#title' => t('First day of week'),
'#default_value' => variable_get('date_first_day', 0),

Dries Buytaert
committed
'#options' => array(0 => t('Sunday'), 1 => t('Monday'), 2 => t('Tuesday'), 3 => t('Wednesday'), 4 => t('Thursday'), 5 => t('Friday'), 6 => t('Saturday')),
'#description' => t('The first day of the week for calendar views.')

Dries Buytaert
committed
return system_settings_form($form);

Steven Wittens
committed
function system_site_maintenance_settings() {

Dries Buytaert
committed

Dries Buytaert
committed
'#type' => 'radios',

Dries Buytaert
committed
'#title' => t('Site status'),

Dries Buytaert
committed
'#default_value' => variable_get('site_offline', 0),
'#options' => array(t('Online'), t('Off-line')),
'#description' => t('When set to "Online", all visitors will be able to browse your site normally. When set to "Off-line", only users with the "administer site configuration" permission will be able to access your site to perform maintenance; all other visitors will see the site off-line message configured below. Authorized users can log in during "Off-line" mode directly via the <a href="@user-login">user login</a> page.', array('@user-login' => url('user'))),

Dries Buytaert
committed
);

Dries Buytaert
committed
'#type' => 'textarea',
'#title' => t('Site off-line message'),
'#default_value' => variable_get('site_offline_message', t('@site is currently under maintenance. We should be back shortly. Thank you for your patience.', array('@site' => variable_get('site_name', t('This Drupal site'))))),
'#description' => t('Message to show visitors when the site is in off-line mode.')

Dries Buytaert
committed
);

Dries Buytaert
committed
return system_settings_form($form);

Dries Buytaert
committed
/**
* Checks the existence of the directory specified in $form_element. This
* function is called from the system_settings form to check both the

Dries Buytaert
committed
* file_directory_path and file_directory_temp directories. If validation
* fails, the form element is flagged with an error from within the
* file_check_directory function.
*
* @param $form_element
* The form element containing the name of the directory to check.
*/
function system_check_directory($form_element) {

Dries Buytaert
committed
file_check_directory($form_element['#value'], FILE_CREATE_DIRECTORY, $form_element['#parents'][0]);
return $form_element;
}
/**
* Retrieves the current status of an array of files in the system table.
*/
function system_get_files_database(&$files, $type) {

Gerhard Killesreiter
committed
$result = db_query("SELECT filename, name, type, status, throttle, schema_version FROM {system} WHERE type = '%s'", $type);
if (isset($files[$file->name]) && is_object($files[$file->name])) {

Gerhard Killesreiter
committed
$file->old_filename = $file->filename;
if (!isset($files[$file->name]) || !isset($files[$file->name]->$key)) {
$files[$file->name]->$key = $value;
}

Dries Buytaert
committed
include_once './includes/install.inc';

Dries Buytaert
committed
$themes = drupal_system_listing('\.theme$', 'themes');

Dries Buytaert
committed
$engines = drupal_system_listing('\.engine$', 'themes/engines');
// can't iterate over array itself as it uses a copy of the array items
foreach (array_keys($themes) as $key) {
drupal_get_filename('theme', $themes[$key]->name, $themes[$key]->filename);
drupal_load('theme', $themes[$key]->name);
$themes[$key]->owner = $themes[$key]->filename;
$themes[$key]->prefix = $key;
}
// Remove all theme engines from the system table
db_query("DELETE FROM {system} WHERE type = 'theme_engine'");
drupal_get_filename('theme_engine', $engine->name, $engine->filename);
drupal_load('theme_engine', $engine->name);
db_query("INSERT INTO {system} (name, type, filename, status, throttle, bootstrap) VALUES ('%s', '%s', '%s', %d, %d, %d)", $engine->name, 'theme_engine', $engine->filename, 1, 0, 0);
foreach (call_user_func($engine->name . '_templates') as $template) {
// Do not double-insert templates with theme files in their directory,
// but do register their engine data.
$themes[$template->name]->template = TRUE;
$themes[$template->name]->owner = $engine->filename;
$themes[$template->name]->prefix = $engine->name;
}
else {
$template->template = TRUE;
$template->name = basename(dirname($template->filename));
$template->owner = $engine->filename;
$template->prefix = $engine->name;
$themes[$template->name] = $template;
foreach ($themes as $theme) {
foreach (file_scan_directory(dirname($theme->filename), 'style.css$') as $style) {
$style->template = isset($theme->template) ? $theme->template : FALSE;
$style->name = basename(dirname($style->filename));
$style->owner = $theme->filename;
$style->prefix = $theme->template ? $theme->prefix : $theme->name;
// do not double-insert styles with theme files in their directory
if (array_key_exists($style->name, $themes)) {
continue;
system_get_files_database($themes, 'theme');
db_query("DELETE FROM {system} WHERE type = 'theme'");
foreach ($themes as $theme) {
db_query("INSERT INTO {system} (name, description, type, filename, status, throttle, bootstrap) VALUES ('%s', '%s', '%s', '%s', %d, %d, %d)", $theme->name, $theme->owner, 'theme', $theme->filename, $theme->status, 0, 0);
}
return $themes;
}
/**
* Get a list of available regions from a specified theme.
*

Dries Buytaert
committed
* @param $theme_key
* The name of a theme.
* @return
* An array of regions in the form $region['name'] = 'description'.
*/

Dries Buytaert
committed
function system_region_list($theme_key) {
static $list = array();
if (!array_key_exists($theme_key, $list)) {
$theme = db_fetch_object(db_query("SELECT * FROM {system} WHERE type = 'theme' AND name = '%s'", $theme_key));
// Stylesheets can't have regions; use its theme.

Dries Buytaert
committed
if (strpos($theme->filename, '.css')) {
return system_region_list(basename(dirname($theme->description)));
// If this is a custom theme, load it in before moving on.

Dries Buytaert
committed
if (file_exists($file = dirname($theme->filename) .'/' . $theme_key . '.theme')) {
include_once "./$file";
$regions = array();
// This theme has defined its own regions.
if (function_exists($theme_key . '_regions')) {
$regions = call_user_func($theme_key . '_regions');
}
// File is an engine; include its regions.
else if (strpos($theme->description, '.engine')) {
include_once './' . $theme->description;

Dries Buytaert
committed
$theme_engine = basename($theme->description, '.engine');
$regions = function_exists($theme_engine . '_regions') ? call_user_func($theme_engine . '_regions') : array();