You are here

function context_node_content_extra_fields in Context Node 6

Implementation of hook_content_extra_fields().

Provide integration with multistep

File

./context_node.module, line 222

Code

function context_node_content_extra_fields($type_name) {
  $fields['context_node'] = array(
    'label' => t('Context Node'),
    'description' => t('Select a context'),
    'weight' => 0,
  );
  return $fields;
}