Implements hook_field_attach_prepare_translation_alter().

File

modules/poll/poll.module, line 476
Enables your site to capture votes on different topics in the form of multiple choice questions.

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;
    }
  }
}