poll_field_extra_fields

Versions
mediamosa-21
poll_field_extra_fields()

Implements hook_field_extra_fields().

Code

modules/poll/poll.module, line 210

<?php
function poll_field_extra_fields() {
  $extra['node']['poll'] = array(
    'choice_wrapper' => array(
      'label' => t('Poll choices'),
      'description' => t('Poll module choices.'),
      'weight' => -4,
    ),
    'settings' => array(
      'label' => t('Poll settings'),
      'description' => t('Poll module settings.'),
      'weight' => -3,
    ),
  );

  return $extra;
}
?>