summaryrefslogtreecommitdiff
path: root/modules/field
diff options
context:
space:
mode:
authorAngie Byron <webchick@24967.no-reply.drupal.org>2009-08-19 22:46:05 +0000
committerAngie Byron <webchick@24967.no-reply.drupal.org>2009-08-19 22:46:05 +0000
commitf8e430c7fdbd97a4d7451f4c94e5cb67183dab42 (patch)
tree36f581ecc766954c5f36f900a98d51a6443239f6 /modules/field
parent01d98fa50b58c615bd729f915470d4244e35a76b (diff)
downloadbrdo-f8e430c7fdbd97a4d7451f4c94e5cb67183dab42.tar.gz
brdo-f8e430c7fdbd97a4d7451f4c94e5cb67183dab42.tar.bz2
#552084 by jhodgdon: Removed references to 'CCK' in core.
Diffstat (limited to 'modules/field')
-rw-r--r--modules/field/field.module6
1 files changed, 2 insertions, 4 deletions
diff --git a/modules/field/field.module b/modules/field/field.module
index e1e03b554..94aa34efe 100644
--- a/modules/field/field.module
+++ b/modules/field/field.module
@@ -37,8 +37,7 @@ require(DRUPAL_ROOT . '/modules/field/field.attach.inc');
* - @link field_crud Field CRUD API @endlink. Create, updates, and
* deletes fields, bundles (a.k.a. "content types"), and instances.
* Modules use this API, often in hook_install(), to create
- * custom data structures. The Content Construction Kit
- * user-interface module uses this API for its major functionality.
+ * custom data structures.
*
* - @link field_attach Field Attach API @endlink. Connects object
* types to the Field API. Field Attach API functions load, store,
@@ -135,7 +134,6 @@ function field_help($path, $arg) {
switch ($path) {
case 'admin/help#field':
$output = '<p>' . t('The Field API allows custom data fields to be attached to Drupal objects and takes care of storing, loading, editing, and rendering field data. Any object type (node, user, etc.) can use the Field API to make itself "fieldable" and thus allow fields to be attached to it.') . '</p>';
- $output .= '<p>' . t('The Field API provides no user interface on its own. Use the Content Construction Kit (CCK) contrib module to manage custom fields via a web browser.') . '</p>';
return $output;
}
}
@@ -474,7 +472,7 @@ function _field_filter_xss_display_allowed_tags() {
*
* TODO D7 : do we still need field_format ?
* - backwards compatibility of templates - check what fallbacks we can propose...
- * - used by Views integration in CCK D6
+ * - was used by Views integration in CCK in D6 - do we need now?
* At least needs a little rehaul/update...
*
* Used to display a field's values outside the context of the $node, as