final move of files
[web.mtrack] / MTrack / hyperlight / iphp.php
1 <?php
2
3 require_once('php.php');
4
5 class IphpLanguage extends PhpLanguage {
6     public function __construct() {
7         parent::__construct();
8         $this->setExtensions(array()); // Not a whole file, just a fragment.
9         $this->removeState('init');
10         $this->addStates(array('init' => $this->getState('php')));
11     }
12 }
13
14 ?>