public function __construct() { parent::__construct(); // output $this->setOutputMode(self::HTML4_TRANSITIONAL); $this->htmlOutputModule->removeOptional = false; self::$advertisingNotice = false; // headings $this->headingModule->balancing = TexyHeadingModule::FIXED; // phrases $this->allowed['phrase/ins'] = true; // ++inserted++ $this->allowed['phrase/del'] = true; // --deleted-- $this->allowed['phrase/sup'] = true; // ^^superscript^^ $this->allowed['phrase/sub'] = true; // __subscript__ $this->allowed['phrase/cite'] = true; // ~~cite~~ $this->allowed['deprecated/codeswitch'] = true; // `=code // images $this->imageModule->fileRoot = __DIR__ . "/images"; $this->imageModule->root = "images/"; // přidávání youtube.com, stream.cz videa, flash a gravatar $this->addHandler('image', array(__CLASS__, 'youtubeHandler')); $this->addHandler('image', array(__CLASS__, 'streamHandler')); $this->addHandler('image', array(__CLASS__, 'flashHandler')); $this->addHandler('image', array(__CLASS__, 'gravatarHandler')); }
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html> <head> <title>Zpracování formuláře</title> <meta http-equiv="Content-type" content="text/html; charset=UTF-8"> <style type="text/css"> body {font:80%/1.3em "Segoe UI", sans-serif;} </style> </head> <body> <h2>První textarea</h2> <?php require_once __DIR__ . "/ForumTexy.php"; $forumTexy = new ForumTexy(); $text = get_magic_quotes_gpc() ? stripslashes($_POST["text"]) : $_POST["text"]; echo $forumTexy->process($text); ?> <h2>Druhá textarea</h2> <?php require_once __DIR__ . "/AdminTexy.php"; $adminTexy = new AdminTexy(); $text2 = get_magic_quotes_gpc() ? stripslashes($_POST["text2"]) : $_POST["text2"]; echo $adminTexy->process($text2); ?> </body> </html>