You are here

function relation_entity_collector_pre_render in Relation 7

Pre render callback for the entity_collector block.

1 string reference to 'relation_entity_collector_pre_render'
relation_entity_collector_block_view in relation_entity_collector/relation_entity_collector.module
Implements hook_block_view().

File

relation_entity_collector/relation_entity_collector.module, line 102
Relation Entity Collector Block.

Code

function relation_entity_collector_pre_render($element) {
  $element['form'] = drupal_get_form('relation_entity_collector');
  return $element;
}