Hi leute,
ist es möglich dass ich den BBcode der news erweitere? wenn ja wie?
ich möchte gerne eine Iframe option dazufügen
[iframe]url[/iframe]
wäre cool wenn ihr mir helfen könntet
danke schon mal
Hier kann eine Notiz zum Merk-Eintrag hinzugefügt werden (optional)
Geschlossen |
//> IFRAMES darstellen function _iframe($string) { $string = trim($string); if (preg_match('%^((http|ftp|https)://)|^/%i',$string) == 0) { $string = 'http://'.$string; } $string = "<iframe scrolling=\"yes\" frameborder=\"0\" width=\"300\" height=\"300\" src=\"".$string."\">Sorry ... No Frames!</iframe>"; return $string; }
//> Darf BB Code [IFRAME] dekodiert werden? if($this->permitted['iframe'] == true) { //> Format: [iframe]xxx[/iframe} $this->pattern[] = "%\[iframe\](.+)\[\/iframe\]%esiU"; $this->replace[] = "\$this->_iframe('\$1')"; }
//> Tag: [iframe] $permitted['iframe'] = true;
//> Tag: [iframe] if ($menu->get(0) == 'news' ) { $permitted['iframe'] = true; } else { $permitted['iframe'] = false; }
Geschlossen | ||
![]() |
Zurück zu Allgemein |