ILIAS  release_5-3 Revision v5.3.23-19-g915713cf615
HFile_mixedphp.php
Go to the documentation of this file.
1 <?php
2 $BEAUT_PATH = realpath(".") . "/Services/COPage/syntax_highlight/php";
3 if (!isset($BEAUT_PATH)) {
4  return;
5 }
6 require_once("$BEAUT_PATH/Beautifier/HFile.php");
7 
8 class HFile_mixedphp extends HFile
9 {
10  public function HFile_mixedphp()
11  {
12  $this->HFile();
13 
14 
15  /*************************************/
16  // Beautifier Highlighting Configuration File
17  // Plain with PHP
18  /*************************************/
19  // Flags
20 
21  $this->nocase = "1";
22  $this->notrim = "0";
23  $this->perl = "0";
24 
25  $this->zones = array(
26  array("<?", "?>", "HFile_php3")
27  );
28  }
29 }
$BEAUT_PATH
Create styles array
The data for the language used.
Definition: HFile.php:21