diff options
author | Angie Byron <webchick@24967.no-reply.drupal.org> | 2010-01-04 21:31:52 +0000 |
---|---|---|
committer | Angie Byron <webchick@24967.no-reply.drupal.org> | 2010-01-04 21:31:52 +0000 |
commit | ec7ff41cc58d1604918e0e10aeeef1bed9dd5d52 (patch) | |
tree | f63b3b33a93418e2e267010f4c0e6bc11a1e0b65 /modules/field | |
parent | 2a8fc4edb08cd26b8314fcaa3f34489ebdad9e61 (diff) | |
download | brdo-ec7ff41cc58d1604918e0e10aeeef1bed9dd5d52.tar.gz brdo-ec7ff41cc58d1604918e0e10aeeef1bed9dd5d52.tar.bz2 |
#580868 by anarcat and Dave Reid: Make 'Modules' its own top-level admin link.
Diffstat (limited to 'modules/field')
-rw-r--r-- | modules/field/field.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/field/field.module b/modules/field/field.module index 070b4e521..4f3518007 100644 --- a/modules/field/field.module +++ b/modules/field/field.module @@ -147,7 +147,7 @@ function field_help($path, $arg) { $output .= '<h3>' . t('Uses') . '</h3>'; $output .= '<dl>'; $output .= '<dt>' . t('Enabling field types') . '</dt>'; - $output .= '<dd>' . t('The Field module provides the infrastructure for fields and field attachment; the field types and input widgets themselves are provided by additional modules. Some of the modules are required; the optional modules can be enabled from the <a href="@modules">Modules administration page</a>. Drupal core includes the following field type modules: Number (required), Text (required), List (required), Taxonomy (optional), Image (optional), and File (optional); the required Options module provides input widgets for other field modules. Additional fields and widgets may be provided by contributed modules, which you can find in the <a href="@contrib">contributed module section of Drupal.org</a>. Currently enabled field and input widget modules:', array('@modules' => url('admin/config/modules'), '@contrib' => 'http://drupal.org/project/modules', '@options' => url('admin/help/options'))); + $output .= '<dd>' . t('The Field module provides the infrastructure for fields and field attachment; the field types and input widgets themselves are provided by additional modules. Some of the modules are required; the optional modules can be enabled from the <a href="@modules">Modules administration page</a>. Drupal core includes the following field type modules: Number (required), Text (required), List (required), Taxonomy (optional), Image (optional), and File (optional); the required Options module provides input widgets for other field modules. Additional fields and widgets may be provided by contributed modules, which you can find in the <a href="@contrib">contributed module section of Drupal.org</a>. Currently enabled field and input widget modules:', array('@modules' => url('admin/modules'), '@contrib' => 'http://drupal.org/project/modules', '@options' => url('admin/help/options'))); // Make a list of all widget and field modules currently enabled, in // order by displayed module name (module names are not translated). |