public function EntityTranslationBeanHandler::__construct in Bean (for Drupal 7) 7
Initializes an instance of the translation handler.
Parameters
$entity_type: The type of the entity being wrapped.
$entity_info: The entity information for the entity being wrapped.
$entity: The entity being wrapped.
Overrides EntityTranslationDefaultHandler::__construct
File
- includes/
translation.handler.bean.inc, line 15 - Bean translation handler for the translation module.
Class
- EntityTranslationBeanHandler
- Bean translation handler.
Code
public function __construct($entity_type, $entity_info, $entity) {
parent::__construct('bean', $entity_info, $entity);
}