status report for more information.', array('@status' => url('admin/reports/status'))), 'error'); } $blocks = array(); if ($admin = db_query("SELECT menu_name, mlid FROM {menu_links} WHERE link_path = 'admin' AND module = 'system'")->fetchAssoc()) { $result = db_query(" SELECT m.*, ml.* FROM {menu_links} ml INNER JOIN {menu_router} m ON ml.router_path = m.path WHERE ml.link_path != 'admin/help' AND menu_name = :menu_name AND ml.plid = :mlid AND hidden = 0", $admin, array('fetch' => PDO::FETCH_ASSOC)); foreach ($result as $item) { _menu_link_translate($item); if (!$item['access']) { continue; } // The link 'description' either derived from the hook_menu 'description' // or entered by the user via menu module is saved as the title attribute. if (!empty($item['localized_options']['attributes']['title'])) { $item['description'] = $item['localized_options']['attributes']['title']; } $block = $item; $block['content'] = ''; $block['show'] = FALSE; if ($item['block_callback'] && function_exists($item['block_callback'])) { $function = $item['block_callback']; $block['content'] .= $function(); } $content = system_admin_menu_block($item); if ((isset($item['page_callback']) && !in_array($item['page_callback'], array('system_admin_menu_block_page', 'system_admin_config_page', 'system_settings_overview'))) || count($content)) { // Only show blocks for items which are not containers, or those which // are containers and do have items we can show. $block['show'] = TRUE; if (empty($content)) { // If no items found below, but access checks did not fail, show. $block['title'] = l($item['title'], $item['href'], $item['localized_options']); } else { // Theme items below. $block['content'] .= theme('admin_block_content', $content); } } // Prepare for sorting as in function _menu_tree_check_access(). // The weight is offset so it is always positive, with a uniform 5-digits. $blocks[(50000 + $item['weight']) . ' ' . $item['title'] . ' ' . $item['mlid']] = $block; } } if ($blocks) { ksort($blocks); return theme('admin_page', $blocks); } else { return t('You do not have any administrative items.'); } } /** * Menu callback; Provide the administration overview page. */ function system_admin_config_page() { // Check for status report errors. if (system_status(TRUE) && user_access('administer site configuration')) { drupal_set_message(t('One or more problems were detected with your Drupal installation. Check the status report for more information.', array('@status' => url('admin/reports/status'))), 'error'); } $blocks = array(); if ($admin = db_query("SELECT menu_name, mlid FROM {menu_links} WHERE link_path = 'admin/config' AND module = 'system'")->fetchAssoc()) { $result = db_query(" SELECT m.*, ml.* FROM {menu_links} ml INNER JOIN {menu_router} m ON ml.router_path = m.path WHERE ml.link_path != 'admin/help' AND menu_name = :menu_name AND ml.plid = :mlid AND hidden = 0", $admin, array('fetch' => PDO::FETCH_ASSOC)); foreach ($result as $item) { _menu_link_translate($item); if (!$item['access']) { continue; } // The link 'description' either derived from the hook_menu 'description' // or entered by the user via menu module is saved as the title attribute. if (!empty($item['localized_options']['attributes']['title'])) { $item['description'] = $item['localized_options']['attributes']['title']; } $block = $item; $block['content'] = ''; $block['show'] = TRUE; if ($item['block_callback'] && function_exists($item['block_callback'])) { $function = $item['block_callback']; $block['content'] .= $function(); } $block['content'] .= theme('admin_block_content', system_admin_menu_block($item)); // Prepare for sorting as in function _menu_tree_check_access(). // The weight is offset so it is always positive, with a uniform 5-digits. $blocks[(50000 + $item['weight']) . ' ' . $item['title'] . ' ' . $item['mlid']] = $block; } } if ($blocks) { ksort($blocks); return theme('admin_page', $blocks); } else { return t('You do not have any administrative items.'); } } /** * Provide a single block from the administration menu as a page. * This function is often a destination for these blocks. * For example, 'admin/structure/types' needs to have a destination to be valid * in the Drupal menu system, but too much information there might be * hidden, so we supply the contents of the block. * * @return * The output HTML. */ function system_admin_menu_block_page() { $item = menu_get_item(); if ($content = system_admin_menu_block($item)) { $output = theme('admin_block_content', $content); } else { $output = t('You do not have any administrative items.'); } return $output; } /** * Menu callback; prints a listing of admin tasks for each installed module. */ function system_admin_by_module() { $modules = system_get_module_data(); $menu_items = array(); $help_arg = module_exists('help') ? drupal_help_arg() : FALSE; foreach ($modules as $file) { $module = $file->name; if ($module == 'help') { continue; } $admin_tasks = system_get_module_admin_tasks($module); // Only display a section if there are any available tasks. if (count($admin_tasks)) { // Check for help links. if ($help_arg && module_invoke($module, 'help', "admin/help#$module", $help_arg)) { $admin_tasks[100] = l(t('Get help'), "admin/help/$module"); } // Sort. ksort($admin_tasks); $menu_items[$file->info['name']] = array($file->info['description'], $admin_tasks); } } return theme('system_admin_by_module', $menu_items); } /** * Menu callback; displays a module's settings page. */ function system_settings_overview() { // Check database setup if necessary if (function_exists('db_check_setup') && empty($_POST)) { db_check_setup(); } $item = menu_get_item('admin/settings'); $content = system_admin_menu_block($item); $output = theme('admin_block_content', $content); return $output; } /** * Menu callback; displays a listing of all themes. * * @ingroup forms * @see system_themes_form_submit() */ function system_themes_form() { $themes = system_get_theme_data(); uasort($themes, 'system_sort_modules_by_info_name'); $status = array(); $incompatible_core = array(); $incompatible_php = array(); foreach ($themes as $theme) { $screenshot = NULL; // Create a list which includes the current theme and all its base themes. if (isset($themes[$theme->name]->base_themes)) { $theme_keys = array_keys($themes[$theme->name]->base_themes) + array($theme->name); } else { $theme_keys = array($theme->name); } // Look for a screenshot in the current theme or in its closest ancestor. foreach (array_reverse($theme_keys) as $theme_key) { if (isset($themes[$theme_key]) && file_exists($themes[$theme_key]->info['screenshot'])) { $screenshot = $themes[$theme_key]->info['screenshot']; break; } } $screenshot = $screenshot ? theme('image', $screenshot, t('Screenshot for %theme theme', array('%theme' => $theme->info['name'])), '', array('class' => 'screenshot'), FALSE) : t('no screenshot'); $form[$theme->name]['screenshot'] = array('#markup' => $screenshot); $form[$theme->name]['info'] = array( '#type' => 'value', '#value' => $theme->info, ); $options[$theme->name] = $theme->info['name']; if (!empty($theme->status) || $theme->name == variable_get('admin_theme', 0)) { $form[$theme->name]['operations'] = array('#markup' => l(t('configure'), 'admin/appearance/settings/' . $theme->name) ); } else { // Dummy element for drupal_render. Cleaner than adding a check in the theme function. $form[$theme->name]['operations'] = array(); } if (!empty($theme->status)) { $status[] = $theme->name; } else { // Ensure this theme is compatible with this version of core. // Require the 'content' region to make sure the main page // content has a common place in all themes. if (!isset($theme->info['core']) || ($theme->info['core'] != DRUPAL_CORE_COMPATIBILITY) || (!isset($theme->info['regions']['content']))) { $incompatible_core[] = $theme->name; } if (version_compare(phpversion(), $theme->info['php']) < 0) { $incompatible_php[$theme->name] = $theme->info['php']; } } } $form['status'] = array( '#type' => 'checkboxes', '#options' => array_fill_keys(array_keys($options), ''), '#default_value' => $status, '#incompatible_themes_core' => drupal_map_assoc($incompatible_core), '#incompatible_themes_php' => $incompatible_php, ); $form['theme_default'] = array( '#type' => 'radios', '#options' => array_fill_keys(array_keys($options), ''), '#default_value' => variable_get('theme_default', 'garland'), ); // Administration theme settings. $form['admin_theme'] = array( '#type' => 'fieldset', '#title' => t('Administration theme'), '#collapsible' => TRUE, '#collapsed' => TRUE, ); $form['admin_theme']['admin_theme'] = array( '#type' => 'select', '#options' => array(0 => t('Default theme')) + $options, '#title' => t('Administration theme'), '#description' => t('Choose "Default theme" to always use the same theme as the rest of the site.'), '#default_value' => variable_get('admin_theme', 0), ); $form['admin_theme']['node_admin_theme'] = array( '#type' => 'checkbox', '#title' => t('Use the administration theme when editing or creating content'), '#default_value' => variable_get('node_admin_theme', '0'), ); $form['buttons']['submit'] = array( '#type' => 'submit', '#value' => t('Save configuration'), ); return $form; } /** * Process system_themes_form form submissions. */ function system_themes_form_submit($form, &$form_state) { drupal_clear_css_cache(); // Store list of previously enabled themes and disable all themes $old_theme_list = $new_theme_list = array(); foreach (list_themes() as $theme) { if ($theme->status) { $old_theme_list[] = $theme->name; } } db_update('system') ->fields(array('status' => 0)) ->condition('type', 'theme') ->execute(); if ($form_state['values']['op'] == t('Save configuration')) { if (is_array($form_state['values']['status'])) { foreach ($form_state['values']['status'] as $key => $choice) { // Always enable the default theme, despite its status checkbox being checked: if ($choice || $form_state['values']['theme_default'] == $key) { $new_theme_list[] = $key; db_update('system') ->fields(array('status' => 1)) ->condition('type', 'theme') ->condition('name', $key) ->execute(); } } } if ($form_state['values']['admin_theme'] && $form_state['values']['admin_theme'] != $form_state['values']['theme_default']) { drupal_set_message(t('Please note that the administration theme is still set to the %admin_theme theme; consequently, the theme on this page remains unchanged. All non-administrative sections of the site, however, will show the selected %selected_theme theme by default.', array( '!admin_theme_page' => url('admin/settings/admin'), '%admin_theme' => $form_state['values']['admin_theme'], '%selected_theme' => $form_state['values']['theme_default'], ))); } // Save the variables. variable_set('theme_default', $form_state['values']['theme_default']); variable_set('admin_theme', $form_state['values']['admin_theme']); variable_set('node_admin_theme', $form_state['values']['node_admin_theme']); } else { // Revert to defaults: only Garland is enabled. variable_del('theme_default'); variable_del('admin_theme'); variable_del('node_admin_theme'); db_update('system') ->fields(array('status' => 1)) ->condition('type', 'theme') ->condition('name', 'garland') ->execute(); $new_theme_list = array('garland'); } list_themes(TRUE); menu_rebuild(); drupal_theme_rebuild(); drupal_set_message(t('The configuration options have been saved.')); $form_state['redirect'] = 'admin/appearance'; // Notify locale module about new themes being enabled, so translations can // be imported. This might start a batch, and only return to the redirect // path after that. module_invoke('locale', 'system_update', array_diff($new_theme_list, $old_theme_list)); return; } /** * Form builder; display theme configuration for entire site and individual themes. * * @param $key * A theme name. * @return * The form structure. * @ingroup forms * @see system_theme_settings_submit() */ function system_theme_settings(&$form_state, $key = '') { $directory_path = file_directory_path(); if (!file_prepare_directory($directory_path, FILE_CREATE_DIRECTORY)) { drupal_set_message(t('The directory %directory does not exist or is not writable.', array('%directory' => $directory_path)), 'warning'); } // Default settings are defined in theme_get_settings() in includes/theme.inc if ($key) { $settings = theme_get_settings($key); $var = str_replace('/', '_', 'theme_' . $key . '_settings'); $themes = system_get_theme_data(); $features = $themes[$key]->info['features']; } else { $settings = theme_get_settings(''); $var = 'theme_settings'; } $form['var'] = array('#type' => 'hidden', '#value' => $var); // Check for a new uploaded logo, and use that instead. if ($file = file_save_upload('logo_upload', array('file_validate_is_image' => array()))) { $parts = pathinfo($file->filename); $filename = ($key) ? str_replace('/', '_', $key) . '_logo.' . $parts['extension'] : 'logo.' . $parts['extension']; // The image was saved using file_save_upload() and was added to the // files table as a temporary file. We'll make a copy and let the garbage // collector delete the original upload. if ($filepath = file_unmanaged_copy($file->uri, $filename, FILE_EXISTS_REPLACE)) { $_POST['default_logo'] = 0; $_POST['logo_path'] = $filepath; $_POST['toggle_logo'] = 1; } } // Check for a new uploaded favicon, and use that instead. if ($file = file_save_upload('favicon_upload')) { $parts = pathinfo($file->filename); $filename = ($key) ? str_replace('/', '_', $key) . '_favicon.' . $parts['extension'] : 'favicon.' . $parts['extension']; // The image was saved using file_save_upload() and was added to the // files table as a temporary file. We'll make a copy and let the garbage // collector delete the original upload. if ($filepath = file_unmanaged_copy($file->uri, $filename, FILE_EXISTS_REPLACE)) { $_POST['default_favicon'] = 0; $_POST['favicon_path'] = $filepath; $_POST['toggle_favicon'] = 1; } } // Toggle settings $toggles = array( 'logo' => t('Logo'), 'name' => t('Site name'), 'slogan' => t('Site slogan'), 'node_user_picture' => t('User pictures in posts'), 'comment_user_picture' => t('User pictures in comments'), 'comment_user_verification' => t('User verification status in comments'), 'search' => t('Search box'), 'favicon' => t('Shortcut icon'), 'main_menu' => t('Main menu'), 'secondary_menu' => t('Secondary menu'), ); // Some features are not always available $disabled = array(); if (!variable_get('user_pictures', 0)) { $disabled['toggle_node_user_picture'] = TRUE; $disabled['toggle_comment_user_picture'] = TRUE; } if (!module_exists('search')) { $disabled['toggle_search'] = TRUE; } $form['theme_settings'] = array( '#type' => 'fieldset', '#title' => t('Toggle display'), '#description' => t('Enable or disable the display of certain page elements.'), ); foreach ($toggles as $name => $title) { if ((!$key) || in_array($name, $features)) { $form['theme_settings']['toggle_' . $name] = array('#type' => 'checkbox', '#title' => $title, '#default_value' => $settings['toggle_' . $name]); // Disable checkboxes for features not supported in the current configuration. if (isset($disabled['toggle_' . $name])) { $form['theme_settings']['toggle_' . $name]['#disabled'] = TRUE; } } } if (!element_children($form['theme_settings'])) { // If there is no element in the theme settings fieldset then do not show // it -- but keep it in the form if another module wants to alter. $form['theme_settings']['#access'] = FALSE; } // Logo settings if ((!$key) || in_array('logo', $features)) { $form['logo'] = array( '#type' => 'fieldset', '#title' => t('Logo image settings'), '#description' => t('If toggled on, the following logo will be displayed.'), '#attributes' => array('class' => 'theme-settings-bottom'), ); $form['logo']['default_logo'] = array( '#type' => 'checkbox', '#title' => t('Use the default logo'), '#default_value' => $settings['default_logo'], '#tree' => FALSE, '#description' => t('Check here if you want the theme to use the logo supplied with it.') ); $form['logo']['logo_path'] = array( '#type' => 'textfield', '#title' => t('Path to custom logo'), '#default_value' => $settings['logo_path'], '#description' => t('The path to the file you would like to use as your logo file instead of the default logo.')); $form['logo']['logo_upload'] = array( '#type' => 'file', '#title' => t('Upload logo image'), '#maxlength' => 40, '#description' => t("If you don't have direct file access to the server, use this field to upload your logo.") ); } if ((!$key) || in_array('favicon', $features)) { $form['favicon'] = array( '#type' => 'fieldset', '#title' => t('Shortcut icon settings'), '#description' => t("Your shortcut icon, or 'favicon', is displayed in the address bar and bookmarks of most browsers."), ); $form['favicon']['default_favicon'] = array( '#type' => 'checkbox', '#title' => t('Use the default shortcut icon.'), '#default_value' => $settings['default_favicon'], '#description' => t('Check here if you want the theme to use the default shortcut icon.') ); $form['favicon']['favicon_path'] = array( '#type' => 'textfield', '#title' => t('Path to custom icon'), '#default_value' => $settings['favicon_path'], '#description' => t('The path to the image file you would like to use as your custom shortcut icon.') ); $form['favicon']['favicon_upload'] = array( '#type' => 'file', '#title' => t('Upload icon image'), '#description' => t("If you don't have direct file access to the server, use this field to upload your shortcut icon.") ); } if ($key) { // Include the theme's theme-settings.php file $filename = DRUPAL_ROOT . '/' . str_replace("/$key.info", '', $themes[$key]->filename) . '/theme-settings.php'; if (!file_exists($filename) and !empty($themes[$key]->info['base theme'])) { // If the theme doesn't have a theme-settings.php file, use the base theme's. $base = $themes[$key]->info['base theme']; $filename = DRUPAL_ROOT . '/' . str_replace("/$base.info", '', $themes[$base]->filename) . '/theme-settings.php'; } if (file_exists($filename)) { require_once $filename; } // Call engine-specific settings. $function = $themes[$key]->prefix . '_engine_settings'; if (function_exists($function)) { $group = $function($settings, $form); if (!empty($group)) { $form['engine_specific'] = array('#type' => 'fieldset', '#title' => t('Theme-engine-specific settings'), '#description' => t('These settings only exist for all the templates and styles based on the %engine theme engine.', array('%engine' => $themes[$key]->prefix))); $form['engine_specific'] = array_merge($form['engine_specific'], $group); } } // Call theme-specific settings. $function = $key . '_settings'; if (!function_exists($function)) { $function = $themes[$key]->prefix . '_settings'; } if (function_exists($function)) { $group = $function($settings, $form); if (!empty($group)) { $form['theme_specific'] = array('#type' => 'fieldset', '#title' => t('Theme-specific settings'), '#description' => t('These settings only exist for the %theme theme and all the styles based on it.', array('%theme' => $themes[$key]->info['name']))); $form['theme_specific'] = array_merge($form['theme_specific'], $group); } } } $form = system_settings_form($form, FALSE); // We don't want to call system_settings_form_submit(), so change #submit. $form['#submit'] = array('system_theme_settings_submit'); return $form; } /** * Process system_theme_settings form submissions. */ function system_theme_settings_submit($form, &$form_state) { $values = $form_state['values']; if (empty($values['default_favicon']) && !empty($values['favicon_path'])) { $values['favicon_mimetype'] = file_get_mimetype($values['favicon_path']); } $key = $values['var']; // Exclude unnecessary elements before saving. unset($values['var'], $values['submit'], $values['reset'], $values['form_id'], $values['op'], $values['form_build_id'], $values['form_token']); variable_set($key, $values); drupal_set_message(t('The configuration options have been saved.')); cache_clear_all(); } /** * Recursively check compatibility. * * @param $incompatible * An associative array which at the end of the check contains all * incompatible files as the keys, their values being TRUE. * @param $files * The set of files that will be tested. * @param $file * The file at which the check starts. * @return * Returns TRUE if an incompatible file is found, NULL (no return value) * otherwise. */ function _system_is_incompatible(&$incompatible, $files, $file) { if (isset($incompatible[$file->name])) { return TRUE; } // Recursively traverse required modules, looking for incompatible modules. foreach ($file->requires as $requires) { if (isset($files[$requires]) && _system_is_incompatible($incompatible, $files, $files[$requires])) { $incompatible[$file->name] = TRUE; return TRUE; } } } /** * Menu callback; provides module enable/disable interface. * * The list of modules gets populated by module.info files, which contain each module's name, * description and information about which modules it requires. * @see drupal_parse_info_file for information on module.info descriptors. * * Dependency checking is performed to ensure that a module: * - can not be enabled if there are disabled modules it requires. * - can not be disabled if there are enabled modules which depend on it. * * @param $form_state * An associative array containing the current state of the form. * @ingroup forms * @see theme_system_modules() * @see system_modules_submit() * @return * The form array. */ function system_modules($form_state = array()) { // Get current list of modules. $files = system_get_module_data(); // Remove hidden modules from display list. foreach ($files as $filename => $file) { if (!empty($file->info['hidden']) || !empty($file->info['required'])) { unset($files[$filename]); } } uasort($files, 'system_sort_modules_by_info_name'); // If the modules form was submitted, then system_modules_submit() runs first // and if there are unfilled required modules, then form_state['storage'] is // filled, triggering a rebuild. In this case we need to display a // confirmation form. if (!empty($form_state['storage'])) { return system_modules_confirm_form($files, $form_state['storage']); } $modules = array(); $form['modules'] = array('#tree' => TRUE); // Used when checking if module implements a help page. $help_arg = module_exists('help') ? drupal_help_arg() : FALSE; // Iterate through each of the modules. foreach ($files as $filename => $module) { $extra = array(); $extra['enabled'] = (bool) $module->status; // If this module requires other modules, add them to the array. foreach ($module->requires as $requires => $v) { if (!isset($files[$requires])) { $extra['requires'][$requires] = t('@module (missing)', array('@module' => drupal_ucfirst($requires))); $extra['disabled'] = TRUE; } else { $requires_name = $files[$requires]->info['name']; if ($incompatible_version = drupal_check_incompatibility($v, str_replace(DRUPAL_CORE_COMPATIBILITY . '-', '', $files[$requires]->info['version']))) { $extra['requires'][$requires] = t('@module (incompatible with version @version)', array( '@module' => $requires_name . $incompatible_version, '@version' => $files[$requires]->info['version'], )); $extra['disabled'] = TRUE; } elseif ($files[$requires]->status) { $extra['requires'][$requires] = t('@module (enabled)', array('@module' => $requires_name)); } else { $extra['requires'][$requires] = t('@module (disabled)', array('@module' => $requires_name)); } } } // Generate link for module's help page, if there is one. if ($help_arg && $module->status && in_array($filename, module_implements('help'))) { if (module_invoke($filename, 'help', "admin/help#$filename", $help_arg)) { // Module has a help page. $extra['help'] = theme('more_help_link', url("admin/help/$filename")); } } // Mark dependents disabled so the user cannot remove required modules. $dependents = array(); // If this module is required by other modules, list those, and then make it // impossible to disable this one. foreach ($module->required_by as $required_by => $v) { // Hidden modules are unset already. if (isset($files[$required_by])) { if ($files[$required_by]->status == 1) { $extra['required_by'][] = t('@module (enabled)', array('@module' => $files[$required_by]->info['name'])); $extra['disabled'] = TRUE; } else { $extra['required_by'][] = t('@module (disabled)', array('@module' => $files[$required_by]->info['name'])); } } } $form['modules'][$module->info['package']][$filename] = _system_modules_build_row($module->info, $extra); } // Add basic information to the fieldsets. foreach (element_children($form['modules']) as $package) { $form['modules'][$package] += array( '#type' => 'fieldset', '#title' => t($package), '#collapsible' => TRUE, '#theme' => 'system_modules_fieldset', '#header' => array( array('data' => t('Enabled'), 'class' => 'checkbox'), t('Name'), t('Version'), t('Description'), ), ); } $form['submit'] = array( '#type' => 'submit', '#value' => t('Save configuration'), ); $form['#action'] = url('admin/config/modules/list/confirm'); return $form; } /** * Array sorting callback; sorts modules or themes by their name. */ function system_sort_modules_by_info_name($a, $b) { return strcasecmp($a->info['name'], $b->info['name']); } /** * Build a table row for the system modules page. */ function _system_modules_build_row($info, $extra) { // Add in the defaults. $extra += array( 'requires' => array(), 'required_by' => array(), 'disabled' => FALSE, 'enabled' => FALSE, 'help' => '', ); $form = array( '#tree' => TRUE, ); // Set the basic properties. $form['name'] = array( '#markup' => t($info['name']), ); $form['description'] = array( '#markup' => t($info['description']), ); $form['version'] = array( '#markup' => $info['version'], ); $form['#requires'] = $extra['requires']; $form['#required_by'] = $extra['required_by']; // Check the compatibilities. $compatible = TRUE; $status_short = ''; $status_long = ''; // Check the core compatibility. if (!isset($info['core']) || $info['core'] != DRUPAL_CORE_COMPATIBILITY || empty($info['files'])) { $compatible = FALSE; $status_short .= t('Incompatible with this version of Drupal core. '); $status_long .= t('This version is incompatible with the !core_version version of Drupal core. ', array('!core_version' => VERSION)); } // Ensure this module is compatible with the currently installed version of PHP. if (version_compare(phpversion(), $info['php']) < 0) { $compatible = FALSE; $status_short .= t('Incompatible with this version of PHP'); if (substr_count($info['php'], '.') < 2) { $php_required .= '.*'; } $status_long .= t('This module requires PHP version @php_required and is incompatible with PHP version !php_version.', array('@php_required' => $php_required, '!php_version' => phpversion())); } // If this module is compatible, present a checkbox indicating // this module may be installed. Otherwise, show a big red X. if ($compatible) { $form['enable'] = array( '#type' => 'checkbox', '#title' => t('Enable'), '#default_value' => $extra['enabled'], ); if ($extra['disabled']) { $form['enable']['#disabled'] = TRUE; } } else { $form['enable'] = array( '#markup' => theme('image', 'misc/watchdog-error.png', t('incompatible'), $status_short), ); $form['description']['#markup'] .= theme('system_modules_incompatible', $status_long); } // Show a "more help" link for modules that have them. if ($extra['help']) { $form['help'] = array( '#markup' => $extra['help'], ); } return $form; } /** * Display confirmation form for required modules. * * @param $modules * Array of module file objects as returned from system_get_module_data(). * @param $storage * The contents of $form_state['storage']; an array with two * elements: the list of required modules and the list of status * form field values from the previous screen. * @ingroup forms */ function system_modules_confirm_form($modules, $storage) { $form = array(); $items = array(); $form['validation_modules'] = array('#type' => 'value', '#value' => $modules); $form['status']['#tree'] = TRUE; foreach ($storage['more_modules'] as $info) { $t_argument = array( '@module' => $info['name'], '@required' => implode(', ', $info['requires']), ); $items[] = format_plural(count($info['requires']), 'You must enable the @required module to install @module.', 'You must enable the @required modules to install @module.', $t_argument); } $form['text'] = array('#markup' => theme('item_list', $items)); if ($form) { // Set some default form values $form = confirm_form( $form, t('Some required modules must be enabled'), 'admin/config/modules', t('Would you like to continue with enabling the above?'), t('Continue'), t('Cancel')); return $form; } } /** * Submit callback; handles modules form submission. */ function system_modules_submit($form, &$form_state) { include_once DRUPAL_ROOT . '/includes/install.inc'; $modules = array(); // If we're not coming from the confirmation form, build the list of modules. if (!isset($form_state['storage'])) { foreach ($form_state['values']['modules'] as $group_name => $group) { foreach ($group as $module => $enabled) { $modules[$module] = array('group' => $group_name, 'enabled' => $enabled['enable']); } } } else { // If we are coming from the confirmation form, fetch // the modules out of $form_state. $modules = $form_state['storage']['modules']; } // Get a list of all modules, it will be used to find which module requires // which. $files = system_get_module_data(); // The modules to be enabled. $modules_to_be_enabled = array(); // The modules to be disabled. $disable_modules = array(); // The modules to be installed. $new_modules = array(); // Modules that need to be switched on because other modules require them. $more_modules = array(); // Go through each module, finding out if we should enable, install, or // disable it. Also, we find out if there are modules it requires that are // not enabled. foreach ($modules as $name => $module) { // If it's enabled, find out whether to just // enable it, or install it. if ($module['enabled']) { if (drupal_get_installed_schema_version($name) == SCHEMA_UNINSTALLED) { $new_modules[$name] = $name; } elseif (!module_exists($name)) { $modules_to_be_enabled[$name] = $name; } // If we're not coming from a confirmation form, search for modules the // new ones require and see whether there are any that additionally // need to be switched on. if (empty($form_state['storage'])) { foreach ($form['modules'][$module['group']][$name]['#requires'] as $requires => $v) { if (!$modules[$requires]['enabled']) { if (!isset($more_modules[$name])) { $more_modules[$name]['name'] = $files[$name]->info['name']; } $more_modules[$name]['requires'][$requires] = $files[$requires]->info['name']; } $modules[$requires] = array('group' => $files[$requires]->info['package'], 'enabled' => TRUE); } } } } // A second loop is necessary, otherwise the modules set to be enabled in the // previous loop would not be found. foreach ($modules as $name => $module) { if (module_exists($name) && !$module['enabled']) { $disable_modules[$name] = $name; } } if ($more_modules) { // If we need to switch on more modules because other modules require // them and they haven't confirmed, don't process the submission yet. Store // the form submission data needed later. if (!isset($form_state['values']['confirm'])) { $form_state['storage'] = array('more_modules' => $more_modules, 'modules' => $modules); return; } // Otherwise, install or enable the modules. else { foreach ($form_state['storage']['more_modules'] as $info) { foreach ($info['requires'] as $requires => $name) { if (drupal_get_installed_schema_version($name) == SCHEMA_UNINSTALLED) { $new_modules[$name] = $name; } else { $modules_to_be_enabled[$name] = $name; } } } } } // Now we have installed every module as required (either by the user or // because other modules require them) so we don't need the temporary // storage anymore. unset($form_state['storage']); $old_module_list = module_list(); // Enable the modules needing enabling. if (!empty($modules_to_be_enabled)) { $sort = array(); foreach ($modules_to_be_enabled as $module) { $sort[$module] = $files[$module]->sort; } array_multisort($sort, $modules_to_be_enabled); module_enable($modules_to_be_enabled); } // Disable the modules that need disabling. if (!empty($disable_modules)) { $sort = array(); foreach ($disable_modules as $module) { $sort[$module] = $files[$module]->sort; } array_multisort($sort, $disable_modules); module_disable($disable_modules); } // Install new modules. if (!empty($new_modules)) { $sort = array(); foreach ($new_modules as $key => $module) { if (!drupal_check_module($module)) { unset($new_modules[$key]); } $sort[$module] = $files[$module]->sort; } array_multisort($sort, $new_modules); drupal_install_modules($new_modules); } $current_module_list = module_list(TRUE); if ($old_module_list != $current_module_list) { drupal_set_message(t('The configuration options have been saved.')); } // Clear all caches. registry_rebuild(); drupal_theme_rebuild(); node_types_rebuild(); cache_clear_all('schema', 'cache'); drupal_clear_css_cache(); drupal_clear_js_cache(); $form_state['redirect'] = 'admin/config/modules'; // Notify locale module about module changes, so translations can be // imported. This might start a batch, and only return to the redirect // path after that. module_invoke('locale', 'system_update', $new_modules); // Synchronize to catch any actions that were added or removed. actions_synchronize(); return; } /** * Uninstall functions */ /** * Builds a form of currently disabled modules. * * @ingroup forms * @see system_modules_uninstall_validate() * @see system_modules_uninstall_submit() * @param $form_state['values'] * Submitted form values. * @return * A form array representing the currently disabled modules. */ function system_modules_uninstall($form_state = NULL) { // Make sure the install API is available. include_once DRUPAL_ROOT . '/includes/install.inc'; // Display the confirm form if any modules have been submitted. if (isset($form_state) && $confirm_form = system_modules_uninstall_confirm_form($form_state['storage'])) { return $confirm_form; } $form = array(); // Pull all disabled modules from the system table. $disabled_modules = db_query("SELECT name, filename, info FROM {system} WHERE type = 'module' AND status = 0 AND schema_version > :schema ORDER BY name", array(':schema' => SCHEMA_UNINSTALLED)); foreach ($disabled_modules as $module) { // Grab the module info $info = unserialize($module->info); // Load the .install file, and check for an uninstall hook. // If the hook exists, the module can be uninstalled. module_load_install($module->name); if (module_hook($module->name, 'uninstall')) { $form['modules'][$module->name]['name'] = array('#markup' => $info['name'] ? $info['name'] : $module->name); $form['modules'][$module->name]['description'] = array('#markup' => t($info['description'])); $options[$module->name] = ''; } } // Only build the rest of the form if there are any modules available to uninstall. if (!empty($options)) { $form['uninstall'] = array( '#type' => 'checkboxes', '#options' => $options, ); $form['buttons']['submit'] = array( '#type' => 'submit', '#value' => t('Uninstall'), ); $form['#action'] = url('admin/config/modules/uninstall/confirm'); } else { $form['modules'] = array(); } return $form; } /** * Confirm uninstall of selected modules. * * @ingroup forms * @param $storage * An associative array of modules selected to be uninstalled. * @return * A form array representing modules to confirm. */ function system_modules_uninstall_confirm_form($storage) { // Nothing to build. if (!isset($storage)) { return; } // Construct the hidden form elements and list items. foreach (array_filter($storage['uninstall']) as $module => $value) { $info = drupal_parse_info_file(dirname(drupal_get_filename('module', $module)) . '/' . $module . '.info'); $uninstall[] = $info['name']; $form['uninstall'][$module] = array('#type' => 'hidden', '#value' => 1, ); } // Display a confirm form if modules have been selected. if (isset($uninstall)) { $form['#confirmed'] = TRUE; $form['uninstall']['#tree'] = TRUE; $form['modules'] = array('#markup' => '
' . t('The following modules will be completely uninstalled from your site, and all data from these modules will be lost!') . '
' . theme('item_list', $uninstall)); $form = confirm_form( $form, t('Confirm uninstall'), 'admin/config/modules/uninstall', t('Would you like to continue with uninstalling the above?'), t('Uninstall'), t('Cancel')); return $form; } } /** * Validates the submitted uninstall form. */ function system_modules_uninstall_validate($form, &$form_state) { // Form submitted, but no modules selected. if (!count(array_filter($form_state['values']['uninstall']))) { drupal_set_message(t('No modules selected.'), 'error'); drupal_goto('admin/config/modules/uninstall'); } } /** * Processes the submitted uninstall form. */ function system_modules_uninstall_submit($form, &$form_state) { // Make sure the install API is available. include_once DRUPAL_ROOT . '/includes/install.inc'; if (!empty($form['#confirmed'])) { // Call the uninstall routine for each selected module. $modules = array_keys($form_state['values']['uninstall']); drupal_uninstall_modules($modules); drupal_set_message(t('The selected modules have been uninstalled.')); unset($form_state['storage']); $form_state['redirect'] = 'admin/config/modules/uninstall'; } else { $form_state['storage'] = $form_state['values']; } } /** * Menu callback. Display blocked IP addresses. */ function system_ip_blocking() { $output = ''; $rows = array(); $header = array(t('IP address'), t('Operations')); $result = db_query('SELECT * FROM {blocked_ips}'); foreach ($result as $ip) { $rows[] = array( $ip->ip, l(t('delete'), "admin/settings/ip-blocking/delete/$ip->iid"), ); } $build['system_ip_blocking_form'] = drupal_get_form('system_ip_blocking_form'); $build['system_ip_blocking_table'] = array( '#theme' => 'table', '#header' => $header, '#rows' => $rows, ); return $build; } /** * Define the form for blocking IP addresses. * * @ingroup forms * @see system_ip_blocking_form_validate() * @see system_ip_blocking_form_submit() */ function system_ip_blocking_form($form_state) { $form['ip'] = array( '#title' => t('IP address'), '#type' => 'textfield', '#size' => 64, '#maxlength' => 32, '#default_value' => arg(3), '#description' => t('Enter a valid IP address.'), ); $form['submit'] = array( '#type' => 'submit', '#value' => t('Save'), ); $form['#submit'][] = 'system_ip_blocking_form_submit'; $form['#validate'][] = 'system_ip_blocking_form_validate'; return $form; } function system_ip_blocking_form_validate($form, &$form_state) { $ip = trim($form_state['values']['ip']); if (db_query("SELECT * FROM {blocked_ips} WHERE ip = :ip", array(':ip' => $ip))->fetchField()) { form_set_error('ip', t('This IP address is already blocked.')); } elseif ($ip == ip_address()) { form_set_error('ip', t('You may not block your own IP address.')); } elseif (filter_var($ip, FILTER_VALIDATE_IP, FILTER_FLAG_NO_RES_RANGE) == FALSE) { form_set_error('ip', t('Please enter a valid IP address.')); } } function system_ip_blocking_form_submit($form, &$form_state) { $ip = trim($form_state['values']['ip']); db_insert('blocked_ips') ->fields(array('ip' => $ip)) ->execute(); drupal_set_message(t('The IP address %ip has been blocked.', array('%ip' => $ip))); $form_state['redirect'] = 'admin/settings/ip-blocking'; return; } /** * IP deletion confirm page. * * @see system_ip_blocking_delete_submit() */ function system_ip_blocking_delete(&$form_state, $iid) { $form['blocked_ip'] = array( '#type' => 'value', '#value' => $iid, ); return confirm_form($form, t('Are you sure you want to delete %ip?', array('%ip' => $iid['ip'])), 'admin/settings/ip-blocking', t('This action cannot be undone.'), t('Delete'), t('Cancel')); } /** * Process system_ip_blocking_delete form submissions. */ function system_ip_blocking_delete_submit($form, &$form_state) { $blocked_ip = $form_state['values']['blocked_ip']; db_delete('blocked_ips') ->condition('iid', $blocked_ip['iid']) ->execute(); watchdog('user', 'Deleted %ip', array('%ip' => $blocked_ip['ip'])); drupal_set_message(t('The IP address %ip was deleted.', array('%ip' => $blocked_ip['ip']))); $form_state['redirect'] = 'admin/settings/ip-blocking'; } /** * Form builder; The general site information form. * * @ingroup forms * @see system_settings_form() */ function system_site_information_settings() { $form['site_name'] = array( '#type' => 'textfield', '#title' => t('Site name'), '#default_value' => 'Drupal', '#required' => TRUE ); $form['site_mail'] = array( '#type' => 'textfield', '#title' => t('E-mail address'), '#default_value' => ini_get('sendmail_from'), '#description' => t("The From address in automated e-mails sent during registration and new password requests, and other notifications. (Use an address ending in your site's domain to help prevent this e-mail being flagged as spam.)"), '#required' => TRUE, ); $form['site_slogan'] = array( '#type' => 'textfield', '#title' => t('Slogan'), '#default_value' => '', ); $form['site_frontpage'] = array( '#type' => 'textfield', '#title' => t('Default front page'), '#default_value' => 'node', '#size' => 40, '#description' => t('The home page displays content from this relative URL. If unsure, specify "node".'), '#field_prefix' => url(NULL, array('absolute' => TRUE)) . (variable_get('clean_url', 0) ? '' : '?q='), '#required' => TRUE, ); $form['default_nodes_main'] = array( '#type' => 'select', '#title' => t('Number of posts on front page'), '#default_value' => 10, '#options' => drupal_map_assoc(array(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 15, 20, 25, 30)), '#description' => t('The maximum number of posts displayed on overview pages like the frontpage.') ); $form['site_403'] = array( '#type' => 'textfield', '#title' => t('Default 403 (access denied) page'), '#default_value' => '', '#size' => 40, '#description' => t('This page is displayed when the requested document is denied to the current user. Leave blank to display a generic "access denied" page.'), '#field_prefix' => url(NULL, array('absolute' => TRUE)) . (variable_get('clean_url', 0) ? '' : '?q=') ); $form['site_404'] = array( '#type' => 'textfield', '#title' => t('Default 404 (not found) page'), '#default_value' => '', '#size' => 40, '#description' => t('This page is displayed when no other content matches the requested document. Leave blank to display a generic "page not found" page.'), '#field_prefix' => url(NULL, array('absolute' => TRUE)) . (variable_get('clean_url', 0) ? '' : '?q=') ); $form['site_404_blocks'] = array( '#type' => 'checkbox', '#title' => t('Display blocks on default 404 (not found) page'), '#description' => t('Render all blocks on the default 404 (not found) page. Disabling blocks can help with performance but might leave users with a less functional site.'), '#default_value' => variable_get('site_404_blocks', 0) ); $form['#validate'][] = 'system_site_information_settings_validate'; return system_settings_form($form); } /** * Validate the submitted site-information form. */ function system_site_information_settings_validate($form, &$form_state) { // Validate the e-mail address. if ($error = user_validate_mail($form_state['values']['site_mail'])) { form_set_error('site_mail', $error); } // Validate front page path. $item = array('link_path' => drupal_get_normal_path($form_state['values']['site_frontpage'])); if (!menu_valid_path($item)) { form_set_error('site_frontpage', t("The path '@path' is either invalid or you do not have access to it.", array('@path' => $item['link_path']))); } } /** * Form builder; Configure error reporting settings. * * @ingroup forms * @see system_settings_form() */ function system_logging_settings() { $form['error_level'] = array( '#type' => 'radios', '#title' => t('Display PHP messages'), '#default_value' => ERROR_REPORTING_DISPLAY_ALL, '#options' => array( ERROR_REPORTING_HIDE => t('None'), ERROR_REPORTING_DISPLAY_SOME => t('Errors and warnings'), ERROR_REPORTING_DISPLAY_ALL => t('All messages'), ), ); return system_settings_form($form); } /** * Form builder; Configure site performance settings. * * @ingroup forms * @see system_settings_form() */ function system_performance_settings() { drupal_add_js(drupal_get_path('module', 'system') . '/system.js'); $form['clear_cache'] = array( '#type' => 'fieldset', '#title' => t('Clear cache'), ); $form['clear_cache']['clear'] = array( '#type' => 'submit', '#value' => t('Clear all caches'), '#submit' => array('system_clear_cache_submit'), ); $form['caching'] = array( '#type' => 'fieldset', '#title' => t('Caching'), ); $cache = variable_get('cache', CACHE_DISABLED); $form['caching']['cache'] = array( '#type' => 'radios', '#title' => t('Page cache for anonymous users'), '#default_value' => $cache, '#options' => array(CACHE_DISABLED => t('Disabled'), CACHE_NORMAL => t('Normal (recommended)')), ); $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['caching']['cache_lifetime'] = array( '#type' => 'select', '#title' => t('Minimum cache lifetime'), '#default_value' => variable_get('cache_lifetime', 0), '#options' => $period, '#description' => t('The minimum amount of time that will elapse before the caches are recreated.') ); $directory = 'public://'; $is_writable = is_dir($directory) && is_writable($directory); $disabled = !$is_writable; $disabled_message = ''; if(!$is_writable) { $disabled_message = ' ' . t('Please set up the public files directory to make these optimizations available.', array('!file-system' => url('admin/settings/file-system'))); } $form['bandwidth_optimization'] = array( '#type' => 'fieldset', '#title' => t('Bandwidth optimization'), '#description' => t('External resources can be optimized automatically, which can reduce both the size and number of requests made to your website.') . $disabled_message, ); // Do not allow Drupal to gzip pages if the server alredy does that. if (strpos($_SERVER['HTTP_ACCEPT_ENCODING'], 'gzip') === FALSE) { $js_hide = $cache == CACHE_DISABLED ? ' class="js-hide"' : ''; $form['bandwidth_optimization']['page_compression'] = array( '#type' => 'checkbox', '#title' => t('Compress cached pages.'), '#default_value' => variable_get('page_compression', TRUE), '#prefix' => 'example.com/user
instead of example.com/?q=user
.'),
);
$form = system_settings_form($form);
}
else {
drupal_add_js(drupal_get_path('module', 'system') . '/system.js');
$form['#redirect'] = $base_url . '/admin/settings/clean-urls';
$form['clean_url_description'] = array(
'#type' => 'markup',
'#markup' => '' . t('Use URLs like example.com/user
instead of example.com/?q=user
.') . ' ' . t('If you are directed to a Page not found (404) error after testing for clean URLs, see the online handbook.', array('@handbook' => 'http://drupal.org/node/15365')) . '
' . $requirement['title'] . ' | ' . $requirement['value'] . ' |
---|---|
' . $requirement['description'] . ' | |
' . $requirement['title'] . ' | ' . $requirement['value'] . ' |