* N°8955 Add UIBlocks markup in the setup

This commit is contained in:
Timmy38
2026-03-10 17:12:21 +01:00
committed by Eric Espie
parent 337ccbb921
commit 48e58f4323
14 changed files with 597 additions and 98 deletions

View File

@@ -0,0 +1,16 @@
<?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;
}
}