Public Member Functions | |
HFile_makefile () | |
donothing ($keywordin) |
Definition at line 5 of file HFile_makefile.php.
HFile_makefile::donothing | ( | $ | keywordin | ) |
Definition at line 72 of file HFile_makefile.php.
{
return $keywordin;
}
HFile_makefile::HFile_makefile | ( | ) |
Definition at line 6 of file HFile_makefile.php.
References HFile::HFile().
{ $this->HFile(); /*************************************/ // Beautifier Highlighting Configuration File // Makefiles /*************************************/ // Flags $this->nocase = "0"; $this->notrim = "0"; $this->perl = "0"; // Colours $this->colours = array("blue", "purple"); $this->quotecolour = "blue"; $this->blockcommentcolour = "green"; $this->linecommentcolour = "green"; // Indent Strings $this->indent = array(); $this->unindent = array(); // String characters and delimiters $this->stringchars = array("\"", "'"); $this->delimiters = array("~", "!", "$", "%", "^", "&", "-", "+", "=", "|", "\\", "/", "{", "}", "[", "]", ";", "\"", "'", "(", ")", "<", ">", " ", ",", " "); $this->escchar = ""; // Comment settings $this->linecommenton = array("#"); $this->blockcommenton = array(""); $this->blockcommentoff = array(""); // Keywords (keyword mapping to colour number) $this->keywords = array( ".DEFAULT:" => "1", ".IGNORE:" => "1", ".PRECIOUS:" => "1", ".SILENT:" => "1", ".SUFFIXES" => "1", "?" => "2", "@" => "2", "$" => "2", "$@" => "2", "<" => "2", "*" => "2", "%" => "2", "()" => "2"); // Special extensions // Each category can specify a PHP function that returns an altered // version of the keyword. $this->linkscripts = array( "1" => "donothing", "2" => "donothing"); }