You are here

function msnf_extra_fields in Multistep Nodeform 6

Get information about non-CCK 'node fields' defined in core.

2 calls to msnf_extra_fields()
msnf_steps in includes/msnf.steps.inc
Returns all steps for a content type.
_msnf_content_type_info in ./msnf.module
Collate all information on content types, fields, and related structures. If content.module is active, return the data from _content_type_info().

File

./msnf.module, line 712
Main functions for module "Multistep Nodeform".

Code

function msnf_extra_fields($type_name) {
  $extra = module_invoke_all('content_extra_fields', $type_name);
  drupal_alter('content_extra_fields', $extra, $type_name);
  return $extra;
}