Example #1
0
 /**
  * Führt Ersetzung von gesperrten Texten in Benutzer-Daten durch
  * @return boolean
  * @since FPCM 3.2.0
  */
 private function removeBannedTexts()
 {
     $this->username = $this->wordbanList->replaceItems($this->username);
     $this->displayname = $this->wordbanList->replaceItems($this->displayname);
     $this->email = $this->wordbanList->replaceItems($this->email);
     return true;
 }
Example #2
0
 /**
  * Führt Ersetzung von gesperrten Texten in Kommentar-Daten durch
  * @return boolean
  * @since FPCM 3.2.0
  */
 private function removeBannedTexts()
 {
     $this->name = $this->wordbanList->replaceItems($this->name);
     $this->iconpath = $this->wordbanList->replaceItems($this->iconpath);
     return true;
 }
Example #3
0
 /**
  * Führt Ersetzung von gesperrten Texten in Kommentar-Daten durch
  * @return boolean
  * @since FPCM 3.2.0
  */
 private function removeBannedTexts()
 {
     $this->name = $this->wordbanList->replaceItems($this->name);
     $this->email = $this->wordbanList->replaceItems($this->email);
     $this->website = $this->wordbanList->replaceItems($this->website);
     $this->text = $this->wordbanList->replaceItems($this->text);
     return true;
 }
Example #4
0
 /**
  * Führt Ersetzung von gesperrten Texten in Kommentar-Daten durch
  * @return boolean
  * @since FPCM 3.2.0
  */
 private function removeBannedTexts()
 {
     $this->leveltitle = $this->wordbanList->replaceItems($this->leveltitle);
     return true;
 }
Example #5
0
 /**
  * Führt Ersetzung von gesperrten Texten in Artikel-Daten durch
  * @return boolean
  * @since FPCM 3.2.0
  */
 private function removeBannedTexts()
 {
     $this->title = $this->wordbanList->replaceItems($this->title);
     $this->content = $this->wordbanList->replaceItems($this->content);
     $this->imagepath = $this->wordbanList->replaceItems($this->imagepath);
     return true;
 }