public function content()
    {
        $textile_content = <<<TXT
h2. Themes for Haddock CMS

* "Neon Lorem Ipsum":/HaddockCMSThemes_NeonLoremIpsumHTMLPage
* "Sky Lorem Ipsum":/HaddockCMSThemes_SkyLoremIpsumHTMLPage
* "Hurtsickle Lorem Ipsum":/HaddockCMSThemes_HurtsickleLoremIpsumHTMLPage
TXT;
        $textile = new Textile_Textile();
        echo $textile->TextileThis($textile_content);
    }
コード例 #2
0
    public function content()
    {
        $textile_content = <<<TXT
h2. Testing the Themes for Haddock CMS

This page is a simple test site for the various HTML themes that have
been created for various Haddock CMS projects.

You can start by browsing the "themes list page.":/HaddockCMSThemes_ThemesListHTMLPage
TXT;
        $textile = new Textile_Textile();
        echo $textile->TextileThis($textile_content);
    }
コード例 #3
0
 public function get_description_html()
 {
     $textile = new Textile_Textile();
     return $textile->TextileThis($this->description);
     //                return $this->description;
 }
コード例 #4
0
 public function get_note_text_textiled()
 {
     $textile = new Textile_Textile();
     return $textile->TextileThis($this->get_note_text());
 }
コード例 #5
0
 public static function translate_textile_to_html($textile_text)
 {
     $textile_text = stripslashes($textile_text);
     $textile = new Textile_Textile();
     return $textile->TextileThis($textile_text);
 }