3105 lines
107 KiB
PHP
3105 lines
107 KiB
PHP
<?php
|
|
// $Id$
|
|
|
|
/**
|
|
* @file
|
|
* Admin page callbacks for the system module.
|
|
*/
|
|
|
|
/**
|
|
* Menu callback; Provide the administration overview page.
|
|
*/
|
|
function system_main_admin_page($arg = NULL) {
|
|
// Only continue if provided arguments are expected. This function serves
|
|
// as the callback for the top-level admin/ page, so any unexpected arguments
|
|
// are likely the result of someone typing in the URL of an administrative
|
|
// page that doesn't actually exist; for example, admin/some/random/page.
|
|
if (isset($arg) && substr($arg, 0, 3) != 'by-') {
|
|
return MENU_NOT_FOUND;
|
|
}
|
|
|
|
// 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 <a href="@status">status report</a> 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;
|
|
$block['title'] = l($item['title'], $item['href'], $item['localized_options']);
|
|
if (!empty($content)) {
|
|
$block['content'] .= theme('admin_block_content', array('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', array('blocks' => $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 <a href="@status">status report</a> 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'] = '';
|
|
if ($item['block_callback'] && function_exists($item['block_callback'])) {
|
|
$function = $item['block_callback'];
|
|
$block['content'] .= $function();
|
|
}
|
|
$block['content'] .= theme('admin_block_content', array('content' => system_admin_menu_block($item)));
|
|
if (!empty($block['content'])) {
|
|
$block['show'] = TRUE;
|
|
}
|
|
|
|
// 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', array('blocks' => $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', array('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() {
|
|
$module_info = system_get_info('module');
|
|
foreach ($module_info as $module => $info) {
|
|
$module_info[$module] = new StdClass();
|
|
$module_info[$module]->info = $info;
|
|
}
|
|
uasort($module_info, 'system_sort_modules_by_info_name');
|
|
$menu_items = array();
|
|
$help_arg = module_exists('help') ? drupal_help_arg() : FALSE;
|
|
|
|
foreach ($module_info as $module => $info) {
|
|
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[$info->info['name']] = array($info->info['description'], $admin_tasks);
|
|
}
|
|
}
|
|
return theme('system_admin_by_module', array('menu_items' => $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/config');
|
|
$content = system_admin_menu_block($item);
|
|
|
|
$output = theme('admin_block_content', array('content' => $content));
|
|
|
|
return $output;
|
|
}
|
|
|
|
/**
|
|
* Menu callback; displays a listing of all themes.
|
|
*/
|
|
function system_themes_page() {
|
|
// Get current list of themes.
|
|
$themes = list_themes();
|
|
uasort($themes, 'system_sort_modules_by_info_name');
|
|
|
|
$theme_default = variable_get('theme_default', 'garland');
|
|
$theme_groups = array();
|
|
|
|
foreach ($themes as &$theme) {
|
|
if (!empty($theme->info['hidden'])) {
|
|
continue;
|
|
}
|
|
$admin_theme_options[$theme->name] = $theme->info['name'];
|
|
$theme->is_default = ($theme->name == $theme_default);
|
|
|
|
// Identify theme screenshot.
|
|
$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);
|
|
$theme_keys[] = $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'])) {
|
|
$theme->screenshot = array(
|
|
'path' => $themes[$theme_key]->info['screenshot'],
|
|
'alt' => t('Screenshot for !theme theme', array('!theme' => $theme->info['name'])),
|
|
'title' => t('Screenshot for !theme theme', array('!theme' => $theme->info['name'])),
|
|
'attributes' => array('class' => array('screenshot')),
|
|
'getsize' => FALSE,
|
|
);
|
|
break;
|
|
}
|
|
}
|
|
|
|
if (empty($theme->status)) {
|
|
// 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.
|
|
$theme->incompatible_core = !isset($theme->info['core']) || ($theme->info['core'] != DRUPAL_CORE_COMPATIBILITY) || (!isset($theme->info['regions']['content']));
|
|
$theme->incompatible_php = version_compare(phpversion(), $theme->info['php']) < 0;
|
|
}
|
|
$query['token'] = drupal_get_token('system-theme-operation-link');
|
|
$theme->operations = array();
|
|
if (!empty($theme->status) || !$theme->incompatible_core && !$theme->incompatible_php) {
|
|
// Create the operations links.
|
|
$query['theme'] = $theme->name;
|
|
if (drupal_theme_access($theme)) {
|
|
$theme->operations[] = array(
|
|
'title' => t('Settings'),
|
|
'href' => 'admin/appearance/settings/' . $theme->name,
|
|
'attributes' => array('title' => t('Settings for !theme theme', array('!theme' => $theme->info['name']))),
|
|
);
|
|
}
|
|
if (!empty($theme->status)) {
|
|
if (!$theme->is_default) {
|
|
$theme->operations[] = array(
|
|
'title' => t('Disable'),
|
|
'href' => 'admin/appearance/disable',
|
|
'query' => $query,
|
|
'attributes' => array('title' => t('Disable !theme theme', array('!theme' => $theme->info['name']))),
|
|
);
|
|
$theme->operations[] = array(
|
|
'title' => t('Set default'),
|
|
'href' => 'admin/appearance/default',
|
|
'query' => $query,
|
|
'attributes' => array('title' => t('Set !theme as default theme', array('!theme' => $theme->info['name']))),
|
|
);
|
|
}
|
|
}
|
|
else {
|
|
$theme->operations[] = array(
|
|
'title' => t('Enable'),
|
|
'href' => 'admin/appearance/enable',
|
|
'query' => $query,
|
|
'attributes' => array('title' => t('Enable !theme theme', array('!theme' => $theme->info['name']))),
|
|
);
|
|
$theme->operations[] = array(
|
|
'title' => t('Enable and set default'),
|
|
'href' => 'admin/appearance/default',
|
|
'query' => $query,
|
|
'attributes' => array('title' => t('Enable !theme as default theme', array('!theme' => $theme->info['name']))),
|
|
);
|
|
}
|
|
}
|
|
|
|
// Add notes to default and administration theme.
|
|
$theme->notes = array();
|
|
$theme->classes = array();
|
|
if ($theme->is_default) {
|
|
$theme->classes[] = 'theme-default';
|
|
$theme->notes[] = t('default theme');
|
|
}
|
|
|
|
// Sort enabled and disabled themes into their own groups.
|
|
$theme_groups[$theme->status ? 'enabled' : 'disabled'][] = $theme;
|
|
}
|
|
|
|
// There are two possible theme groups.
|
|
$theme_group_titles = array(
|
|
'enabled' => format_plural(count($theme_groups['enabled']), 'Enabled theme', 'Enabled themes'),
|
|
);
|
|
if (!empty($theme_groups['disabled'])) {
|
|
$theme_group_titles['disabled'] = format_plural(count($theme_groups['disabled']), 'Disabled theme', 'Disabled themes');
|
|
}
|
|
|
|
uasort($theme_groups['enabled'], 'system_sort_themes');
|
|
drupal_alter('system_themes_page', $theme_groups);
|
|
|
|
$admin_form = drupal_get_form('system_themes_admin_form', $admin_theme_options);
|
|
return theme('system_themes_page', array('theme_groups' => $theme_groups, 'theme_group_titles' => $theme_group_titles)) . drupal_render($admin_form);
|
|
}
|
|
|
|
/**
|
|
* Form to select the administration theme.
|
|
*
|
|
* @ingroup forms
|
|
* @see system_themes_admin_form_submit()
|
|
*/
|
|
function system_themes_admin_form($form, &$form_state, $theme_options) {
|
|
// Administration theme settings.
|
|
$form['admin_theme'] = array(
|
|
'#type' => 'fieldset',
|
|
'#title' => t('Administration theme'),
|
|
);
|
|
$form['admin_theme']['admin_theme'] = array(
|
|
'#type' => 'select',
|
|
'#options' => array(0 => t('Default theme')) + $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['admin_theme']['actions'] = array('#type' => 'actions');
|
|
$form['admin_theme']['actions']['submit'] = array(
|
|
'#type' => 'submit',
|
|
'#value' => t('Save configuration'),
|
|
);
|
|
return $form;
|
|
}
|
|
|
|
/**
|
|
* Process system_themes_admin_form form submissions.
|
|
*/
|
|
function system_themes_admin_form_submit($form, &$form_state) {
|
|
drupal_set_message(t('The configuration options have been saved.'));
|
|
variable_set('admin_theme', $form_state['values']['admin_theme']);
|
|
variable_set('node_admin_theme', $form_state['values']['node_admin_theme']);
|
|
}
|
|
|
|
/**
|
|
* Menu callback; Enables a theme.
|
|
*/
|
|
function system_theme_enable() {
|
|
if (isset($_REQUEST['theme']) && isset($_REQUEST['token']) && drupal_valid_token($_REQUEST['token'], 'system-theme-operation-link')) {
|
|
$theme = $_REQUEST['theme'];
|
|
// Get current list of themes.
|
|
$themes = list_themes();
|
|
|
|
// Check if the specified theme is one recognized by the system.
|
|
if (!empty($themes[$theme])) {
|
|
theme_enable(array($theme));
|
|
drupal_set_message(t('The %theme theme has been enabled.', array('%theme' => $themes[$theme]->info['name'])));
|
|
}
|
|
else {
|
|
drupal_set_message(t('The %theme theme was not found.', array('%theme' => $theme)), 'error');
|
|
}
|
|
drupal_goto('admin/appearance');
|
|
}
|
|
return drupal_access_denied();
|
|
}
|
|
|
|
/**
|
|
* Menu callback; Disables a theme.
|
|
*/
|
|
function system_theme_disable() {
|
|
if (isset($_REQUEST['theme']) && isset($_REQUEST['token']) && drupal_valid_token($_REQUEST['token'], 'system-theme-operation-link')) {
|
|
$theme = $_REQUEST['theme'];
|
|
// Get current list of themes.
|
|
$themes = list_themes();
|
|
|
|
// Check if the specified theme is one recognized by the system.
|
|
if (!empty($themes[$theme])) {
|
|
if ($theme == variable_get('theme_default', 'garland')) {
|
|
// Don't disable the default theme.
|
|
drupal_set_message(t('%theme is the default theme and cannot be disabled.', array('%theme' => $themes[$theme]->info['name'])), 'error');
|
|
}
|
|
else {
|
|
theme_disable(array($theme));
|
|
drupal_set_message(t('The %theme theme has been disabled.', array('%theme' => $themes[$theme]->info['name'])));
|
|
}
|
|
}
|
|
else {
|
|
drupal_set_message(t('The %theme theme was not found.', array('%theme' => $theme)), 'error');
|
|
}
|
|
drupal_goto('admin/appearance');
|
|
}
|
|
return drupal_access_denied();
|
|
}
|
|
|
|
/**
|
|
* Menu callback; Set the default theme.
|
|
*/
|
|
function system_theme_default() {
|
|
if (isset($_REQUEST['theme']) && isset($_REQUEST['token']) && drupal_valid_token($_REQUEST['token'], 'system-theme-operation-link')) {
|
|
$theme = $_REQUEST['theme'];
|
|
// Get current list of themes.
|
|
$themes = list_themes();
|
|
|
|
// Check if the specified theme is one recognized by the system.
|
|
if (!empty($themes[$theme])) {
|
|
// Enable the theme if it is currently disabled.
|
|
if (empty($themes[$theme]->status)) {
|
|
theme_enable(array($theme));
|
|
}
|
|
// Set the default theme.
|
|
variable_set('theme_default', $theme);
|
|
// The status message depends on whether an admin theme is currently in use:
|
|
// a value of 0 means the admin theme is set to be the default theme.
|
|
$admin_theme = variable_get('admin_theme', 0);
|
|
if ($admin_theme != 0 && $admin_theme != $theme) {
|
|
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' => $themes[$admin_theme]->info['name'],
|
|
'%selected_theme' => $themes[$theme]->info['name'],
|
|
)));
|
|
}
|
|
else {
|
|
drupal_set_message(t('%theme is now the default theme.', array('%theme' => $themes[$theme]->info['name'])));
|
|
}
|
|
}
|
|
else {
|
|
drupal_set_message(t('The %theme theme was not found.', array('%theme' => $theme)), 'error');
|
|
}
|
|
drupal_goto('admin/appearance');
|
|
}
|
|
return drupal_access_denied();
|
|
}
|
|
|
|
/**
|
|
* 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, &$form_state, $key = '') {
|
|
// Default settings are defined in theme_get_setting() in includes/theme.inc
|
|
if ($key) {
|
|
$var = 'theme_' . $key . '_settings';
|
|
$themes = system_rebuild_theme_data();
|
|
$features = $themes[$key]->info['features'];
|
|
}
|
|
else {
|
|
$var = 'theme_settings';
|
|
}
|
|
|
|
$form['var'] = array('#type' => 'hidden', '#value' => $var);
|
|
|
|
// 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'),
|
|
'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;
|
|
}
|
|
|
|
$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' => theme_get_setting('toggle_' . $name, $key));
|
|
// 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' => array('theme-settings-bottom')),
|
|
);
|
|
$form['logo']['default_logo'] = array(
|
|
'#type' => 'checkbox',
|
|
'#title' => t('Use the default logo'),
|
|
'#default_value' => theme_get_setting('default_logo', $key),
|
|
'#tree' => FALSE,
|
|
'#description' => t('Check here if you want the theme to use the logo supplied with it.')
|
|
);
|
|
$form['logo']['settings'] = array(
|
|
'#type' => 'container',
|
|
'#states' => array(
|
|
// Hide the logo settings when using the default logo.
|
|
'invisible' => array(
|
|
'input[name="default_logo"]' => array('checked' => TRUE),
|
|
),
|
|
),
|
|
);
|
|
$logo_path = theme_get_setting('logo_path', $key);
|
|
// If $logo_path is a public:// URI, display the path relative to the files
|
|
// directory; stream wrappers are not end-user friendly.
|
|
if (file_uri_scheme($logo_path) == 'public') {
|
|
$logo_path = file_uri_target($logo_path);
|
|
}
|
|
$form['logo']['settings']['logo_path'] = array(
|
|
'#type' => 'textfield',
|
|
'#title' => t('Path to custom logo'),
|
|
'#default_value' => $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']['settings']['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' => theme_get_setting('default_favicon', $key),
|
|
'#description' => t('Check here if you want the theme to use the default shortcut icon.')
|
|
);
|
|
$form['favicon']['settings'] = array(
|
|
'#type' => 'container',
|
|
'#states' => array(
|
|
// Hide the favicon settings when using the default favicon.
|
|
'invisible' => array(
|
|
'input[name="default_favicon"]' => array('checked' => TRUE),
|
|
),
|
|
),
|
|
);
|
|
$favicon_path = theme_get_setting('favicon_path', $key);
|
|
// If $favicon_path is a public:// URI, display the path relative to the
|
|
// files directory; stream wrappers are not end-user friendly.
|
|
if (file_uri_scheme($favicon_path) == 'public') {
|
|
$favicon_path = file_uri_target($favicon_path);
|
|
}
|
|
$form['favicon']['settings']['favicon_path'] = array(
|
|
'#type' => 'textfield',
|
|
'#title' => t('Path to custom icon'),
|
|
'#default_value' => $favicon_path,
|
|
'#description' => t('The path to the image file you would like to use as your custom shortcut icon.')
|
|
);
|
|
$form['favicon']['settings']['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) {
|
|
// Call engine-specific settings.
|
|
$function = $themes[$key]->prefix . '_engine_settings';
|
|
if (function_exists($function)) {
|
|
$form['engine_specific'] = array(
|
|
'#type' => 'fieldset',
|
|
'#title' => t('Theme-engine-specific settings'),
|
|
'#description' => t('These settings only exist for the themes based on the %engine theme engine.', array('%engine' => $themes[$key]->prefix)),
|
|
);
|
|
$function($form, $form_state);
|
|
}
|
|
|
|
// Create a list which includes the current theme and all its base themes.
|
|
if (isset($themes[$key]->base_themes)) {
|
|
$theme_keys = array_keys($themes[$key]->base_themes);
|
|
$theme_keys[] = $key;
|
|
}
|
|
else {
|
|
$theme_keys = array($key);
|
|
}
|
|
|
|
// Save the name of the current theme (if any), so that we can temporarily
|
|
// override the current theme and allow theme_get_setting() to work
|
|
// without having to pass the theme name to it.
|
|
$default_theme = !empty($GLOBALS['theme_key']) ? $GLOBALS['theme_key'] : NULL;
|
|
$GLOBALS['theme_key'] = $key;
|
|
|
|
// Process the theme and all its base themes.
|
|
foreach ($theme_keys as $theme) {
|
|
// Include the theme-settings.php file.
|
|
$filename = DRUPAL_ROOT . '/' . str_replace("/$theme.info", '', $themes[$theme]->filename) . '/theme-settings.php';
|
|
if (file_exists($filename)) {
|
|
require_once $filename;
|
|
}
|
|
|
|
// Call theme-specific settings.
|
|
$function = $theme . '_form_system_theme_settings_alter';
|
|
if (function_exists($function)) {
|
|
$function($form, $form_state);
|
|
}
|
|
}
|
|
|
|
// Restore the original current theme.
|
|
if (!is_null($default_theme)) {
|
|
$GLOBALS['theme_key'] = $default_theme;
|
|
}
|
|
else {
|
|
unset($GLOBALS['theme_key']);
|
|
}
|
|
}
|
|
|
|
$form = system_settings_form($form, FALSE);
|
|
// We don't want to call system_settings_form_submit(), so change #submit.
|
|
array_pop($form['#submit']);
|
|
$form['#submit'][] = 'system_theme_settings_submit';
|
|
$form['#validate'][] = 'system_theme_settings_validate';
|
|
return $form;
|
|
}
|
|
|
|
/**
|
|
* Validator for the system_theme_settings() form.
|
|
*/
|
|
function system_theme_settings_validate($form, &$form_state) {
|
|
// Handle file uploads.
|
|
$validators = array('file_validate_is_image' => array());
|
|
|
|
// Check for a new uploaded logo.
|
|
$file = file_save_upload('logo_upload', $validators);
|
|
if (isset($file)) {
|
|
// File upload was attempted.
|
|
if ($file) {
|
|
// Put the temporary file in form_values so we can save it on submit.
|
|
$form_state['values']['logo_upload'] = $file;
|
|
}
|
|
else {
|
|
// File upload failed.
|
|
form_set_error('logo_upload', t('The logo could not be uploaded.'));
|
|
}
|
|
}
|
|
|
|
// Check for a new uploaded favicon.
|
|
$file = file_save_upload('favicon_upload');
|
|
if (isset($file)) {
|
|
// File upload was attempted.
|
|
if ($file) {
|
|
// Put the temporary file in form_values so we can save it on submit.
|
|
$form_state['values']['favicon_upload'] = $file;
|
|
}
|
|
else {
|
|
// File upload failed.
|
|
form_set_error('logo_upload', t('The favicon could not be uploaded.'));
|
|
}
|
|
}
|
|
|
|
// If the user provided a path for a logo or favicon file, make sure a file
|
|
// exists at that path.
|
|
if ($form_state['values']['logo_path']) {
|
|
$path = _system_theme_settings_validate_path($form_state['values']['logo_path']);
|
|
if (!$path) {
|
|
form_set_error('logo_path', t('The custom logo path is invalid.'));
|
|
}
|
|
}
|
|
if ($form_state['values']['favicon_path']) {
|
|
$path = _system_theme_settings_validate_path($form_state['values']['favicon_path']);
|
|
if (!$path) {
|
|
form_set_error('favicon_path', t('The custom favicon path is invalid.'));
|
|
}
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Helper function for the system_theme_settings form.
|
|
*
|
|
* Attempts to validate normal system paths, paths relative to the public files
|
|
* directory, or stream wrapper URIs. If the given path is any of the above,
|
|
* returns a valid path or URI that the theme system can display.
|
|
*
|
|
* @param $path
|
|
* A path relative to the Drupal root or to the public files directory, or
|
|
* a stream wrapper URI.
|
|
* @return mixed
|
|
* A valid path that can be displayed through the theme system, or FALSE if
|
|
* the path could not be validated.
|
|
*/
|
|
function _system_theme_settings_validate_path($path) {
|
|
if (drupal_realpath($path)) {
|
|
// The path is relative to the Drupal root, or is a valid URI.
|
|
return $path;
|
|
}
|
|
$uri = 'public://' . $path;
|
|
if (file_exists($uri)) {
|
|
return $uri;
|
|
}
|
|
return FALSE;
|
|
}
|
|
|
|
/**
|
|
* Process system_theme_settings form submissions.
|
|
*/
|
|
function system_theme_settings_submit($form, &$form_state) {
|
|
$values = $form_state['values'];
|
|
|
|
// If the user uploaded a new logo or favicon, save it to a permanent location
|
|
// and use it in place of the default theme-provided file.
|
|
if ($file = $values['logo_upload']) {
|
|
unset($values['logo_upload']);
|
|
$filename = file_unmanaged_copy($file->uri);
|
|
$values['default_logo'] = 0;
|
|
$values['logo_path'] = $filename;
|
|
$values['toggle_logo'] = 1;
|
|
}
|
|
if ($file = $values['favicon_upload']) {
|
|
unset($values['favicon_upload']);
|
|
$filename = file_unmanaged_copy($file->uri);
|
|
$values['default_favicon'] = 0;
|
|
$values['favicon_path'] = $filename;
|
|
$values['toggle_favicon'] = 1;
|
|
}
|
|
|
|
// If the user entered a path relative to the system files directory for
|
|
// a logo or favicon, store a public:// URI so the theme system can handle it.
|
|
if (!empty($values['logo_path'])) {
|
|
$values['logo_path'] = _system_theme_settings_validate_path($values['logo_path']);
|
|
}
|
|
if (!empty($values['favicon_path'])) {
|
|
$values['favicon_path'] = _system_theme_settings_validate_path($values['favicon_path']);
|
|
}
|
|
|
|
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.
|
|
*
|
|
* @return
|
|
* The form array.
|
|
*
|
|
* @ingroup forms
|
|
* @see theme_system_modules()
|
|
* @see system_modules_submit()
|
|
*/
|
|
function system_modules($form, $form_state = array()) {
|
|
// Get current list of modules.
|
|
$files = system_rebuild_module_data();
|
|
|
|
// Remove hidden modules from display list.
|
|
$visible_files = $files;
|
|
foreach ($visible_files as $filename => $file) {
|
|
if (!empty($file->info['hidden']) || !empty($file->info['required'])) {
|
|
unset($visible_files[$filename]);
|
|
}
|
|
}
|
|
|
|
uasort($visible_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($visible_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 ($visible_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 (<span class="admin-missing">missing</span>)', array('@module' => drupal_ucfirst($requires)));
|
|
$extra['disabled'] = TRUE;
|
|
}
|
|
// Only display visible modules.
|
|
elseif (isset($visible_files[$requires])) {
|
|
$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 (<span class="admin-missing">incompatible with</span> 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 (<span class="admin-enabled">enabled</span>)', array('@module' => $requires_name));
|
|
}
|
|
else {
|
|
$extra['requires'][$requires] = t('@module (<span class="admin-disabled">disabled</span>)', 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)) {
|
|
$extra['links']['help'] = array(
|
|
'#type' => 'link',
|
|
'#title' => t('Help'),
|
|
'#href' => "admin/help/$filename",
|
|
'#options' => array('attributes' => array('class' => array('module-link', 'module-link-help'), 'title' => t('Help'))),
|
|
);
|
|
}
|
|
}
|
|
// Generate link for module's permission, if the user has access to it.
|
|
if ($module->status && user_access('administer permissions') && in_array($filename, module_implements('permission'))) {
|
|
$extra['links']['permissions'] = array(
|
|
'#type' => 'link',
|
|
'#title' => t('Permissions'),
|
|
'#href' => 'admin/people/permissions',
|
|
'#options' => array('fragment' => 'module-' . $filename, 'attributes' => array('class' => array('module-link', 'module-link-permissions'), 'title' => t('Configure permissions'))),
|
|
);
|
|
}
|
|
// Generate link for module's configuration page, if the module provides
|
|
// one.
|
|
if ($module->status && isset($module->info['configure'])) {
|
|
$configure_link = menu_get_item($module->info['configure']);
|
|
if ($configure_link['access']) {
|
|
$extra['links']['configure'] = array(
|
|
'#type' => 'link',
|
|
'#title' => t('Configure'),
|
|
'#href' => $configure_link['href'],
|
|
'#options' => array('attributes' => array('class' => array('module-link', 'module-link-configure'), 'title' => $configure_link['description'])),
|
|
);
|
|
}
|
|
}
|
|
|
|
// 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($visible_files[$required_by])) {
|
|
if ($files[$required_by]->status == 1 && $module->status == 1) {
|
|
$extra['required_by'][] = t('@module (<span class="admin-enabled">enabled</span>)', array('@module' => $files[$required_by]->info['name']));
|
|
$extra['disabled'] = TRUE;
|
|
}
|
|
else {
|
|
$extra['required_by'][] = t('@module (<span class="admin-disabled">disabled</span>)', 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' => array('checkbox')),
|
|
t('Name'),
|
|
t('Version'),
|
|
t('Description'),
|
|
array('data' => t('Operations'), 'colspan' => 3),
|
|
),
|
|
);
|
|
}
|
|
|
|
$form['actions'] = array('#type' => 'actions');
|
|
$form['actions']['submit'] = array(
|
|
'#type' => 'submit',
|
|
'#value' => t('Save configuration'),
|
|
);
|
|
$form['#action'] = url('admin/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']);
|
|
}
|
|
|
|
/**
|
|
* Array sorting callback; sorts modules or themes by their name.
|
|
*/
|
|
function system_sort_themes($a, $b) {
|
|
if ($a->is_default) {
|
|
return -1;
|
|
}
|
|
if ($b->is_default) {
|
|
return 1;
|
|
}
|
|
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,
|
|
'links' => array(),
|
|
);
|
|
$form = array(
|
|
'#tree' => TRUE,
|
|
);
|
|
// Set the basic properties.
|
|
$form['name'] = array(
|
|
'#markup' => $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 not compatible with Drupal !core_version and should be replaced.', array('!core_version' => DRUPAL_CORE_COMPATIBILITY));
|
|
}
|
|
|
|
// 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', array('path' => 'misc/watchdog-error.png', 'alt' => t('incompatible'), 'title' => $status_short)),
|
|
);
|
|
$form['description']['#markup'] .= theme('system_modules_incompatible', array('message' => $status_long));
|
|
}
|
|
|
|
// Build operation links.
|
|
foreach (array('help', 'permissions', 'configure') as $key) {
|
|
$form['links'][$key] = (isset($extra['links'][$key]) ? $extra['links'][$key] : array());
|
|
}
|
|
|
|
return $form;
|
|
}
|
|
|
|
/**
|
|
* Display confirmation form for required modules.
|
|
*
|
|
* @param $modules
|
|
* Array of module file objects as returned from system_rebuild_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) {
|
|
$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);
|
|
}
|
|
|
|
foreach ($storage['missing_modules'] as $name => $info) {
|
|
$t_argument = array(
|
|
'@module' => $name,
|
|
'@depends' => implode(', ', $info['depends']),
|
|
);
|
|
$items[] = format_plural(count($info['depends']), 'The @module module is missing, so the following module will be disabled: @depends.', 'The @module module is missing, so the following module will be disabled: @depends.', $t_argument);
|
|
}
|
|
|
|
$form['text'] = array('#markup' => theme('item_list', array('items' => $items)));
|
|
|
|
if ($form) {
|
|
// Set some default form values
|
|
$form = confirm_form(
|
|
$form,
|
|
t('Some required modules must be enabled'),
|
|
'admin/modules',
|
|
t('Would you like to continue with 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 (empty($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_rebuild_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();
|
|
$missing_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 (!isset($files[$requires])) {
|
|
// The required module is missing, mark this module as disabled.
|
|
$missing_modules[$requires]['depends'][] = $name;
|
|
$modules[$name]['enabled'] = FALSE;
|
|
}
|
|
else {
|
|
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 || $missing_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.
|
|
$form_state['storage'] = array(
|
|
'more_modules' => $more_modules,
|
|
'missing_modules' => $missing_modules,
|
|
'modules' => $modules
|
|
);
|
|
$form_state['rebuild'] = TRUE;
|
|
return;
|
|
}
|
|
|
|
$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, SORT_DESC, $modules_to_be_enabled);
|
|
module_enable($modules_to_be_enabled, FALSE);
|
|
}
|
|
// 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, SORT_ASC, $disable_modules);
|
|
module_disable($disable_modules, FALSE);
|
|
}
|
|
|
|
// 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, SORT_DESC, $new_modules);
|
|
module_enable($new_modules, FALSE);
|
|
}
|
|
|
|
$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();
|
|
system_rebuild_theme_data();
|
|
drupal_theme_rebuild();
|
|
node_types_rebuild();
|
|
menu_rebuild();
|
|
cache_clear_all('schema', 'cache');
|
|
entity_info_cache_clear();
|
|
drupal_clear_css_cache();
|
|
drupal_clear_js_cache();
|
|
|
|
$form_state['redirect'] = 'admin/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, $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 (!empty($form_state['storage']) && $confirm_form = system_modules_uninstall_confirm_form($form_state['storage'])) {
|
|
return $confirm_form;
|
|
}
|
|
|
|
// 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 or schema hook.
|
|
// If the hook exists, the module can be uninstalled.
|
|
module_load_install($module->name);
|
|
if (module_hook($module->name, 'uninstall') || module_hook($module->name, 'schema')) {
|
|
$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['actions'] = array('#type' => 'actions');
|
|
$form['actions']['submit'] = array(
|
|
'#type' => 'submit',
|
|
'#value' => t('Uninstall'),
|
|
);
|
|
$form['#action'] = url('admin/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 (empty($storage)) {
|
|
return;
|
|
}
|
|
|
|
// Construct the hidden form elements and list items.
|
|
foreach (array_filter($storage['uninstall']) as $module => $value) {
|
|
$info = drupal_parse_info_file(drupal_get_path('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' => '<p>' . t('The following modules will be completely uninstalled from your site, and <em>all data from these modules will be lost</em>!') . '</p>' . theme('item_list', array('items' => $uninstall)));
|
|
$form = confirm_form(
|
|
$form,
|
|
t('Confirm uninstall'),
|
|
'admin/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/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.'));
|
|
|
|
$form_state['redirect'] = 'admin/modules/uninstall';
|
|
}
|
|
else {
|
|
$form_state['storage'] = $form_state['values'];
|
|
$form_state['rebuild'] = TRUE;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Menu callback. Display blocked IP addresses.
|
|
*
|
|
* @param $default_ip
|
|
* Optional IP address to be passed on to drupal_get_form() for
|
|
* use as the default value of the IP address form field.
|
|
*/
|
|
function system_ip_blocking($default_ip = '') {
|
|
$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/config/people/ip-blocking/delete/$ip->iid"),
|
|
);
|
|
}
|
|
|
|
$build['system_ip_blocking_form'] = drupal_get_form('system_ip_blocking_form', $default_ip);
|
|
|
|
$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, $form_state, $default_ip) {
|
|
$form['ip'] = array(
|
|
'#title' => t('IP address'),
|
|
'#type' => 'textfield',
|
|
'#size' => 64,
|
|
'#maxlength' => 32,
|
|
'#default_value' => $default_ip,
|
|
'#description' => t('Enter a valid IP address.'),
|
|
);
|
|
$form['actions'] = array('#type' => 'actions');
|
|
$form['actions']['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('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/config/people/ip-blocking';
|
|
return;
|
|
}
|
|
|
|
/**
|
|
* IP deletion confirm page.
|
|
*
|
|
* @see system_ip_blocking_delete_submit()
|
|
*/
|
|
function system_ip_blocking_delete($form, &$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/config/people/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/config/people/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' => variable_get('site_name', 'Drupal'),
|
|
'#required' => TRUE
|
|
);
|
|
$form['site_slogan'] = array(
|
|
'#type' => 'textfield',
|
|
'#title' => t('Slogan'),
|
|
'#default_value' => variable_get('site_slogan', ''),
|
|
'#description' => t("How this is used depends on your site's theme."),
|
|
);
|
|
$form['site_mail'] = array(
|
|
'#type' => 'textfield',
|
|
'#title' => t('E-mail address'),
|
|
'#default_value' => variable_get('site_mail', ini_get('sendmail_from')),
|
|
'#description' => t("The <em>From</em> 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_frontpage'] = array(
|
|
'#type' => 'textfield',
|
|
'#title' => t('Default front page'),
|
|
'#default_value' => drupal_get_path_alias(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, 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' => variable_get('default_nodes_main', 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 such as the front page.')
|
|
);
|
|
$form['site_403'] = array(
|
|
'#type' => 'textfield',
|
|
'#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. 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' => variable_get('site_404', ''),
|
|
'#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['cron_safe_threshold'] = array(
|
|
'#type' => 'select',
|
|
'#title' => t('Automatically run cron'),
|
|
'#default_value' => variable_get('cron_safe_threshold', DRUPAL_CRON_DEFAULT_THRESHOLD),
|
|
'#options' => array(0 => t('Never')) + drupal_map_assoc(array(3600, 10800, 21600, 43200, 86400, 604800), 'format_interval'),
|
|
'#description' => t('When enabled, the site will check whether cron has been run in the configured interval and automatically run it upon the next page request. For more information visit the <a href="@status-report-url">status report page</a>.', array('@status-report-url' => url('admin/reports/status'))),
|
|
);
|
|
|
|
$form['#validate'][] = 'system_site_information_settings_validate';
|
|
|
|
return system_settings_form($form, FALSE);
|
|
}
|
|
|
|
/**
|
|
* 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);
|
|
}
|
|
// Get the normal path of the front page.
|
|
form_set_value($form['site_frontpage'], drupal_get_normal_path($form_state['values']['site_frontpage']), $form_state);
|
|
// Validate front page path.
|
|
if (!drupal_valid_path($form_state['values']['site_frontpage'])) {
|
|
form_set_error('site_frontpage', t("The path '@path' is either invalid or you do not have access to it.", array('@path' => $form_state['values']['site_frontpage'])));
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Form builder; Configure error reporting settings.
|
|
*
|
|
* @ingroup forms
|
|
* @see system_settings_form()
|
|
*/
|
|
function system_logging_settings() {
|
|
$form['error_level'] = array(
|
|
'#type' => 'radios',
|
|
'#title' => t('Error messages to display'),
|
|
'#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'),
|
|
),
|
|
'#description' => t('It is recommended that sites running on production environments do not display any errors.'),
|
|
);
|
|
|
|
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', 0);
|
|
$form['caching']['cache'] = array(
|
|
'#type' => 'checkbox',
|
|
'#title' => t('Cache pages for anonymous users'),
|
|
'#default_value' => $cache,
|
|
'#weight' => -2,
|
|
);
|
|
$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('Cached pages will not be re-created until at least this much time has elapsed.')
|
|
);
|
|
$form['caching']['page_cache_maximum_age'] = array(
|
|
'#type' => 'select',
|
|
'#title' => t('Expiration of cached pages'),
|
|
'#default_value' => variable_get('page_cache_maximum_age', 0),
|
|
'#options' => $period,
|
|
'#description' => t('The maximum time an external cache can use an old version of a page.')
|
|
);
|
|
|
|
$directory = 'public://';
|
|
$is_writable = is_dir($directory) && is_writable($directory);
|
|
$disabled = !$is_writable;
|
|
$disabled_message = '';
|
|
if(!$is_writable) {
|
|
$disabled_message = ' ' . t('<strong class="error">Set up the <a href="!file-system">public files directory</a> to make these optimizations available.</strong>', array('!file-system' => url('admin/config/media/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,
|
|
);
|
|
|
|
$js_hide = $cache ? '' : ' class="js-hide"';
|
|
$form['bandwidth_optimization']['page_compression'] = array(
|
|
'#type' => 'checkbox',
|
|
'#title' => t('Compress cached pages.'),
|
|
'#default_value' => variable_get('page_compression', TRUE),
|
|
'#prefix' => '<div id="page-compression-wrapper"' . $js_hide . '>',
|
|
'#suffix' => '</div>',
|
|
);
|
|
$form['bandwidth_optimization']['preprocess_css'] = array(
|
|
'#type' => 'checkbox',
|
|
'#title' => t('Aggregate and compress CSS files into one file.'),
|
|
'#default_value' => intval(variable_get('preprocess_css', 0) && $is_writable),
|
|
'#disabled' => $disabled,
|
|
);
|
|
$form['bandwidth_optimization']['preprocess_js'] = array(
|
|
'#type' => 'checkbox',
|
|
'#title' => t('Aggregate JavaScript files into one file.'),
|
|
'#default_value' => intval(variable_get('preprocess_js', 0) && $is_writable),
|
|
'#disabled' => $disabled,
|
|
);
|
|
|
|
$form['#submit'][] = 'drupal_clear_css_cache';
|
|
$form['#submit'][] = 'drupal_clear_js_cache';
|
|
|
|
return system_settings_form($form, FALSE);
|
|
}
|
|
|
|
/**
|
|
* Submit callback; clear system caches.
|
|
*
|
|
* @ingroup forms
|
|
*/
|
|
function system_clear_cache_submit($form, &$form_state) {
|
|
drupal_flush_all_caches();
|
|
drupal_set_message(t('Caches cleared.'));
|
|
}
|
|
|
|
/**
|
|
* Form builder; Configure the site file handling.
|
|
*
|
|
* @ingroup forms
|
|
* @see system_settings_form()
|
|
*/
|
|
function system_file_system_settings() {
|
|
|
|
$form['file_public_path'] = array(
|
|
'#type' => 'textfield',
|
|
'#title' => t('Public file system path'),
|
|
'#default_value' => file_directory_path(),
|
|
'#maxlength' => 255,
|
|
'#description' => t('A local file system path where public files will be stored. This directory must exist and be writable by Drupal. This directory must be relative to the Drupal installation directory and be accessible over the web.'),
|
|
'#after_build' => array('system_check_directory'),
|
|
);
|
|
|
|
$form['file_private_path'] = array(
|
|
'#type' => 'textfield',
|
|
'#title' => t('Private file system path'),
|
|
'#default_value' => file_directory_path('private'),
|
|
'#maxlength' => 255,
|
|
'#description' => t('A local file system path where private files will be stored. This directory must exist and be writable by Drupal. This directory should not be accessible over the web.'),
|
|
'#after_build' => array('system_check_directory'),
|
|
);
|
|
|
|
$form['file_temporary_path'] = array(
|
|
'#type' => 'textfield',
|
|
'#title' => t('Temporary directory'),
|
|
'#default_value' => file_directory_path('temporary'),
|
|
'#maxlength' => 255,
|
|
'#description' => t('A local file system path where temporary files will be stored. This directory should not be accessible over the web.'),
|
|
'#after_build' => array('system_check_directory'),
|
|
);
|
|
// Any visible, writeable wrapper can potentially be used for the files
|
|
// directory, including a remote file system that integrates with a CDN.
|
|
foreach(file_get_stream_wrappers(STREAM_WRAPPERS_WRITE_VISIBLE) as $scheme => $info) {
|
|
$options[$scheme] = check_plain($info['description']);
|
|
}
|
|
|
|
if (!empty($options)) {
|
|
$form['file_default_scheme'] = array(
|
|
'#type' => 'radios',
|
|
'#title' => t('Default download method'),
|
|
'#default_value' => isset($options['public']) ? 'public' : key($options),
|
|
'#options' => $options,
|
|
'#description' => t('This setting is used as the preferred download method. The use of public files is more efficient, but does not provide any access control.'),
|
|
);
|
|
}
|
|
|
|
return system_settings_form($form, TRUE);
|
|
}
|
|
|
|
/**
|
|
* Form builder; Configure site image toolkit usage.
|
|
*
|
|
* @ingroup forms
|
|
* @see system_settings_form()
|
|
*/
|
|
function system_image_toolkit_settings() {
|
|
$toolkits_available = image_get_available_toolkits();
|
|
$current_toolkit = image_get_toolkit();
|
|
|
|
if (count($toolkits_available) == 0) {
|
|
variable_del('image_toolkit');
|
|
$form['image_toolkit_help'] = array(
|
|
'#markup' => t("No image toolkits were detected. Drupal includes support for <a href='!gd-link'>PHP's built-in image processing functions</a> but they were not detected on this system. You should consult your system administrator to have them enabled, or try using a third party toolkit.", array('gd-link' => url('http://php.net/gd'))),
|
|
);
|
|
return $form;
|
|
}
|
|
|
|
if (count($toolkits_available) > 1) {
|
|
$form['image_toolkit'] = array(
|
|
'#type' => 'radios',
|
|
'#title' => t('Select an image processing toolkit'),
|
|
'#default_value' => $current_toolkit,
|
|
'#options' => $toolkits_available
|
|
);
|
|
}
|
|
else {
|
|
variable_set('image_toolkit', key($toolkits_available));
|
|
}
|
|
|
|
// Get the toolkit's settings form.
|
|
$function = 'image_' . $current_toolkit . '_settings';
|
|
if (function_exists($function)) {
|
|
$form['image_toolkit_settings'] = $function();
|
|
}
|
|
|
|
return system_settings_form($form, TRUE);
|
|
}
|
|
|
|
/**
|
|
* Form builder; Configure how the site handles RSS feeds.
|
|
*
|
|
* @ingroup forms
|
|
* @see system_settings_form()
|
|
*/
|
|
function system_rss_feeds_settings() {
|
|
|
|
$form['feed_description'] = array(
|
|
'#type' => 'textarea',
|
|
'#title' => t('Feed description'),
|
|
'#default_value' => '',
|
|
'#description' => t('Description of your site, included in each feed.')
|
|
);
|
|
$form['feed_default_items'] = array(
|
|
'#type' => 'select',
|
|
'#title' => t('Number of items in each feed'),
|
|
'#default_value' => 10,
|
|
'#options' => drupal_map_assoc(array(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 15, 20, 25, 30)),
|
|
'#description' => t('Default number of items to include in each feed.')
|
|
);
|
|
$form['feed_item_length'] = array(
|
|
'#type' => 'select',
|
|
'#title' => t('Feed content'),
|
|
'#default_value' => 'fulltext',
|
|
'#options' => array('title' => t('Titles only'), 'teaser' => t('Titles plus teaser'), 'fulltext' => t('Full text')),
|
|
'#description' => t('Global setting for the default display of content items in each feed.')
|
|
);
|
|
|
|
return system_settings_form($form, TRUE);
|
|
}
|
|
|
|
/**
|
|
* Form builder; Configure the site regional settings.
|
|
*
|
|
* @ingroup forms
|
|
* @see system_settings_form()
|
|
* @see system_regional_settings_submit()
|
|
*/
|
|
function system_regional_settings() {
|
|
include_once DRUPAL_ROOT . '/includes/locale.inc';
|
|
$countries = country_get_list();
|
|
// Add a 'No default country' option to the start of the list.
|
|
$countries = array_merge(array('' => t('No default country')), $countries);
|
|
|
|
// Date settings:
|
|
$zones = system_time_zones();
|
|
|
|
$form['locale'] = array(
|
|
'#type' => 'fieldset',
|
|
'#title' => t('Locale'),
|
|
);
|
|
|
|
$form['locale']['site_default_country'] = array(
|
|
'#type' => 'select',
|
|
'#title' => t('Default country'),
|
|
'#default_value' => variable_get('site_default_country', ''),
|
|
'#options' => $countries,
|
|
'#attributes' => array('class' => array('country-detect')),
|
|
);
|
|
|
|
$form['locale']['date_first_day'] = array(
|
|
'#type' => 'select',
|
|
'#title' => t('First day of week'),
|
|
'#default_value' => variable_get('date_first_day', 0),
|
|
'#options' => array(0 => t('Sunday'), 1 => t('Monday'), 2 => t('Tuesday'), 3 => t('Wednesday'), 4 => t('Thursday'), 5 => t('Friday'), 6 => t('Saturday')),
|
|
);
|
|
|
|
$form['timezone'] = array(
|
|
'#type' => 'fieldset',
|
|
'#title' => t('Time zones'),
|
|
);
|
|
|
|
$form['timezone']['date_default_timezone'] = array(
|
|
'#type' => 'select',
|
|
'#title' => t('Default time zone'),
|
|
'#default_value' => variable_get('date_default_timezone', date_default_timezone_get()),
|
|
'#options' => $zones,
|
|
);
|
|
|
|
$configurable_timezones = variable_get('configurable_timezones', 1);
|
|
$form['timezone']['configurable_timezones'] = array(
|
|
'#type' => 'checkbox',
|
|
'#title' => t('Users may set their own time zone.'),
|
|
'#default_value' => $configurable_timezones,
|
|
);
|
|
|
|
$form['timezone']['configurable_timezones_wrapper'] = array(
|
|
'#type' => 'container',
|
|
'#states' => array(
|
|
// Hide the user configured timezone settings when users are forced to use
|
|
// the default setting.
|
|
'invisible' => array(
|
|
'input[name="configurable_timezones"]' => array('checked' => FALSE),
|
|
),
|
|
),
|
|
);
|
|
$form['timezone']['configurable_timezones_wrapper']['empty_timezone_message'] = array(
|
|
'#type' => 'checkbox',
|
|
'#title' => t('Remind users at login if their time zone is not set.'),
|
|
'#default_value' => variable_get('empty_timezone_message', 0),
|
|
'#description' => t('Only applied if users may set their own time zone.')
|
|
);
|
|
|
|
$form['timezone']['configurable_timezones_wrapper']['user_default_timezone'] = array(
|
|
'#type' => 'radios',
|
|
'#title' => t('Time zone for new users'),
|
|
'#default_value' => variable_get('user_default_timezone', DRUPAL_USER_TIMEZONE_DEFAULT),
|
|
'#options' => array(
|
|
DRUPAL_USER_TIMEZONE_DEFAULT => t('Default time zone.'),
|
|
DRUPAL_USER_TIMEZONE_EMPTY => t('Empty time zone.'),
|
|
DRUPAL_USER_TIMEZONE_SELECT => t('Users may set their own time zone at registration.'),
|
|
),
|
|
'#description' => t('Only applied if users may set their own time zone.')
|
|
);
|
|
|
|
return system_settings_form($form, FALSE);
|
|
}
|
|
|
|
/**
|
|
* Form builder; Configure the site date and time settings.
|
|
*
|
|
* @ingroup forms
|
|
* @see system_settings_form()
|
|
*/
|
|
function system_date_time_settings() {
|
|
// Get list of all available date types.
|
|
drupal_static_reset('system_get_date_types');
|
|
$format_types = system_get_date_types();
|
|
|
|
// Get list of all available date formats.
|
|
$all_formats = array();
|
|
drupal_static_reset('system_get_date_formats');
|
|
$date_formats = system_get_date_formats(); // Call this to rebuild the list, and to have default list.
|
|
foreach ($date_formats as $type => $format_info) {
|
|
$all_formats = array_merge($all_formats, $format_info);
|
|
}
|
|
$custom_formats = system_get_date_formats('custom');
|
|
if (!empty($format_types)) {
|
|
foreach ($format_types as $type => $type_info) {
|
|
// If a system type, only show the available formats for that type and
|
|
// custom ones.
|
|
if ($type_info['locked'] == 1) {
|
|
$formats = system_get_date_formats($type);
|
|
if (empty($formats)) {
|
|
$formats = $all_formats;
|
|
}
|
|
elseif (!empty($custom_formats)) {
|
|
$formats = array_merge($formats, $custom_formats);
|
|
}
|
|
}
|
|
// If a user configured type, show all available date formats.
|
|
else {
|
|
$formats = $all_formats;
|
|
}
|
|
|
|
$choices = array();
|
|
foreach ($formats as $f => $format) {
|
|
$choices[$f] = format_date(REQUEST_TIME, 'custom', $f);
|
|
}
|
|
reset($formats);
|
|
$default = variable_get('date_format_' . $type, key($formats));
|
|
|
|
// Get date type info for this date type.
|
|
$type_info = system_get_date_types($type);
|
|
$form['formats']['#theme'] = 'system_date_time_settings';
|
|
|
|
// Show date format select list.
|
|
$form['formats']['format']['date_format_' . $type] = array(
|
|
'#type' => 'select',
|
|
'#title' => check_plain($type_info['title']),
|
|
'#attributes' => array('class' => array('date-format')),
|
|
'#default_value' => (isset($choices[$default]) ? $default : 'custom'),
|
|
'#options' => $choices,
|
|
);
|
|
|
|
// If this isn't a system provided type, allow the user to remove it from
|
|
// the system.
|
|
if ($type_info['locked'] == 0) {
|
|
$form['formats']['delete']['date_format_' . $type . '_delete'] = array(
|
|
'#type' => 'link',
|
|
'#title' => t('delete'),
|
|
'#href' => 'admin/config/regional/date-time/types/' . $type . '/delete',
|
|
);
|
|
}
|
|
}
|
|
}
|
|
|
|
// Display a message if no date types configured.
|
|
$form['#empty_text'] = t('No date types available. <a href="@link">Add date type</a>.', array('@link' => url('admin/config/regional/date-time/types/add')));
|
|
|
|
return system_settings_form($form, FALSE);
|
|
}
|
|
|
|
/**
|
|
* Returns HTML for the date settings form.
|
|
*
|
|
* @param $variables
|
|
* An associative array containing:
|
|
* - form: A render element representing the form.
|
|
*
|
|
* @ingroup themeable
|
|
*/
|
|
function theme_system_date_time_settings($variables) {
|
|
$form = $variables['form'];
|
|
$header = array(
|
|
t('Date type'),
|
|
t('Format'),
|
|
t('Operations'),
|
|
);
|
|
|
|
foreach (element_children($form['format']) as $key) {
|
|
$delete_key = $key . '_delete';
|
|
$row = array();
|
|
$row[] = $form['format'][$key]['#title'];
|
|
unset($form['format'][$key]['#title']);
|
|
$row[] = array('data' => drupal_render($form['format'][$key]));
|
|
$row[] = array('data' => drupal_render($form['delete'][$delete_key]));
|
|
$rows[] = $row;
|
|
}
|
|
|
|
$output = theme('table', array('header' => $header, 'rows' => $rows, 'attributes' => array('id' => 'system-date-types')));
|
|
$output .= drupal_render_children($form);
|
|
|
|
return $output;
|
|
}
|
|
|
|
|
|
/**
|
|
* Add new date type.
|
|
*
|
|
* @ingroup forms
|
|
* @ingroup system_add_date_format_type_form_validate()
|
|
* @ingroup system_add_date_format_type_form_submit()
|
|
*/
|
|
function system_add_date_format_type_form($form, &$form_state) {
|
|
$form['date_type'] = array(
|
|
'#title' => t('Date type'),
|
|
'#type' => 'textfield',
|
|
'#required' => TRUE,
|
|
'#field_suffix' => ' <small id="edit-date-type-suffix"> </small>',
|
|
);
|
|
$js_settings = array(
|
|
'type' => 'setting',
|
|
'data' => array(
|
|
'machineReadableValue' => array(
|
|
'date-type' => array(
|
|
'text' => t('Machine name'),
|
|
'target' => 'machine-name',
|
|
'searchPattern' => '[^a-z0-9]+',
|
|
'replaceToken' => '_',
|
|
),
|
|
),
|
|
),
|
|
);
|
|
$form['machine_name'] = array(
|
|
'#title' => t('Machine readable name'),
|
|
'#description' => t('The unique machine readable name for this date type, can only contain lowercase letters, numbers and underscores.'),
|
|
'#type' => 'textfield',
|
|
'#required' => TRUE,
|
|
'#attached' => array(
|
|
'js' => array(drupal_get_path('module', 'system') . '/system.js', $js_settings),
|
|
),
|
|
);
|
|
|
|
// Get list of all available date formats.
|
|
$formats = array();
|
|
drupal_static_reset('system_get_date_formats');
|
|
$date_formats = system_get_date_formats(); // Call this to rebuild the list, and to have default list.
|
|
foreach ($date_formats as $type => $format_info) {
|
|
$formats = array_merge($formats, $format_info);
|
|
}
|
|
$custom_formats = system_get_date_formats('custom');
|
|
if (!empty($custom_formats)) {
|
|
$formats = array_merge($formats, $custom_formats);
|
|
}
|
|
$choices = array();
|
|
foreach ($formats as $f => $format) {
|
|
$choices[$f] = format_date(REQUEST_TIME, 'custom', $f);
|
|
}
|
|
// Show date format select list.
|
|
$form['date_format'] = array(
|
|
'#type' => 'select',
|
|
'#title' => t('Date format'),
|
|
'#attributes' => array('class' => array('date-format')),
|
|
'#options' => $choices,
|
|
'#required' => TRUE,
|
|
);
|
|
|
|
$form['actions'] = array('#type' => 'actions');
|
|
$form['actions']['submit'] = array(
|
|
'#type' => 'submit',
|
|
'#value' => t('Add date type'),
|
|
);
|
|
|
|
$form['#validate'][] = 'system_add_date_format_type_form_validate';
|
|
$form['#submit'][] = 'system_add_date_format_type_form_submit';
|
|
|
|
return $form;
|
|
}
|
|
|
|
/**
|
|
* Validate system_add_date_format_type form submissions.
|
|
*/
|
|
function system_add_date_format_type_form_validate($form, &$form_state) {
|
|
if (!empty($form_state['values']['machine_name']) && !empty($form_state['values']['date_type'])) {
|
|
if (!preg_match("/^[a-zA-Z0-9_]+$/", trim($form_state['values']['machine_name']))) {
|
|
form_set_error('machine_name', t('The date type must contain only alphanumeric characters and underscores.'));
|
|
}
|
|
$types = system_get_date_types();
|
|
if (in_array(trim($form_state['values']['machine_name']), array_keys($types))) {
|
|
form_set_error('machine_name', t('This date type already exists. Enter a unique type.'));
|
|
}
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Process system_add_date_format_type form submissions.
|
|
*/
|
|
function system_add_date_format_type_form_submit($form, &$form_state) {
|
|
$machine_name = trim($form_state['values']['machine_name']);
|
|
|
|
$format_type = array();
|
|
$format_type['title'] = trim($form_state['values']['date_type']);
|
|
$format_type['type'] = $machine_name;
|
|
$format_type['locked'] = 0;
|
|
$format_type['is_new'] = 1;
|
|
system_date_format_type_save($format_type);
|
|
variable_set('date_format_' . $machine_name, $form_state['values']['date_format']);
|
|
|
|
drupal_set_message(t('New date type added successfully.'));
|
|
$form_state['redirect'] = 'admin/config/regional/date-time';
|
|
}
|
|
|
|
/**
|
|
* Return the date for a given format string via Ajax.
|
|
*/
|
|
function system_date_time_lookup() {
|
|
$result = format_date(REQUEST_TIME, 'custom', $_GET['format']);
|
|
drupal_json_output($result);
|
|
}
|
|
|
|
/**
|
|
* Form builder; Configure the site's maintenance status.
|
|
*
|
|
* @ingroup forms
|
|
* @see system_settings_form()
|
|
*/
|
|
function system_site_maintenance_mode() {
|
|
$form['maintenance_mode'] = array(
|
|
'#type' => 'checkbox',
|
|
'#title' => t('Put site into maintenance mode'),
|
|
'#default_value' => 0,
|
|
'#description' => t('When enabled, only users with the "Access site in maintenance mode" <a href="@permissions-url">permission</a> are able to access your site to perform maintenance; all other visitors see the maintenance mode message configured below. Authorized users can log in directly via the <a href="@user-login">user login</a> page.', array('@permissions-url' => url('admin/people/permissions'), '@user-login' => url('user'))),
|
|
);
|
|
$form['maintenance_mode_message'] = array(
|
|
'#type' => 'textarea',
|
|
'#title' => t('Maintenance mode message'),
|
|
'#default_value' => t('@site is currently under maintenance. We should be back shortly. Thank you for your patience.', array('@site' => variable_get('site_name', 'Drupal'))),
|
|
'#description' => t('Message to show visitors when the site is in maintenance mode.')
|
|
);
|
|
|
|
return system_settings_form($form, TRUE);
|
|
}
|
|
|
|
/**
|
|
* Form builder; Configure clean URL settings.
|
|
*
|
|
* @ingroup forms
|
|
* @see system_settings_form()
|
|
*/
|
|
function system_clean_url_settings($form, &$form_state) {
|
|
global $base_url;
|
|
|
|
// When accessing this form using a non-clean URL, allow a re-check to make
|
|
// sure clean URLs can be disabled at all times.
|
|
$available = FALSE;
|
|
if (strpos(request_uri(), '?q=') === FALSE || !empty($_SESSION['clean_url'])) {
|
|
$available = TRUE;
|
|
}
|
|
else {
|
|
$request = drupal_http_request($base_url . '/admin/config/search/clean-urls/check');
|
|
if (isset($request->code) && $request->code == 200) {
|
|
$available = TRUE;
|
|
}
|
|
}
|
|
|
|
if ($available) {
|
|
$_SESSION['clean_url'] = TRUE;
|
|
|
|
$form['clean_url'] = array(
|
|
'#type' => 'checkbox',
|
|
'#title' => t('Enable clean URLs'),
|
|
'#default_value' => 0,
|
|
'#description' => t('Use URLs like <code>example.com/user</code> instead of <code>example.com/?q=user</code>.'),
|
|
);
|
|
$form = system_settings_form($form);
|
|
}
|
|
else {
|
|
drupal_add_js(drupal_get_path('module', 'system') . '/system.js');
|
|
|
|
$form_state['redirect'] = $base_url . '/admin/config/search/clean-urls';
|
|
$form['clean_url_description'] = array(
|
|
'#type' => 'markup',
|
|
'#markup' => '<p>' . t('Use URLs like <code>example.com/user</code> instead of <code>example.com/?q=user</code>.') . ' ' . t('If you are directed to a <em>Page not found (404)</em> error after testing for clean URLs, see the <a href="@handbook">online handbook</a>.', array('@handbook' => 'http://drupal.org/node/15365')) . '</p>',
|
|
);
|
|
$form['clean_url_test'] = array(
|
|
'#type' => 'submit',
|
|
'#value' => t('Run the clean URL test'),
|
|
);
|
|
}
|
|
|
|
return $form;
|
|
}
|
|
|
|
/**
|
|
* Menu callback: displays the site status report. Can also be used as a pure check.
|
|
*
|
|
* @param $check
|
|
* If true, only returns a boolean whether there are system status errors.
|
|
*/
|
|
function system_status($check = FALSE) {
|
|
// Load .install files
|
|
include_once DRUPAL_ROOT . '/includes/install.inc';
|
|
drupal_load_updates();
|
|
|
|
// Check run-time requirements and status information.
|
|
$requirements = module_invoke_all('requirements', 'runtime');
|
|
usort($requirements, '_system_sort_requirements');
|
|
|
|
if ($check) {
|
|
return drupal_requirements_severity($requirements) == REQUIREMENT_ERROR;
|
|
}
|
|
// MySQL import might have set the uid of the anonymous user to autoincrement
|
|
// value. Let's try fixing it. See http://drupal.org/node/204411
|
|
db_update('users')
|
|
->expression('uid', 'uid - uid')
|
|
->condition('name', '')
|
|
->condition('pass', '')
|
|
->condition('status', 0)
|
|
->execute();
|
|
return theme('status_report', array('requirements' => $requirements));
|
|
}
|
|
|
|
/**
|
|
* Menu callback: run cron manually.
|
|
*/
|
|
function system_run_cron() {
|
|
// Run cron manually
|
|
if (drupal_cron_run()) {
|
|
drupal_set_message(t('Cron ran successfully.'));
|
|
}
|
|
else {
|
|
drupal_set_message(t('Cron run failed.'), 'error');
|
|
}
|
|
|
|
drupal_goto('admin/reports/status');
|
|
}
|
|
|
|
/**
|
|
* Menu callback: return information about PHP.
|
|
*/
|
|
function system_php() {
|
|
phpinfo();
|
|
drupal_exit();
|
|
}
|
|
|
|
/**
|
|
* Default page callback for batches.
|
|
*/
|
|
function system_batch_page() {
|
|
require_once DRUPAL_ROOT . '/includes/batch.inc';
|
|
$output = _batch_page();
|
|
|
|
if ($output === FALSE) {
|
|
drupal_access_denied();
|
|
}
|
|
elseif (isset($output)) {
|
|
// Force a page without blocks or messages to
|
|
// display a list of collected messages later.
|
|
drupal_set_page_content($output);
|
|
$page = element_info('page');
|
|
$page['#show_messages'] = FALSE;
|
|
return $page;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Returns HTML for an administrative block for display.
|
|
*
|
|
* @param $variables
|
|
* An associative array containing:
|
|
* - block: An array containing information about the block. It should include
|
|
* a 'title', a 'description' and a formatted 'content'.
|
|
*
|
|
* @ingroup themeable
|
|
*/
|
|
function theme_admin_block($variables) {
|
|
$block = $variables['block'];
|
|
|
|
// Don't display the block if it has no content to display.
|
|
if (empty($block['show'])) {
|
|
return '';
|
|
}
|
|
|
|
if (empty($block['content'])) {
|
|
$output = <<< EOT
|
|
<div class="admin-panel">
|
|
<h3>
|
|
$block[title]
|
|
</h3>
|
|
<div class="description">
|
|
$block[description]
|
|
</div>
|
|
</div>
|
|
EOT;
|
|
}
|
|
else {
|
|
$output = <<< EOT
|
|
<div class="admin-panel">
|
|
<h3>
|
|
$block[title]
|
|
</h3>
|
|
<div class="body">
|
|
$block[content]
|
|
</div>
|
|
</div>
|
|
EOT;
|
|
}
|
|
return $output;
|
|
}
|
|
|
|
/**
|
|
* Returns HTML for the content of an administrative block.
|
|
*
|
|
* @param $variables
|
|
* An associative array containing:
|
|
* - content: An array containing information about the block. It should
|
|
* include a 'title', a 'description' and a formatted 'content'.
|
|
*
|
|
* @ingroup themeable
|
|
*/
|
|
function theme_admin_block_content($variables) {
|
|
$content = $variables['content'];
|
|
|
|
if (!$content) {
|
|
return '';
|
|
}
|
|
|
|
if (system_admin_compact_mode()) {
|
|
$output = '<ul class="menu">';
|
|
foreach ($content as $item) {
|
|
$output .= '<li class="leaf">' . l($item['title'], $item['href'], $item['localized_options']) . '</li>';
|
|
}
|
|
$output .= '</ul>';
|
|
}
|
|
else {
|
|
$output = '<dl class="admin-list">';
|
|
foreach ($content as $item) {
|
|
$output .= '<dt>' . l($item['title'], $item['href'], $item['localized_options']) . '</dt>';
|
|
$output .= '<dd>' . filter_xss_admin($item['description']) . '</dd>';
|
|
}
|
|
$output .= '</dl>';
|
|
}
|
|
return $output;
|
|
}
|
|
|
|
/**
|
|
* Returns HTML for an administrative page.
|
|
*
|
|
* @param $variables
|
|
* An associative array containing:
|
|
* - blocks: An array of blocks to display. Each array should include a
|
|
* 'title', a 'description', a formatted 'content' and a 'position' which
|
|
* will control which container it will be in. This is usually 'left' or
|
|
* 'right'.
|
|
*
|
|
* @ingroup themeable
|
|
*/
|
|
function theme_admin_page($variables) {
|
|
$blocks = $variables['blocks'];
|
|
|
|
$stripe = 0;
|
|
$container = array();
|
|
|
|
foreach ($blocks as $block) {
|
|
if ($block_output = theme('admin_block', array('block' => $block))) {
|
|
if (empty($block['position'])) {
|
|
// perform automatic striping.
|
|
$block['position'] = ++$stripe % 2 ? 'left' : 'right';
|
|
}
|
|
if (!isset($container[$block['position']])) {
|
|
$container[$block['position']] = '';
|
|
}
|
|
$container[$block['position']] .= $block_output;
|
|
}
|
|
}
|
|
|
|
$output = '<div class="admin clearfix">';
|
|
$output .= theme('system_compact_link');
|
|
|
|
foreach ($container as $id => $data) {
|
|
$output .= '<div class="' . $id . ' clearfix">';
|
|
$output .= $data;
|
|
$output .= '</div>';
|
|
}
|
|
$output .= '</div>';
|
|
return $output;
|
|
}
|
|
|
|
/**
|
|
* Returns HTML for the output of the dashboard page.
|
|
*
|
|
* @param $variables
|
|
* An associative array containing:
|
|
* - menu_items: An array of modules to be displayed.
|
|
*
|
|
* @ingroup themeable
|
|
*/
|
|
function theme_system_admin_by_module($variables) {
|
|
$menu_items = $variables['menu_items'];
|
|
|
|
$stripe = 0;
|
|
$output = '';
|
|
$container = array('left' => '', 'right' => '');
|
|
$flip = array('left' => 'right', 'right' => 'left');
|
|
$position = 'left';
|
|
|
|
// Iterate over all modules.
|
|
foreach ($menu_items as $module => $block) {
|
|
list($description, $items) = $block;
|
|
|
|
// Output links.
|
|
if (count($items)) {
|
|
$block = array();
|
|
$block['title'] = $module;
|
|
$block['content'] = theme('item_list', array('items' => $items));
|
|
$block['description'] = t($description);
|
|
$block['show'] = TRUE;
|
|
|
|
if ($block_output = theme('admin_block', array('block' => $block))) {
|
|
if (!isset($block['position'])) {
|
|
// Perform automatic striping.
|
|
$block['position'] = $position;
|
|
$position = $flip[$position];
|
|
}
|
|
$container[$block['position']] .= $block_output;
|
|
}
|
|
}
|
|
}
|
|
|
|
$output = '<div class="admin clearfix">';
|
|
foreach ($container as $id => $data) {
|
|
$output .= '<div class="' . $id . ' clearfix">';
|
|
$output .= $data;
|
|
$output .= '</div>';
|
|
}
|
|
$output .= '</div>';
|
|
|
|
return $output;
|
|
}
|
|
|
|
/**
|
|
* Returns HTML for the status report.
|
|
*
|
|
* @param $variables
|
|
* An associative array containing:
|
|
* - requirements: An array of requirements.
|
|
*
|
|
* @ingroup themeable
|
|
*/
|
|
function theme_status_report($variables) {
|
|
$requirements = $variables['requirements'];
|
|
|
|
$i = 0;
|
|
$output = '<table class="system-status-report">';
|
|
foreach ($requirements as $requirement) {
|
|
if (empty($requirement['#type'])) {
|
|
$class = ++$i % 2 == 0 ? 'even' : 'odd';
|
|
|
|
$classes = array(
|
|
REQUIREMENT_INFO => 'info',
|
|
REQUIREMENT_OK => 'ok',
|
|
REQUIREMENT_WARNING => 'warning',
|
|
REQUIREMENT_ERROR => 'error',
|
|
);
|
|
$class = $classes[isset($requirement['severity']) ? (int) $requirement['severity'] : 0] . ' ' . $class;
|
|
|
|
// Output table row(s)
|
|
if (!empty($requirement['description'])) {
|
|
$output .= '<tr class="' . $class . ' merge-down"><td>' . $requirement['title'] . '</td><td>' . $requirement['value'] . '</td></tr>';
|
|
$output .= '<tr class="' . $class . ' merge-up"><td colspan="2">' . $requirement['description'] . '</td></tr>';
|
|
}
|
|
else {
|
|
$output .= '<tr class="' . $class . '"><td>' . $requirement['title'] . '</td><td>' . $requirement['value'] . '</td></tr>';
|
|
}
|
|
}
|
|
}
|
|
|
|
$output .= '</table>';
|
|
return $output;
|
|
}
|
|
|
|
/**
|
|
* Returns HTML for the modules form.
|
|
*
|
|
* @param $variables
|
|
* An associative array containing:
|
|
* - form: A render element representing the form.
|
|
*
|
|
* @ingroup themeable
|
|
*/
|
|
function theme_system_modules_fieldset($variables) {
|
|
$form = $variables['form'];
|
|
|
|
// Individual table headers.
|
|
$rows = array();
|
|
// Iterate through all the modules, which are
|
|
// children of this fieldset.
|
|
foreach (element_children($form) as $key) {
|
|
// Stick it into $module for easier accessing.
|
|
$module = $form[$key];
|
|
$row = array();
|
|
unset($module['enable']['#title']);
|
|
$row[] = array('class' => array('checkbox'), 'data' => drupal_render($module['enable']));
|
|
$label = '<label';
|
|
if (isset($module['enable']['#id'])) {
|
|
$label .= ' for="' . $module['enable']['#id'] . '"';
|
|
}
|
|
$row[] = $label . '><strong>' . drupal_render($module['name']) . '</strong></label>';
|
|
$row[] = drupal_render($module['version']);
|
|
// Add the description, along with any modules it requires.
|
|
$description = drupal_render($module['description']);
|
|
if ($module['#requires']) {
|
|
$description .= '<div class="admin-requirements">' . t('Requires: !module-list', array('!module-list' => implode(', ', $module['#requires']))) . '</div>';
|
|
}
|
|
if ($module['#required_by']) {
|
|
$description .= '<div class="admin-requirements">' . t('Required by: !module-list', array('!module-list' => implode(', ', $module['#required_by']))) . '</div>';
|
|
}
|
|
$row[] = array('data' => $description, 'class' => array('description'));
|
|
// Display links (such as help or permissions) in their own columns.
|
|
foreach (array('help', 'permissions', 'configure') as $key) {
|
|
$row[] = array('data' => drupal_render($module['links'][$key]), 'class' => array($key));
|
|
}
|
|
$rows[] = $row;
|
|
}
|
|
|
|
return theme('table', array('header' => $form['#header'], 'rows' => $rows));
|
|
}
|
|
|
|
/**
|
|
* Returns HTML for a message about incompatible modules.
|
|
*
|
|
* @param $variables
|
|
* An associative array containing:
|
|
* - message: The form array representing the currently disabled modules.
|
|
*
|
|
* @ingroup themeable
|
|
*/
|
|
function theme_system_modules_incompatible($variables) {
|
|
return '<div class="incompatible">' . $variables['message'] . '</div>';
|
|
}
|
|
|
|
/**
|
|
* Returns HTML for a table of currently disabled modules.
|
|
*
|
|
* @param $variables
|
|
* An associative array containing:
|
|
* - form: A render element representing the form.
|
|
*
|
|
* @ingroup themeable
|
|
*/
|
|
function theme_system_modules_uninstall($variables) {
|
|
$form = $variables['form'];
|
|
|
|
// No theming for the confirm form.
|
|
if (isset($form['confirm'])) {
|
|
return drupal_render($form);
|
|
}
|
|
|
|
// Table headers.
|
|
$header = array(t('Uninstall'),
|
|
t('Name'),
|
|
t('Description'),
|
|
);
|
|
|
|
// Display table.
|
|
$rows = array();
|
|
foreach (element_children($form['modules']) as $module) {
|
|
$rows[] = array(
|
|
array('data' => drupal_render($form['uninstall'][$module]), 'align' => 'center'),
|
|
'<strong><label for="' . $form['uninstall'][$module]['#id'] . '">' . drupal_render($form['modules'][$module]['name']) . '</label></strong>',
|
|
array('data' => drupal_render($form['modules'][$module]['description']), 'class' => array('description')),
|
|
);
|
|
}
|
|
|
|
$output = theme('table', array('header' => $header, 'rows' => $rows, 'empty' => t('No modules are available to uninstall.')));
|
|
$output .= drupal_render_children($form);
|
|
|
|
return $output;
|
|
}
|
|
|
|
/**
|
|
* Returns HTML for the Appearance page.
|
|
*
|
|
* @param $variables
|
|
* An associative array containing:
|
|
* - theme_groups: An associative array containing groups of themes.
|
|
*
|
|
* @ingroup themeable
|
|
*/
|
|
function theme_system_themes_page($variables) {
|
|
$theme_groups = $variables['theme_groups'];
|
|
|
|
$output = '<div id="system-themes-page">';
|
|
|
|
foreach ($variables['theme_group_titles'] as $state => $title) {
|
|
if (!count($theme_groups[$state])) {
|
|
// Skip this group of themes if no theme is there.
|
|
continue;
|
|
}
|
|
// Start new theme group.
|
|
$output .= '<div class="system-themes-list system-themes-list-'. $state .' clearfix"><h2>'. $title .'</h2>';
|
|
|
|
foreach($theme_groups[$state] as $theme) {
|
|
|
|
// Theme the screenshot.
|
|
$screenshot = $theme->screenshot ? theme('image', $theme->screenshot) : '<div class="no-screenshot">' . t('no screenshot') . '</div>';
|
|
|
|
// Localize the theme description.
|
|
$description = t($theme->info['description']);
|
|
|
|
// Style theme info
|
|
$notes = count($theme->notes) ? ' (' . join(', ', $theme->notes) . ')' : '';
|
|
$theme->classes[] = 'theme-selector';
|
|
$theme->classes[] = 'clearfix';
|
|
$output .= '<div class="'. join(' ', $theme->classes) .'">' . $screenshot . '<div class="theme-info"><h3>' . $theme->info['name'] . ' ' . (isset($theme->info['version']) ? $theme->info['version'] : '') . $notes . '</h3><div class="theme-description">' . $description . '</div>';
|
|
|
|
// Make sure to provide feedback on compatibility.
|
|
if (!empty($theme->incompatible_core)) {
|
|
$output .= '<div class="incompatible">' . t('This version is not compatible with Drupal !core_version and should be replaced.', array('!core_version' => DRUPAL_CORE_COMPATIBILITY)) . '</div>';
|
|
}
|
|
elseif (!empty($theme->incompatible_php)) {
|
|
if (substr_count($theme->info['php'], '.') < 2) {
|
|
$theme->info['php'] .= '.*';
|
|
}
|
|
$output .= '<div class="incompatible">' . t('This theme requires PHP version @php_required and is incompatible with PHP version !php_version.', array('@php_required' => $theme->info['php'], '!php_version' => phpversion())) . '</div>';
|
|
}
|
|
else {
|
|
$output .= theme('links', array('links' => $theme->operations, 'attributes' => array('class' => array('operations', 'clearfix'))));
|
|
}
|
|
$output .= '</div></div>';
|
|
}
|
|
$output .= '</div>';
|
|
}
|
|
$output .= '</div>';
|
|
|
|
return $output;
|
|
}
|
|
|
|
/**
|
|
* Menu callback; present a form for deleting a date format.
|
|
*/
|
|
function system_date_delete_format_form($form, &$form_state, $dfid) {
|
|
$form['dfid'] = array(
|
|
'#type' => 'value',
|
|
'#value' => $dfid,
|
|
);
|
|
$format = system_get_date_format($dfid);
|
|
|
|
$output = confirm_form($form,
|
|
t('Are you sure you want to remove the format %format?', array('%format' => format_date(REQUEST_TIME, 'custom', $format->format))),
|
|
'admin/config/regional/date-time/formats',
|
|
t('This action cannot be undone.'),
|
|
t('Remove'), t('Cancel'),
|
|
'confirm'
|
|
);
|
|
|
|
return $output;
|
|
}
|
|
|
|
/**
|
|
* Delete a configured date format.
|
|
*/
|
|
function system_date_delete_format_form_submit($form, &$form_state) {
|
|
if ($form_state['values']['confirm']) {
|
|
$format = system_get_date_format($form_state['values']['dfid']);
|
|
system_date_format_delete($form_state['values']['dfid']);
|
|
drupal_set_message(t('Removed date format %format.', array('%format' => format_date(REQUEST_TIME, 'custom', $format->format))));
|
|
$form_state['redirect'] = 'admin/config/regional/date-time/formats';
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Menu callback; present a form for deleting a date type.
|
|
*/
|
|
function system_delete_date_format_type_form($form, &$form_state, $format_type) {
|
|
$form['format_type'] = array(
|
|
'#type' => 'value',
|
|
'#value' => $format_type,
|
|
);
|
|
$type_info = system_get_date_types($format_type);
|
|
|
|
$output = confirm_form($form,
|
|
t('Are you sure you want to remove the date type %type?', array('%type' => $type_info['title'])),
|
|
'admin/config/regional/date-time',
|
|
t('This action cannot be undone.'),
|
|
t('Remove'), t('Cancel'),
|
|
'confirm'
|
|
);
|
|
|
|
return $output;
|
|
}
|
|
|
|
/**
|
|
* Delete a configured date type.
|
|
*/
|
|
function system_delete_date_format_type_form_submit($form, &$form_state) {
|
|
if ($form_state['values']['confirm']) {
|
|
$type_info = system_get_date_types($form_state['values']['format_type']);
|
|
system_date_format_type_delete($form_state['values']['format_type']);
|
|
drupal_set_message(t('Removed date type %type.', array('%type' => $type_info['title'])));
|
|
$form_state['redirect'] = 'admin/config/regional/date-time';
|
|
}
|
|
}
|
|
|
|
|
|
/**
|
|
* Displays the date format strings overview page.
|
|
*/
|
|
function system_date_time_formats() {
|
|
$header = array(t('Format'), array('data' => t('Operations'), 'colspan' => '2'));
|
|
$rows = array();
|
|
|
|
drupal_static_reset('system_get_date_formats');
|
|
$formats = system_get_date_formats('custom');
|
|
if (!empty($formats)) {
|
|
foreach ($formats as $format) {
|
|
$row = array();
|
|
$row[] = array('data' => format_date(REQUEST_TIME, 'custom', $format['format']));
|
|
$row[] = array('data' => l(t('edit'), 'admin/config/regional/date-time/formats/' . $format['dfid'] . '/edit'));
|
|
$row[] = array('data' => l(t('delete'), 'admin/config/regional/date-time/formats/' . $format['dfid'] . '/delete'));
|
|
$rows[] = $row;
|
|
}
|
|
}
|
|
|
|
$build['date_formats_table'] = array(
|
|
'#theme' => 'table',
|
|
'#header' => $header,
|
|
'#rows' => $rows,
|
|
'#empty' => t('No custom date formats available. <a href="@link">Add date format</a>.', array('@link' => url('admin/config/regional/date-time/formats/add'))),
|
|
);
|
|
|
|
return $build;
|
|
}
|
|
|
|
/**
|
|
* Allow users to add additional date formats.
|
|
*/
|
|
function system_configure_date_formats_form($form, &$form_state, $dfid = 0) {
|
|
$js_settings = array(
|
|
'type' => 'setting',
|
|
'data' => array(
|
|
'dateTime' => array(
|
|
'date-format' => array(
|
|
'text' => t('Displayed as'),
|
|
'lookup' => url('admin/config/regional/date-time/formats/lookup'),
|
|
),
|
|
),
|
|
),
|
|
);
|
|
|
|
if ($dfid) {
|
|
$form['dfid'] = array(
|
|
'#type' => 'value',
|
|
'#value' => $dfid,
|
|
);
|
|
$format = system_get_date_format($dfid);
|
|
}
|
|
|
|
$now = ($dfid ? t('Displayed as %date', array('%date' => format_date(REQUEST_TIME, 'custom', $format->format))) : '');
|
|
|
|
$form['date_format'] = array(
|
|
'#type' => 'textfield',
|
|
'#title' => t('Format string'),
|
|
'#description' => t('A user-defined date format. See the <a href="@url">PHP manual</a> for available options.', array('@url' => 'http://php.net/manual/function.date.php')),
|
|
'#default_value' => ($dfid ? $format->format : ''),
|
|
'#field_suffix' => ' <small id="edit-date-format-suffix">' . $now . '</small>',
|
|
'#attached' => array(
|
|
'js' => array(drupal_get_path('module', 'system') . '/system.js', $js_settings),
|
|
),
|
|
);
|
|
|
|
$form['actions'] = array('#type' => 'actions');
|
|
$form['actions']['update'] = array(
|
|
'#type' => 'submit',
|
|
'#value' => ($dfid ? t('Save format') : t('Add format')),
|
|
);
|
|
|
|
$form['#validate'][] = 'system_add_date_formats_form_validate';
|
|
$form['#submit'][] = 'system_add_date_formats_form_submit';
|
|
|
|
return $form;
|
|
}
|
|
|
|
/**
|
|
* Validate new date format string submission.
|
|
*/
|
|
function system_add_date_formats_form_validate($form, &$form_state) {
|
|
$formats = system_get_date_formats('custom');
|
|
$format = trim($form_state['values']['date_format']);
|
|
if (!empty($formats) && in_array($format, array_keys($formats)) && (!isset($form_state['values']['dfid']) || $form_state['values']['dfid'] != $formats[$format]['dfid'])) {
|
|
form_set_error('date_format', t('This format already exists. Enter a unique format string.'));
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Process new date format string submission.
|
|
*/
|
|
function system_add_date_formats_form_submit($form, &$form_state) {
|
|
$format = array();
|
|
$format['format'] = trim($form_state['values']['date_format']);
|
|
$format['type'] = 'custom';
|
|
$format['locked'] = 0;
|
|
if (!empty($form_state['values']['dfid'])) {
|
|
system_date_format_save($format, $form_state['values']['dfid']);
|
|
drupal_set_message(t('Custom date format updated.'));
|
|
}
|
|
else {
|
|
$format['is_new'] = 1;
|
|
system_date_format_save($format);
|
|
drupal_set_message(t('Custom date format added.'));
|
|
}
|
|
|
|
$form_state['redirect'] = 'admin/config/regional/date-time/formats';
|
|
}
|
|
|
|
/**
|
|
* Menu callback; Displays an overview of available and configured actions.
|
|
*/
|
|
function system_actions_manage() {
|
|
actions_synchronize();
|
|
$actions = actions_list();
|
|
$actions_map = actions_actions_map($actions);
|
|
$options = array(t('Choose an advanced action'));
|
|
$unconfigurable = array();
|
|
|
|
foreach ($actions_map as $key => $array) {
|
|
if ($array['configurable']) {
|
|
$options[$key] = $array['label'] . '...';
|
|
}
|
|
else {
|
|
$unconfigurable[] = $array;
|
|
}
|
|
}
|
|
|
|
$row = array();
|
|
$instances_present = db_query("SELECT aid FROM {actions} WHERE parameters <> ''")->fetchField();
|
|
$header = array(
|
|
array('data' => t('Action type'), 'field' => 'type'),
|
|
array('data' => t('Label'), 'field' => 'label'),
|
|
array('data' => $instances_present ? t('Operations') : '', 'colspan' => '2')
|
|
);
|
|
$query = db_select('actions')->extend('PagerDefault')->extend('TableSort');
|
|
$result = $query
|
|
->fields('actions')
|
|
->limit(50)
|
|
->orderByHeader($header)
|
|
->execute();
|
|
|
|
foreach ($result as $action) {
|
|
$row[] = array(
|
|
array('data' => $action->type),
|
|
array('data' => check_plain($action->label)),
|
|
array('data' => $action->parameters ? l(t('configure'), "admin/config/system/actions/configure/$action->aid") : ''),
|
|
array('data' => $action->parameters ? l(t('delete'), "admin/config/system/actions/delete/$action->aid") : '')
|
|
);
|
|
}
|
|
|
|
if ($row) {
|
|
$pager = theme('pager', array('tags' => NULL));
|
|
if (!empty($pager)) {
|
|
$row[] = array(array('data' => $pager, 'colspan' => '3'));
|
|
}
|
|
$build['system_actions_header'] = array('#markup' => '<h3>' . t('Available actions:') . '</h3>');
|
|
$build['system_actions_table'] = array('#markup' => theme('table', array('header' => $header, 'rows' => $row)));
|
|
}
|
|
|
|
if ($actions_map) {
|
|
$build['system_actions_manage_form'] = drupal_get_form('system_actions_manage_form', $options);
|
|
}
|
|
|
|
return $build;
|
|
}
|
|
|
|
/**
|
|
* Define the form for the actions overview page.
|
|
*
|
|
* @param $form_state
|
|
* An associative array containing the current state of the form; not used.
|
|
* @param $options
|
|
* An array of configurable actions.
|
|
* @return
|
|
* Form definition.
|
|
*
|
|
* @ingroup forms
|
|
* @see system_actions_manage_form_submit()
|
|
*/
|
|
function system_actions_manage_form($form, &$form_state, $options = array()) {
|
|
$form['parent'] = array(
|
|
'#type' => 'fieldset',
|
|
'#title' => t('Create an advanced action'),
|
|
'#attributes' => array('class' => array('container-inline')),
|
|
);
|
|
$form['parent']['action'] = array(
|
|
'#type' => 'select',
|
|
'#default_value' => '',
|
|
'#options' => $options,
|
|
'#description' => '',
|
|
);
|
|
$form['parent']['actions'] = array('#type' => 'actions');
|
|
$form['parent']['actions']['submit'] = array(
|
|
'#type' => 'submit',
|
|
'#value' => t('Create'),
|
|
);
|
|
return $form;
|
|
}
|
|
|
|
/**
|
|
* Process system_actions_manage form submissions.
|
|
*
|
|
* @see system_actions_manage_form()
|
|
*/
|
|
function system_actions_manage_form_submit($form, &$form_state) {
|
|
if ($form_state['values']['action']) {
|
|
$form_state['redirect'] = 'admin/config/system/actions/configure/' . $form_state['values']['action'];
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Menu callback; Creates the form for configuration of a single action.
|
|
*
|
|
* We provide the "Description" field. The rest of the form is provided by the
|
|
* action. We then provide the Save button. Because we are combining unknown
|
|
* form elements with the action configuration form, we use an 'actions_' prefix
|
|
* on our elements.
|
|
*
|
|
* @param $action
|
|
* Hash of an action ID or an integer. If it is a hash, we are
|
|
* creating a new instance. If it is an integer, we are editing an existing
|
|
* instance.
|
|
* @return
|
|
* A form definition.
|
|
*
|
|
* @see system_actions_configure_validate()
|
|
* @see system_actions_configure_submit()
|
|
*/
|
|
function system_actions_configure($form, &$form_state, $action = NULL) {
|
|
if ($action === NULL) {
|
|
drupal_goto('admin/config/system/actions');
|
|
}
|
|
|
|
$actions_map = actions_actions_map(actions_list());
|
|
$edit = array();
|
|
|
|
// Numeric action denotes saved instance of a configurable action.
|
|
if (is_numeric($action)) {
|
|
$aid = $action;
|
|
// Load stored parameter values from database.
|
|
$data = db_query("SELECT * FROM {actions} WHERE aid = :aid", array(':aid' => $aid))->fetch();
|
|
$edit['actions_label'] = $data->label;
|
|
$edit['actions_type'] = $data->type;
|
|
$function = $data->callback;
|
|
$action = drupal_hash_base64($data->callback);
|
|
$params = unserialize($data->parameters);
|
|
if ($params) {
|
|
foreach ($params as $name => $val) {
|
|
$edit[$name] = $val;
|
|
}
|
|
}
|
|
}
|
|
// Otherwise, we are creating a new action instance.
|
|
else {
|
|
$function = $actions_map[$action]['callback'];
|
|
$edit['actions_label'] = $actions_map[$action]['label'];
|
|
$edit['actions_type'] = $actions_map[$action]['type'];
|
|
}
|
|
|
|
$form['actions_label'] = array(
|
|
'#type' => 'textfield',
|
|
'#title' => t('Label'),
|
|
'#default_value' => $edit['actions_label'],
|
|
'#maxlength' => '255',
|
|
'#description' => t('A unique label for this advanced action. This label will be displayed in the interface of modules that integrate with actions, such as Trigger module.'),
|
|
'#weight' => -10
|
|
);
|
|
$action_form = $function . '_form';
|
|
$form = array_merge($form, $action_form($edit));
|
|
$form['actions_type'] = array(
|
|
'#type' => 'value',
|
|
'#value' => $edit['actions_type'],
|
|
);
|
|
$form['actions_action'] = array(
|
|
'#type' => 'hidden',
|
|
'#value' => $action,
|
|
);
|
|
// $aid is set when configuring an existing action instance.
|
|
if (isset($aid)) {
|
|
$form['actions_aid'] = array(
|
|
'#type' => 'hidden',
|
|
'#value' => $aid,
|
|
);
|
|
}
|
|
$form['actions_configured'] = array(
|
|
'#type' => 'hidden',
|
|
'#value' => '1',
|
|
);
|
|
$form['actions'] = array('#type' => 'actions');
|
|
$form['actions']['submit'] = array(
|
|
'#type' => 'submit',
|
|
'#value' => t('Save'),
|
|
'#weight' => 13
|
|
);
|
|
|
|
return $form;
|
|
}
|
|
|
|
/**
|
|
* Validate system_actions_configure() form submissions.
|
|
*/
|
|
function system_actions_configure_validate($form, &$form_state) {
|
|
$function = actions_function_lookup($form_state['values']['actions_action']) . '_validate';
|
|
// Hand off validation to the action.
|
|
if (function_exists($function)) {
|
|
$function($form, $form_state);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Process system_actions_configure() form submissions.
|
|
*/
|
|
function system_actions_configure_submit($form, &$form_state) {
|
|
$function = actions_function_lookup($form_state['values']['actions_action']);
|
|
$submit_function = $function . '_submit';
|
|
|
|
// Action will return keyed array of values to store.
|
|
$params = $submit_function($form, $form_state);
|
|
$aid = isset($form_state['values']['actions_aid']) ? $form_state['values']['actions_aid'] : NULL;
|
|
|
|
actions_save($function, $form_state['values']['actions_type'], $params, $form_state['values']['actions_label'], $aid);
|
|
drupal_set_message(t('The action has been successfully saved.'));
|
|
|
|
$form_state['redirect'] = 'admin/config/system/actions/manage';
|
|
}
|
|
|
|
/**
|
|
* Create the form for confirmation of deleting an action.
|
|
*
|
|
* @see system_actions_delete_form_submit()
|
|
* @ingroup forms
|
|
*/
|
|
function system_actions_delete_form($form, &$form_state, $action) {
|
|
$form['aid'] = array(
|
|
'#type' => 'hidden',
|
|
'#value' => $action->aid,
|
|
);
|
|
return confirm_form($form,
|
|
t('Are you sure you want to delete the action %action?', array('%action' => $action->label)),
|
|
'admin/config/system/actions/manage',
|
|
t('This cannot be undone.'),
|
|
t('Delete'),
|
|
t('Cancel')
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Process system_actions_delete form submissions.
|
|
*
|
|
* Post-deletion operations for action deletion.
|
|
*/
|
|
function system_actions_delete_form_submit($form, &$form_state) {
|
|
$aid = $form_state['values']['aid'];
|
|
$action = actions_load($aid);
|
|
actions_delete($aid);
|
|
$label = check_plain($action->label);
|
|
watchdog('user', 'Deleted action %aid (%action)', array('%aid' => $aid, '%action' => $label));
|
|
drupal_set_message(t('Action %action was deleted', array('%action' => $label)));
|
|
$form_state['redirect'] = 'admin/config/system/actions/manage';
|
|
}
|
|
|
|
/**
|
|
* Post-deletion operations for deleting action orphans.
|
|
*
|
|
* @param $orphaned
|
|
* An array of orphaned actions.
|
|
*/
|
|
function system_action_delete_orphans_post($orphaned) {
|
|
foreach ($orphaned as $callback) {
|
|
drupal_set_message(t("Deleted orphaned action (%action).", array('%action' => $callback)));
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Remove actions that are in the database but not supported by any enabled module.
|
|
*/
|
|
function system_actions_remove_orphans() {
|
|
actions_synchronize(TRUE);
|
|
drupal_goto('admin/config/system/actions/manage');
|
|
}
|