You are here

function _content_field_types in Content Construction Kit (CCK) 6.3

Same name and namespace in other branches
  1. 5 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.

31 calls to _content_field_types()
content_content_field_content_type_admin_title in includes/panels/content_types/content_field.inc
Admin title for field content type.
content_content_field_content_type_content_types in includes/panels/content_types/content_field.inc
Return all field content types available.
content_content_field_content_type_edit_form in includes/panels/content_types/content_field.inc
Returns a settings form for the custom type.
content_copy_export in modules/content_copy/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 modules/content_copy/content_copy.module
Get all the *active* fields for a content type.

... See full list

File

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

Code

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