You are here

public function EntityShareTaxonomyAbstract::isManagedFieldType in Entity Share 7

Check if the field type is managed.

Return value

bool TRUE if the current module can handle the field type, FALSE otherwise.

2 calls to EntityShareTaxonomyAbstract::isManagedFieldType()
EntityShareTaxonomyExport::exportDatas in modules/entity_share_taxonomy/includes/entity_share_taxonomy.export.inc
Manage taxonomy for the export.
EntityShareTaxonomyImport::importDatas in modules/entity_share_taxonomy/includes/entity_share_taxonomy.import.inc
Manage taxonomy for the import.

File

modules/entity_share_taxonomy/includes/entity_share_taxonomy.abstract.inc, line 131
Class for handling Taxonomy Import/Export Abstract.

Class

EntityShareTaxonomyAbstract
Abstract class for Taxonomy import/export management.

Code

public function isManagedFieldType() {
  return in_array($this->fieldType, $this->managedFieldTypes);
}