Go to the documentation of this file.00001 <?php
00002 $BEAUT_PATH = realpath(".")."/syntax_highlight/php";
00003 if (!isset ($BEAUT_PATH)) return;
00004 require_once("$BEAUT_PATH/Beautifier/HFile.php");
00005
00006 class HFile_plain extends HFile{
00007
00008 function HFile_plain(){
00009
00010 $this->HFile();
00011
00012
00013
00014
00015
00016
00017
00018
00019 $this->nocase = "1";
00020 $this->notrim = "0";
00021 $this->perl = "0";
00022
00023 $this->zones = array(
00024 array("<?", "?>", "HFile_php3")
00025 );
00026 }
00027 }
00028 ?>