summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAngie Byron <webchick@24967.no-reply.drupal.org>2009-09-01 16:50:12 +0000
committerAngie Byron <webchick@24967.no-reply.drupal.org>2009-09-01 16:50:12 +0000
commitff813ab62ca142f5c892846e56eb9044ffedd822 (patch)
tree6b0c5f22d7729fb579170ad3301aec31d99991d2
parent39d2e4af43d7d682391796a2cbfedfb0e956dbdc (diff)
downloadbrdo-ff813ab62ca142f5c892846e56eb9044ffedd822.tar.gz
brdo-ff813ab62ca142f5c892846e56eb9044ffedd822.tar.bz2
#564562 by Gábor Hojtsy, Bojhan, yoroy, and catch: Added 'System' configuration section.
-rw-r--r--includes/actions.inc2
-rw-r--r--modules/node/node.module2
-rw-r--r--modules/simpletest/tests/actions.test12
-rw-r--r--modules/system/system.module50
-rw-r--r--modules/system/system.test12
-rw-r--r--modules/trigger/trigger.admin.inc2
-rw-r--r--modules/trigger/trigger.module4
-rw-r--r--modules/trigger/trigger.test4
8 files changed, 48 insertions, 40 deletions
diff --git a/includes/actions.inc b/includes/actions.inc
index 638dbb1fd..5650bc64f 100644
--- a/includes/actions.inc
+++ b/includes/actions.inc
@@ -292,7 +292,7 @@ function actions_synchronize($delete_orphans = FALSE) {
}
}
else {
- $link = l(t('Remove orphaned actions'), 'admin/settings/actions/orphan');
+ $link = l(t('Remove orphaned actions'), 'admin/config/system/actions/orphan');
$count = count($actions_in_db);
$orphans = implode(', ', $orphaned);
watchdog('actions', format_plural($count, 'One orphaned action (%orphans) exists in the actions table. !link', '@count orphaned actions (%orphans) exist in the actions table. !link'), array('@count' => $count, '%orphans' => $orphans, '!link' => $link), WATCHDOG_WARNING);
diff --git a/modules/node/node.module b/modules/node/node.module
index 8c35dc9d8..afc295b6b 100644
--- a/modules/node/node.module
+++ b/modules/node/node.module
@@ -1905,7 +1905,7 @@ function node_page_default() {
$default_links[] = l(t('Create content'), 'node/add');
}
if (user_access('administer site configuration')) {
- $default_links[] = l(t('Change the default front page'), 'admin/settings/site-information');
+ $default_links[] = l(t('Change the default front page'), 'admin/config/system/site-information');
}
if (!empty($default_links)) {
$default_message .= theme('item_list', $default_links);
diff --git a/modules/simpletest/tests/actions.test b/modules/simpletest/tests/actions.test
index 5d1c52d56..14e0dbf93 100644
--- a/modules/simpletest/tests/actions.test
+++ b/modules/simpletest/tests/actions.test
@@ -19,17 +19,17 @@ class ActionsConfigurationTestCase extends DrupalWebTestCase {
$user = $this->drupalCreateUser(array('administer actions'));
$this->drupalLogin($user);
- // Make a POST request to admin/settings/actions/manage.
+ // Make a POST request to admin/config/system/actions/manage.
$edit = array();
$edit['action'] = md5('system_goto_action');
- $this->drupalPost('admin/settings/actions/manage', $edit, t('Create'));
+ $this->drupalPost('admin/config/system/actions/manage', $edit, t('Create'));
// Make a POST request to the individual action configuration page.
$edit = array();
$action_description = $this->randomName();
$edit['actions_description'] = $action_description;
$edit['url'] = 'admin';
- $this->drupalPost('admin/settings/actions/configure/' . md5('system_goto_action'), $edit, t('Save'));
+ $this->drupalPost('admin/config/system/actions/configure/' . md5('system_goto_action'), $edit, t('Save'));
// Make sure that the new complex action was saved properly.
$this->assertText(t('The action has been successfully saved.'), t("Make sure we get a confirmation that we've successfully saved the complex action."));
@@ -41,7 +41,7 @@ class ActionsConfigurationTestCase extends DrupalWebTestCase {
$new_action_description = $this->randomName();
$edit['actions_description'] = $new_action_description;
$edit['url'] = 'admin';
- $this->drupalPost('admin/settings/actions/configure/1', $edit, t('Save'));
+ $this->drupalPost('admin/config/system/actions/configure/1', $edit, t('Save'));
// Make sure that the action updated properly.
$this->assertText(t('The action has been successfully saved.'), t("Make sure we get a confirmation that we've successfully updated the complex action."));
@@ -51,11 +51,11 @@ class ActionsConfigurationTestCase extends DrupalWebTestCase {
// Make sure that deletions work properly.
$this->clickLink(t('delete'));
$edit = array();
- $this->drupalPost('admin/settings/actions/delete/1', $edit, t('Delete'));
+ $this->drupalPost('admin/config/system/actions/delete/1', $edit, t('Delete'));
// Make sure that the action was actually deleted.
$this->assertRaw(t('Action %action was deleted', array('%action' => $new_action_description)), t('Make sure that we get a delete confirmation message.'));
- $this->drupalGet('admin/settings/actions/manage');
+ $this->drupalGet('admin/config/system/actions/manage');
$this->assertNoText($new_action_description, t("Make sure the action description does not appear on the overview page after we've deleted the action."));
$exists = db_query('SELECT aid FROM {actions} WHERE callback = :callback', array(':callback' => 'drupal_goto_action'))->fetchField();
$this->assertFalse($exists, t('Make sure the action is gone from the database after being deleted.'));
diff --git a/modules/system/system.module b/modules/system/system.module
index c7ca46cc3..70026bcdd 100644
--- a/modules/system/system.module
+++ b/modules/system/system.module
@@ -101,7 +101,7 @@ function system_help($path, $arg) {
$output .= '<li>' . t('support for enabling and disabling <a href="@themes">themes</a>, which determine the design and presentation of your site. Drupal comes packaged with several core themes and additional contributed themes are available at the <a href="@drupal-themes">Drupal.org theme page</a>.', array('@themes' => url('admin/appearance'), '@drupal-themes' => 'http://drupal.org/project/themes')) . '</li>';
$output .= '<li>' . t('a robust <a href="@cache-settings">caching system</a> that allows the efficient re-use of previously-constructed web pages and web page components. Drupal stores the pages requested by anonymous users in a compressed format; depending on your site configuration and the amount of your web traffic tied to anonymous visitors, Drupal\'s caching system may significantly increase the speed of your site.', array('@cache-settings' => url('admin/config/development/performance'))) . '</li>';
$output .= '<li>' . t('a set of routine administrative operations that rely on a correctly-configured <a href="@cron">cron maintenance task</a> to run automatically. A number of other modules, including the feed aggregator, and search also rely on <a href="@cron">cron maintenance tasks</a>. For more information, see the online handbook entry for <a href="@handbook">configuring cron jobs</a>.', array('@cron' => url('admin/reports/status'), '@handbook' => 'http://drupal.org/cron')) . '</li>';
- $output .= '<li>' . t('basic configuration options for your site, including <a href="@regional-settings">date and time settings</a>, <a href="@file-system">file system settings</a>, <a href="@clean-url">clean URL support</a>, <a href="@site-info">site name and other information</a>, and a <a href="@maintenance-mode">maintenance mode</a> for taking your site temporarily offline.', array('@regional-settings' => url('admin/config/regional/settings'), '@file-system' => url('admin/config/media/file-system'), '@clean-url' => url('admin/config/search/clean-urls'), '@site-info' => url('admin/settings/site-information'), '@maintenance-mode' => url('admin/config/development/maintenance'))) . '</li></ul>';
+ $output .= '<li>' . t('basic configuration options for your site, including <a href="@regional-settings">date and time settings</a>, <a href="@file-system">file system settings</a>, <a href="@clean-url">clean URL support</a>, <a href="@site-info">site name and other information</a>, and a <a href="@maintenance-mode">maintenance mode</a> for taking your site temporarily offline.', array('@regional-settings' => url('admin/config/regional/settings'), '@file-system' => url('admin/config/media/file-system'), '@clean-url' => url('admin/config/search/clean-urls'), '@site-info' => url('admin/config/system/site-information'), '@maintenance-mode' => url('admin/config/development/maintenance'))) . '</li></ul>';
$output .= '<p>' . t('For more information, see the online handbook entry for <a href="@system">System module</a>.', array('@system' => 'http://drupal.org/handbook/modules/system/')) . '</p>';
return $output;
case 'admin/by-module':
@@ -133,15 +133,15 @@ function system_help($path, $arg) {
if ($user->uid == 1) {
return '<p>' . t('If you are upgrading to a newer version of Drupal or upgrading contributed modules or themes you may need to run !update-php.', array('!update-php' => l('update.php', 'update.php'))) . '</p>';
}
- case 'admin/settings/actions':
- case 'admin/settings/actions/manage':
+ case 'admin/config/system/actions':
+ case 'admin/config/system/actions/manage':
$output = '<p>' . t('Actions are individual tasks that the system can do, such as unpublishing a piece of content or banning a user. Modules, such as the trigger module, can fire these actions when certain system events happen; for example, when a new post is added or when a user logs in. Modules may also provide additional actions.') . '</p>';
$output .= '<p>' . t('There are two types of actions: simple and advanced. Simple actions do not require any additional configuration, and are listed here automatically. Advanced actions can do more than simple actions; for example, send an e-mail to a specified address, or check for certain words within a piece of content. These actions need to be created and configured first before they may be used. To create an advanced action, select the action from the drop-down below and click the <em>Create</em> button.') . '</p>';
if (module_exists('trigger')) {
$output .= '<p>' . t('You may proceed to the <a href="@url">Triggers</a> page to assign these actions to system events.', array('@url' => url('admin/structure/trigger'))) . '</p>';
}
return $output;
- case 'admin/settings/actions/configure':
+ case 'admin/config/system/actions/configure':
return t('An advanced action offers additional configuration options which may be filled out below. Changing the <em>Description</em> field is recommended, in order to better identify the precise action taking place. This description will be displayed in modules such as the trigger module when assigning actions to system events, so it is best if it is as descriptive as possible (for example, "Send e-mail to Moderation Team" rather than simply "Send e-mail").');
case 'admin/config/people/ip-blocking':
return '<p>' . t('IP addresses listed here are blocked from your site before any modules are loaded. You may add IP addresses to the list, or delete existing entries.') . '</p>';
@@ -670,14 +670,14 @@ function system_menu() {
);
// Actions.
- $items['admin/settings/actions'] = array(
+ $items['admin/config/system/actions'] = array(
'title' => 'Actions',
'description' => 'Manage the actions defined for your site.',
'access arguments' => array('administer actions'),
'page callback' => 'system_actions_manage',
'file' => 'system.admin.inc',
);
- $items['admin/settings/actions/manage'] = array(
+ $items['admin/config/system/actions/manage'] = array(
'title' => 'Manage actions',
'description' => 'Manage the actions defined for your site.',
'page callback' => 'system_actions_manage',
@@ -685,7 +685,7 @@ function system_menu() {
'weight' => -2,
'file' => 'system.admin.inc',
);
- $items['admin/settings/actions/configure'] = array(
+ $items['admin/config/system/actions/configure'] = array(
'title' => 'Configure an advanced action',
'page callback' => 'drupal_get_form',
'page arguments' => array('system_actions_configure'),
@@ -693,16 +693,16 @@ function system_menu() {
'type' => MENU_CALLBACK,
'file' => 'system.admin.inc',
);
- $items['admin/settings/actions/delete/%actions'] = array(
+ $items['admin/config/system/actions/delete/%actions'] = array(
'title' => 'Delete action',
'description' => 'Delete an action.',
'page callback' => 'drupal_get_form',
- 'page arguments' => array('system_actions_delete_form', 4),
+ 'page arguments' => array('system_actions_delete_form', 5),
'access arguments' => array('administer actions'),
'type' => MENU_CALLBACK,
'file' => 'system.admin.inc',
);
- $items['admin/settings/actions/orphan'] = array(
+ $items['admin/config/system/actions/orphan'] = array(
'title' => 'Remove orphans',
'page callback' => 'system_actions_remove_orphans',
'access arguments' => array('administer actions'),
@@ -866,15 +866,23 @@ function system_menu() {
'access arguments' => array('access administration pages'),
'file' => 'system.admin.inc',
);
-
- // Settings.
- $items['admin/settings/site-information'] = array(
+ $items['admin/config/system'] = array(
+ 'title' => 'System',
+ 'description' => 'General system related configuration.',
+ 'position' => 'right',
+ 'weight' => -5,
+ 'page callback' => 'system_admin_menu_block_page',
+ 'access arguments' => array('access administration pages'),
+ 'file' => 'system.admin.inc',
+ );
+ $items['admin/config/system/site-information'] = array(
'title' => 'Site information',
'description' => 'Change basic site information, such as the site name, slogan, e-mail address, mission, front page and more.',
'page callback' => 'drupal_get_form',
'page arguments' => array('system_site_information_settings'),
'access arguments' => array('administer site configuration'),
'file' => 'system.admin.inc',
+ 'weight' => -10,
);
// Reports.
@@ -2530,8 +2538,8 @@ function system_actions_manage() {
$row[] = array(
array('data' => $action->type),
array('data' => $action->description),
- array('data' => $action->parameters ? l(t('configure'), "admin/settings/actions/configure/$action->aid") : ''),
- array('data' => $action->parameters ? l(t('delete'), "admin/settings/actions/delete/$action->aid") : '')
+ 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") : '')
);
}
@@ -2588,7 +2596,7 @@ function system_actions_manage_form($form_state, $options = array()) {
*/
function system_actions_manage_form_submit($form, &$form_state) {
if ($form_state['values']['action']) {
- $form_state['redirect'] = 'admin/settings/actions/configure/' . $form_state['values']['action'];
+ $form_state['redirect'] = 'admin/config/system/actions/configure/' . $form_state['values']['action'];
}
}
@@ -2611,7 +2619,7 @@ function system_actions_manage_form_submit($form, &$form_state) {
*/
function system_actions_configure($form_state, $action = NULL) {
if ($action === NULL) {
- drupal_goto('admin/settings/actions');
+ drupal_goto('admin/config/system/actions');
}
$actions_map = actions_actions_map(actions_list());
@@ -2703,7 +2711,7 @@ function system_actions_configure_submit($form, &$form_state) {
actions_save($function, $form_state['values']['actions_type'], $params, $form_state['values']['actions_description'], $aid);
drupal_set_message(t('The action has been successfully saved.'));
- $form_state['redirect'] = 'admin/settings/actions/manage';
+ $form_state['redirect'] = 'admin/config/system/actions/manage';
}
/**
@@ -2720,7 +2728,7 @@ function system_actions_delete_form($form_state, $action) {
);
return confirm_form($form,
t('Are you sure you want to delete the action %action?', array('%action' => $action->description)),
- 'admin/settings/actions/manage',
+ 'admin/config/system/actions/manage',
t('This cannot be undone.'),
t('Delete'), t('Cancel')
);
@@ -2738,7 +2746,7 @@ function system_actions_delete_form_submit($form, &$form_state) {
$description = check_plain($action->description);
watchdog('user', 'Deleted action %aid (%action)', array('%aid' => $aid, '%action' => $description));
drupal_set_message(t('Action %action was deleted', array('%action' => $description)));
- $form_state['redirect'] = 'admin/settings/actions/manage';
+ $form_state['redirect'] = 'admin/config/system/actions/manage';
}
/**
@@ -2758,7 +2766,7 @@ function system_action_delete_orphans_post($orphaned) {
*/
function system_actions_remove_orphans() {
actions_synchronize(TRUE);
- drupal_goto('admin/settings/actions/manage');
+ drupal_goto('admin/config/system/actions/manage');
}
/**
diff --git a/modules/system/system.test b/modules/system/system.test
index ae77dc0dd..58d60b253 100644
--- a/modules/system/system.test
+++ b/modules/system/system.test
@@ -545,7 +545,7 @@ class AccessDeniedTestCase extends DrupalWebTestCase {
$node = $this->drupalCreateNode($edit);
// Use a custom 403 page.
- $this->drupalPost('admin/settings/site-information', array('site_403' => 'node/' . $node->nid), t('Save configuration'));
+ $this->drupalPost('admin/config/system/site-information', array('site_403' => 'node/' . $node->nid), t('Save configuration'));
$this->drupalGet('admin');
$this->assertText($node->title, t('Found the custom 403 page'));
@@ -559,7 +559,7 @@ class AccessDeniedTestCase extends DrupalWebTestCase {
// Log back in and remove the custom 403 page.
$this->drupalLogin($this->admin_user);
- $this->drupalPost('admin/settings/site-information', array('site_403' => ''), t('Save configuration'));
+ $this->drupalPost('admin/config/system/site-information', array('site_403' => ''), t('Save configuration'));
// Logout and check that the user login block is shown on default 403 pages.
$this->drupalLogout();
@@ -579,7 +579,7 @@ class AccessDeniedTestCase extends DrupalWebTestCase {
'name' => $this->admin_user->name,
'pass' => $this->admin_user->pass_raw,
);
- $this->drupalPost('admin/settings/site-information', $edit, t('Log in'));
+ $this->drupalPost('admin/config/system/site-information', $edit, t('Log in'));
// Check that we're still on the same page.
$this->assertText(t('Site information'));
@@ -622,7 +622,7 @@ class PageNotFoundTestCase extends DrupalWebTestCase {
$node = $this->drupalCreateNode($edit);
// Use a custom 404 page.
- $this->drupalPost('admin/settings/site-information', array('site_404' => 'node/' . $node->nid), t('Save configuration'));
+ $this->drupalPost('admin/config/system/site-information', array('site_404' => 'node/' . $node->nid), t('Save configuration'));
$this->drupalGet($this->randomName(10));
$this->assertText($node->title, t('Found the custom 404 page'));
@@ -862,12 +862,12 @@ class FrontPageTestCase extends DrupalWebTestCase {
// Change the front page to an invalid path.
$edit = array('site_frontpage' => 'kittens');
- $this->drupalPost('admin/settings/site-information', $edit, t('Save configuration'));
+ $this->drupalPost('admin/config/system/site-information', $edit, t('Save configuration'));
$this->assertText(t("The path '@path' is either invalid or you do not have access to it.", array('@path' => $edit['site_frontpage'])));
// Change the front page to a valid path.
$edit['site_frontpage'] = $this->node_path;
- $this->drupalPost('admin/settings/site-information', $edit, t('Save configuration'));
+ $this->drupalPost('admin/config/system/site-information', $edit, t('Save configuration'));
$this->assertText(t('The configuration options have been saved.'), t('The front page path has been saved.'));
$this->drupalGet('');
diff --git a/modules/trigger/trigger.admin.inc b/modules/trigger/trigger.admin.inc
index 51d004036..2ab8cf764 100644
--- a/modules/trigger/trigger.admin.inc
+++ b/modules/trigger/trigger.admin.inc
@@ -176,7 +176,7 @@ function trigger_assign_form($form_state, $hook, $op, $description) {
}
else {
$form[$op]['none'] = array(
- '#markup' => t('No actions available for this trigger. <a href="@link">Add action</a>.', array('@link' => url('admin/settings/actions/manage')))
+ '#markup' => t('No actions available for this trigger. <a href="@link">Add action</a>.', array('@link' => url('admin/config/system/actions/manage')))
);
}
return $form;
diff --git a/modules/trigger/trigger.module b/modules/trigger/trigger.module
index c085741a0..281400fe5 100644
--- a/modules/trigger/trigger.module
+++ b/modules/trigger/trigger.module
@@ -11,7 +11,7 @@
* Implement hook_help().
*/
function trigger_help($path, $arg) {
- $explanation = '<p>' . t('Triggers are system events, such as when new content is added or when a user logs in. Trigger module combines these triggers with actions (functional tasks), such as unpublishing content or e-mailing an administrator. The <a href="@url">Actions settings page</a> contains a list of existing actions and provides the ability to create and configure additional actions.', array('@url' => url('admin/settings/actions'))) . '</p>';
+ $explanation = '<p>' . t('Triggers are system events, such as when new content is added or when a user logs in. Trigger module combines these triggers with actions (functional tasks), such as unpublishing content or e-mailing an administrator. The <a href="@url">Actions settings page</a> contains a list of existing actions and provides the ability to create and configure additional actions.', array('@url' => url('admin/config/system/actions'))) . '</p>';
switch ($path) {
case 'admin/structure/trigger/comment':
return $explanation . '<p>' . t('Below you can assign actions to run when certain comment-related triggers happen. For example, you could promote a post to the front page when a comment is added.') . '</p>';
@@ -24,7 +24,7 @@ function trigger_help($path, $arg) {
case 'admin/structure/trigger/user':
return $explanation . '<p>' . t("Below you can assign actions to run when certain user-related triggers happen. For example, you could send an e-mail to an administrator when a user account is deleted.") . '</p>';
case 'admin/help#trigger':
- $output = '<p>' . t('The Trigger module provides the ability to trigger <a href="@actions">actions</a> upon system events, such as when new content is added or when a user logs in.', array('@actions' => url('admin/settings/actions'))) . '</p>';
+ $output = '<p>' . t('The Trigger module provides the ability to trigger <a href="@actions">actions</a> upon system events, such as when new content is added or when a user logs in.', array('@actions' => url('admin/config/system/actions'))) . '</p>';
$output .= '<p>' . t('The combination of actions and triggers can perform many useful tasks, such as e-mailing an administrator if a user account is deleted, or automatically unpublishing comments that contain certain words. By default, there are five "contexts" of events (Comments, Content, Cron, Taxonomy, and Users), but more may be added by additional modules.') . '</p>';
$output .= '<p>' . t('For more information, see the online handbook entry for <a href="@trigger">Trigger module</a>.', array('@trigger' => 'http://drupal.org/handbook/modules/trigger/')) . '</p>';
return $output;
diff --git a/modules/trigger/trigger.test b/modules/trigger/trigger.test
index ac6bf8b79..884982f83 100644
--- a/modules/trigger/trigger.test
+++ b/modules/trigger/trigger.test
@@ -150,7 +150,7 @@ class TriggerCronTestCase extends DrupalWebTestCase {
'actions_description' => $action_description,
'subject' => $action_description,
);
- $this->drupalPost('admin/settings/actions/configure/' . $hash, $edit, t('Save'));
+ $this->drupalPost('admin/config/system/actions/configure/' . $hash, $edit, t('Save'));
$edit = array('aid' => md5('1'));
$this->drupalPost('admin/structure/trigger/cron', $edit, t('Assign'));
@@ -160,7 +160,7 @@ class TriggerCronTestCase extends DrupalWebTestCase {
'actions_description' => $action_description,
'subject' => $action_description,
);
- $this->drupalPost('admin/settings/actions/configure/' . $hash, $edit, t('Save'));
+ $this->drupalPost('admin/config/system/actions/configure/' . $hash, $edit, t('Save'));
$edit = array('aid' => md5('2'));
$this->drupalPost('admin/structure/trigger/cron', $edit, t('Assign'));