You are here

function markup_widget_info in Markup 6

Implements hook_widget_info().

File

./markup.module, line 76
Defines a field type for displaying markup on the node/edit form.

Code

function markup_widget_info() {
  return array(
    'markup' => array(
      'label' => 'Markup',
      'field types' => array(
        'markup',
      ),
      'multiple values' => CONTENT_HANDLE_MODULE,
    ),
  );
}