You are here

function entity2text_render_entity_to_text in Entity To Text 7

1 call to entity2text_render_entity_to_text()
entity2text_tokens in ./entity2text.module
Implements hook_tokens().

File

./entity2text.module, line 65

Code

function entity2text_render_entity_to_text($entity_type, $entity, $view_mode) {
  $rendered_entity = entity_view($entity_type, array(
    $entity,
  ), $view_mode);
  $text = entity2text_renderarray_to_text($rendered_entity);
  return $text;
}