You are here

protected function EntityShareMediasProviderAbstract::isRteField in Entity Share 7

Check if RTE Field.

Return value

bool TRUE if RTE Field, FALSE otherwise.

4 calls to EntityShareMediasProviderAbstract::isRteField()
EntityShareMediasFileExport::exportMedias in modules/entity_share_medias/modules/entity_share_medias_file/includes/entity_share_medias_file.export.inc
Export the medias of the provider.
EntityShareMediasFileImport::importMedias in modules/entity_share_medias/modules/entity_share_medias_file/includes/entity_share_medias_file.import.inc
Import the medias of the provider.
EntityShareMediasScaldExport::exportMedias in modules/entity_share_medias/modules/entity_share_medias_scald/includes/entity_share_medias_scald.export.inc
Export the medias of the provider.
EntityShareMediasScaldImport::importMedias in modules/entity_share_medias/modules/entity_share_medias_scald/includes/entity_share_medias_scald.import.inc
Import the medias of the provider.

File

modules/entity_share_medias/includes/entity_share_medias.inc, line 153
Class for handling Medias.

Class

EntityShareMediasProviderAbstract
Class EntityShareMediasProviderAbstract.

Code

protected function isRteField() {
  return $this->fieldInfo['module'] == 'text';
}