You are here

public function EntityShareFieldCollectionAbstract::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 EntityShareFieldCollectionAbstract::isManagedFieldType()
EntityShareFieldCollectionExport::exportDatas in modules/entity_share_field_collection/includes/entity_share_field_collection.export.inc
Manage field collection for the export.
EntityShareFieldCollectionImport::importDatas in modules/entity_share_field_collection/includes/entity_share_field_collection.import.inc
Manage field collection for the import.

File

modules/entity_share_field_collection/includes/entity_share_field_collection.abstract.inc, line 131
Class for handling Field Collection Import/Export Abstract.

Class

EntityShareFieldCollectionAbstract
Abstract class for Field Collection import/export management.

Code

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