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 class HFile_plain extends HFile{
00006 function HFile_plain(){
00007 $this->HFile();
00008
00009
00010
00011
00012
00013
00014 $this->nocase = "0";
00015 $this->notrim = "1";
00016 $this->perl = "0";
00017
00018
00019
00020 $this->colours = array();
00021 $this->quotecolour = "";
00022 $this->blockcommentcolour = "";
00023 $this->linecommentcolour = "";
00024
00025
00026
00027 $this->indent = array();
00028 $this->unindent = array();
00029
00030
00031
00032 $this->stringchars = array();
00033 $this->delimiters = array();
00034 $this->escchar = "";
00035
00036
00037
00038 $this->linecommenton = array();
00039 $this->blockcommenton = array();
00040 $this->blockcommentoff = array();
00041
00042
00043
00044 $this->keywords = array();
00045
00046
00047
00048
00049
00050
00051
00052 $this->linkscripts = array();
00053 }
00054
00055
00056 function donothing($keywordin)
00057 {
00058 return $keywordin;
00059
00060 }
00061
00062 }?>