You are here

function _content_field_types in Content Construction Kit (CCK) 5

Same name and namespace in other branches
  1. 6.3 content.module \_content_field_types()
  2. 6 content.module \_content_field_types()
  3. 6.2 content.module \_content_field_types()

Return a list of field types.

27 calls to _content_field_types()
content_admin_display_overview_form in ./content_admin.inc
Menu callback; presents a listing of fields display settings for a content type.
content_admin_field_overview_form in ./content_admin.inc
Menu callback; presents a listing of fields for a content type.
content_copy_export in ./content_copy.module
Process the export, get field admin forms for all requested fields and save the form values as formatted text.
content_copy_fields in ./content_copy.module
Get all the fields for a content type.
content_database_info in ./content.module
Retrieve the database storage location(s) for a field.

... See full list

File

./content.module, line 736
Allows administrators to associate custom fields to content types.

Code

function _content_field_types() {
  $info = _content_type_info();
  return $info['field types'];
}