public function EntityTranslationTaxonomyTermHandler::__construct in Entity Translation 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.taxonomy_term.inc, line 14 - Taxonomy term translation handler for the entity translation module.
Class
- EntityTranslationTaxonomyTermHandler
- Taxonomy term translation handler.
Code
public function __construct($entity_type, $entity_info, $entity) {
parent::__construct('taxonomy_term', $entity_info, $entity);
}