poll_field_extra_fields()Implements hook_field_extra_fields().
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;
}
?>