You are here

function _content_widget_types in Content Construction Kit (CCK) 6.3

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

Return a list of widget types.

12 calls to _content_widget_types()
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.
content_default_value in ./content.module
Helper function to return the correct default value for a field.
content_field_basic_form_submit in includes/content.admin.inc
Create a new field for a content type.
content_field_edit_form in includes/content.admin.inc
Menu callback; presents the field editing page.

... See full list

File

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

Code

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