コード例 #1
0
ファイル: Plain.php プロジェクト: bgarrels/textpattern
 /**
  * Constructor.
  */
 public function __construct()
 {
     parent::__construct(LEAVE_TEXT_UNTOUCHED, gTxt('leave_text_untouched'));
 }
コード例 #2
0
ファイル: Nl2Br.php プロジェクト: hcgtv/textpattern
 /**
  * Constructor.
  */
 public function __construct()
 {
     parent::__construct(CONVERT_LINEBREAKS, gTxt('convert_linebreaks'));
 }
コード例 #3
0
ファイル: Textile.php プロジェクト: bgarrels/textpattern
 /**
  * Constructor.
  */
 public function __construct()
 {
     parent::__construct(USE_TEXTILE, gTxt('use_textile'));
     $this->textile = new Textpattern_Textile_Parser();
     $this->version = $this->textile->getVersion();
 }