You are here

function civicrm_entity_inline_entity_info_alter in CiviCRM Entity 7.2

Implements hook_entity_info_alter().

Parameters

$entity_info:

File

modules/civicrm_entity_inline/civicrm_entity_inline.module, line 8

Code

function civicrm_entity_inline_entity_info_alter(&$entity_info) {
  $entities = _civicrm_entity_enabled_entities();
  foreach ($entities as $drupal => $civi) {
    $entity_info[$drupal]['inline entity form'] = array(
      'controller' => 'CivicrmInlineEntityFormController',
    );
  }
}