mirror of
https://github.com/Combodo/iTop.git
synced 2026-02-13 23:44:11 +01:00
18 lines
358 B
PHP
18 lines
358 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;
|
|
}
|
|
}
|