/**
  * {@inheritdoc}
  */
 public function escapeHtml($data, $allowedTags = null)
 {
     $pluginInfo = $this->pluginList->getNext($this->subjectType, 'escapeHtml');
     if (!$pluginInfo) {
         return parent::escapeHtml($data, $allowedTags);
     } else {
         return $this->___callPlugins('escapeHtml', func_get_args(), $pluginInfo);
     }
 }