mirror of
https://github.com/Combodo/iTop.git
synced 2026-02-13 15:34:12 +01:00
14 lines
354 B
PHP
14 lines
354 B
PHP
<?php
|
|
|
|
/**
|
|
* Class SubMFCompiler: used to call a protected method for testing purpose
|
|
*/
|
|
class SubMFCompiler extends MFCompiler {
|
|
public function CompileThemes($oBrandingNode, $sTempTargetDir) {
|
|
return parent::CompileThemes($oBrandingNode, $sTempTargetDir);
|
|
}
|
|
|
|
public function GetCompilationTimeStamp(){
|
|
return $this->sCompilationTimeStamp;
|
|
}
|
|
} |