You are here

function _auto_entitylabel_nohtmlentities in Automatic Entity Label 7

Callback function for decoding HTML entities.

1 string reference to '_auto_entitylabel_nohtmlentities'
_auto_entitylabel_patternprocessor in ./auto_entitylabel.module
Helper function to generate the title according to the settings.

File

./auto_entitylabel.module, line 404
Allows hiding of entity label fields and automatic label creation.

Code

function _auto_entitylabel_nohtmlentities(&$replacements, $data, $options) {
  foreach ($replacements as $key => $value) {
    $replacements[$key] = decode_entities($value);
  }
}