public function executeNormalView()
 {
     $this->setup();
     // We don't recommend doing this at the FCK level,
     // let it happen here instead so what is stored in the
     // db can be clean markup
     $this->value = aHtml::obfuscateMailto($this->value);
 }
 /**
  * DOCUMENT ME
  */
 public function executeNormalView()
 {
     $this->setup();
     // Yes, we store basic HTML markup for "plaintext" slots.
     // However we obfuscate the mailto links on the fly as a last step
     // (so it's not as fast as we originally intended, but this is an
     // essential feature that makes transformation of the code difficult).
     $this->value = aHtml::obfuscateMailto($this->value);
 }