/**
  * Restore basic entities.
  *
  * @param string $strBuffer The string with the tags to be replaced.
  *
  * @return string The string with the original entities
  */
 public static function restoreBasicEntities($strBuffer)
 {
     if (self::isStringUtilAvailable()) {
         return StringUtil::restoreBasicEntities($strBuffer);
     }
     return \Contao\String::restoreBasicEntities($strBuffer);
 }