diff options
-rw-r--r-- | includes/path.inc | 2 | ||||
-rw-r--r-- | modules/comment/comment.module | 2 | ||||
-rw-r--r-- | modules/locale/locale.install | 2 | ||||
-rw-r--r-- | modules/node/content_types.inc | 8 | ||||
-rw-r--r-- | modules/node/node.module | 12 | ||||
-rw-r--r-- | modules/system/system.admin.inc | 2 | ||||
-rw-r--r-- | modules/translation/translation.module | 2 |
7 files changed, 15 insertions, 15 deletions
diff --git a/includes/path.inc b/includes/path.inc index 380ff31f8..df20c0eb1 100644 --- a/includes/path.inc +++ b/includes/path.inc @@ -135,7 +135,7 @@ function drupal_get_normal_path($path, $path_language = '') { /** * Return a component of the current Drupal path. * - * When viewing a page at the path "admin/content/types", for example, arg(0) + * When viewing a page at the path "admin/build/types", for example, arg(0) * would return "admin", arg(1) would return "content", and arg(2) would return * "types". * diff --git a/modules/comment/comment.module b/modules/comment/comment.module index 4efb3775f..c72dd2b8e 100644 --- a/modules/comment/comment.module +++ b/modules/comment/comment.module @@ -126,7 +126,7 @@ define('COMMENT_PREVIEW_REQUIRED', 1); function comment_help($path, $arg) { switch ($path) { case 'admin/help#comment': - $output = '<p>'. t('The comment module allows visitors to comment on your posts, creating ad hoc discussion boards. Any <a href="@content-type">content type</a> may have its <em>Default comment setting</em> set to <em>Read/Write</em> to allow comments, or <em>Disabled</em>, to prevent comments. Comment display settings and other controls may also be customized for each content type (some display settings are customizable by individual users).', array('@content-type' => url('admin/content/types'))) .'</p>'; + $output = '<p>'. t('The comment module allows visitors to comment on your posts, creating ad hoc discussion boards. Any <a href="@content-type">content type</a> may have its <em>Default comment setting</em> set to <em>Read/Write</em> to allow comments, or <em>Disabled</em>, to prevent comments. Comment display settings and other controls may also be customized for each content type (some display settings are customizable by individual users).', array('@content-type' => url('admin/build/types'))) .'</p>'; $output .= '<p>'. t('Comment permissions are assigned to user roles, and are used to determine whether anonymous users (or other roles) are allowed to comment on posts. If anonymous users are allowed to comment, their individual contact information may be retained in cookies stored on their local computer for use in later comment submissions. When a comment has no replies, it may be (optionally) edited by its author. The comment module uses the same input formats and HTML tags available when creating other forms of content.') .'</p>'; $output .= '<p>'. t('For more information, see the online handbook entry for <a href="@comment">Comment module</a>.', array('@comment' => 'http://drupal.org/handbook/modules/comment/')) .'</p>'; return $output; diff --git a/modules/locale/locale.install b/modules/locale/locale.install index cd4f8e92d..278fc3388 100644 --- a/modules/locale/locale.install +++ b/modules/locale/locale.install @@ -186,7 +186,7 @@ function locale_update_6005() { // The language_negotiation setting is not reset, but // the user is alerted that this setting possibly was overwritten variable_set('language_content_type_negotiation', $setting); - drupal_set_message('The language negotiation setting was possibly overwritten by a content type of the same name. Check the '. l('language configuration page', 'admin/settings/language/configure') .' and the '. l('<em>'. $content_type->name ."</em> content type's multilingual support settings", 'admin/content/types/negotiation', array('html' => TRUE)) .' to configure them correctly.'); + drupal_set_message('The language negotiation setting was possibly overwritten by a content type of the same name. Check the '. l('language configuration page', 'admin/settings/language/configure') .' and the '. l('<em>'. $content_type->name ."</em> content type's multilingual support settings", 'admin/build/types/negotiation', array('html' => TRUE)) .' to configure them correctly.'); } elseif (!is_null($setting)) { // Change the language setting variable for any other content type. diff --git a/modules/node/content_types.inc b/modules/node/content_types.inc index f959d1f8d..a436336c4 100644 --- a/modules/node/content_types.inc +++ b/modules/node/content_types.inc @@ -332,10 +332,10 @@ function node_type_form_submit($form, &$form_state) { } elseif ($status == SAVED_NEW) { drupal_set_message(t('The content type %name has been added.', $t_args)); - watchdog('node', 'Added content type %name.', $t_args, WATCHDOG_NOTICE, l(t('view'), 'admin/content/types')); + watchdog('node', 'Added content type %name.', $t_args, WATCHDOG_NOTICE, l(t('view'), 'admin/build/types')); } - $form_state['redirect'] = 'admin/content/types'; + $form_state['redirect'] = 'admin/build/types'; return; } @@ -390,7 +390,7 @@ function node_type_delete_confirm(&$form_state, $type) { $caption .= '<p>'. t('This action cannot be undone.') .'</p>'; - return confirm_form($form, $message, 'admin/content/types', $caption, t('Delete')); + return confirm_form($form, $message, 'admin/build/types', $caption, t('Delete')); } /** @@ -406,6 +406,6 @@ function node_type_delete_confirm_submit($form, &$form_state) { node_types_rebuild(); menu_rebuild(); - $form_state['redirect'] = 'admin/content/types'; + $form_state['redirect'] = 'admin/build/types'; return; } diff --git a/modules/node/node.module b/modules/node/node.module index 6fbdd44cb..7957e1099 100644 --- a/modules/node/node.module +++ b/modules/node/node.module @@ -37,15 +37,15 @@ function node_help($path, $arg) { switch ($path) { case 'admin/help#node': $output = '<p>'. t('The node module manages content on your site, and stores all posts (regardless of type) as a "node". In addition to basic publishing settings, including whether the post has been published, promoted to the site front page, or should remain present (or sticky) at the top of lists, the node module also records basic information about the author of a post. Optional revision control over edits is available. For additional functionality, the node module is often extended by other modules.') .'</p>'; - $output .= '<p>'. t('Though each post on your site is a node, each post is also of a particular <a href="@content-type">content type</a>. <a href="@content-type">Content types</a> are used to define the characteristics of a post, including the title and description of the fields displayed on its add and edit pages. Each content type may have different default settings for <em>Publishing options</em> and other workflow controls. By default, the two content types in a standard Drupal installation are <em>Page</em> and <em>Article</em>. Use the <a href="@content-type">content types page</a> to add new or edit existing content types. Additional content types also become available as you enable additional core, contributed and custom modules.', array('@content-type' => url('admin/content/types'))) .'</p>'; + $output .= '<p>'. t('Though each post on your site is a node, each post is also of a particular <a href="@content-type">content type</a>. <a href="@content-type">Content types</a> are used to define the characteristics of a post, including the title and description of the fields displayed on its add and edit pages. Each content type may have different default settings for <em>Publishing options</em> and other workflow controls. By default, the two content types in a standard Drupal installation are <em>Page</em> and <em>Story</em>. Use the <a href="@content-type">content types page</a> to add new or edit existing content types. Additional content types also become available as you enable additional core, contributed and custom modules.', array('@content-type' => url('admin/build/types'))) .'</p>'; $output .= '<p>'. t('The administrative <a href="@content">content page</a> allows you to review and manage your site content. The <a href="@post-settings">post settings page</a> sets certain options for the display of posts. The node module makes a number of permissions available for each content type, which may be set by role on the <a href="@permissions">permissions page</a>.', array('@content' => url('admin/content/node'), '@post-settings' => url('admin/content/node-settings'), '@permissions' => url('admin/user/permissions'))) .'</p>'; $output .= '<p>'. t('For more information, see the online handbook entry for <a href="@node">Node module</a>.', array('@node' => 'http://drupal.org/handbook/modules/node/')) .'</p>'; return $output; case 'admin/content/node': return ' '; // Return a non-null value so that the 'more help' link is shown. - case 'admin/content/types': + case 'admin/build/types': return '<p>'. t('Below is a list of all the content types on your site. All posts that exist on your site are instances of one of these content types.') .'</p>'; - case 'admin/content/types/add': + case 'admin/build/types/add': return '<p>'. t('To create a new content type, enter the human-readable name, the machine-readable name, and all other relevant fields that are on this page. Once created, users of your site will be able to create posts that are instances of this content type.') .'</p>'; case 'node/%/revisions': return '<p>'. t('The revisions let you track differences between multiple versions of a post.') .'</p>'; @@ -1433,19 +1433,19 @@ function node_menu() { 'type' => MENU_CALLBACK, ); - $items['admin/content/types'] = array( + $items['admin/build/types'] = array( 'title' => 'Content types', 'description' => 'Manage posts by content type, including default status, front page promotion, etc.', 'page callback' => 'node_overview_types', 'access arguments' => array('administer content types'), 'file' => 'content_types.inc', ); - $items['admin/content/types/list'] = array( + $items['admin/build/types/list'] = array( 'title' => 'List', 'type' => MENU_DEFAULT_LOCAL_TASK, 'weight' => -10, ); - $items['admin/content/types/add'] = array( + $items['admin/build/types/add'] = array( 'title' => 'Add content type', 'page callback' => 'drupal_get_form', 'page arguments' => array('node_type_form'), diff --git a/modules/system/system.admin.inc b/modules/system/system.admin.inc index cd9cf3cab..76c52c656 100644 --- a/modules/system/system.admin.inc +++ b/modules/system/system.admin.inc @@ -63,7 +63,7 @@ function system_main_admin_page($arg = NULL) { /** * Provide a single block from the administration menu as a page. * This function is often a destination for these blocks. - * For example, 'admin/content/types' needs to have a destination to be valid + * For example, 'admin/build/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. * diff --git a/modules/translation/translation.module b/modules/translation/translation.module index baed4d15a..e532f6844 100644 --- a/modules/translation/translation.module +++ b/modules/translation/translation.module @@ -35,7 +35,7 @@ function translation_help($path, $arg) { $output .= '<p>'. t('Configuring content translation and translation-enabled content types:') .'</p>'; $output .= '<ul><li>'. t('Assign the <em>translate content</em> permission to the appropriate user roles at the <a href="@permissions">Permissions configuration page</a>.', array('@permissions' => url('admin/user/permissions'))) .'</li>'; $output .= '<li>'. t('Add and enable desired languages at the <a href="@languages">Languages configuration page</a>.', array('@languages' => url('admin/settings/language'))) .'</li>'; - $output .= '<li>'. t('Determine which <a href="@content-types">content types</a> should support translation features. To enable translation support for a content type, edit the type and at the <em>Multilingual support</em> drop down, select <em>Enabled, with translation</em>. (<em>Multilingual support</em> is located within <em>Workflow settings</em>.) Be sure to save each content type after enabling multilingual support.', array('@content-types' => url('admin/content/types'))) .'</li></ul>'; + $output .= '<li>'. t('Determine which <a href="@content-types">content types</a> should support translation features. To enable translation support for a content type, edit the type and at the <em>Multilingual support</em> drop down, select <em>Enabled, with translation</em>. (<em>Multilingual support</em> is located within <em>Workflow settings</em>.) Be sure to save each content type after enabling multilingual support.', array('@content-types' => url('admin/build/types'))) .'</li></ul>'; $output .= '<p>'. t('Working with translation-enabled content types:') .'</p>'; $output .= '<ul><li>'. t('Use the <em>Language</em> drop down to select the appropriate language when creating or editing posts.') .'</li>'; $output .= '<li>'. t('Provide new or edit current translations for existing posts via the <em>Translation</em> tab. Only visible while viewing a post as a user with the <em>translate content</em> permission, this tab allows translations to be added or edited using a specialized editing form that also displays the content being translated.') .'</li>'; |