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_MFL extends HFile
00007 {
00008 function HFile_MFL()
00009 {
00010 $this->HFile();
00011 $this->colours = array("blue", "brown", "red");
00012 $this->delimiters = array(" ", " ", "(", ")", ".");
00013 $this->keywords = array(
00014 "import" => "1",
00015 "function" => "1",
00016 "forall" => "1",
00017 "return" => "2",
00018 "print" => "2",
00019 "+" => "3",
00020 "=" => "3"
00021 );
00022 # $this->stringchars = array("\"", "'");
00023 # $this->escchar = "\\";
00024 }
00025 }
00026 ?>