function poll_field_attach_prepare_translation_alter

Implements hook_field_attach_prepare_translation_alter().

File

modules/poll/poll.module, line 476

Code

function poll_field_attach_prepare_translation_alter(&$entity, $context) {
    if ($context['entity_type'] == 'node' && $entity->type == 'poll') {
        $entity->choice = $context['source_entity']->choice;
        foreach ($entity->choice as $i => $options) {
            $entity->choice[$i]['chvotes'] = 0;
        }
    }
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.