mirror of
https://github.com/Combodo/iTop.git
synced 2026-03-12 04:24:12 +01:00
17 lines
278 B
PHP
17 lines
278 B
PHP
<?php
|
|
|
|
class WebPageFake extends WebPage
|
|
{
|
|
public string $sContent = '';
|
|
|
|
public function __construct(string $s_title = '', bool $bPrintable = false)
|
|
{
|
|
//parent::__construct($s_title,$bPrintable);
|
|
}
|
|
|
|
public function add($sContent)
|
|
{
|
|
$this->sContent .= $sContent;
|
|
}
|
|
}
|