N°2847 - Refactor Web Pages classes - Add UIBlockManager to the WebPage

This commit is contained in:
Eric
2020-09-09 14:30:33 +02:00
parent 2df2392cc6
commit 63f8ec594c
56 changed files with 1555 additions and 1713 deletions

View File

@@ -222,6 +222,13 @@ class PageContent extends UIBlock
return $this;
}
public function AddExtraHtmlContent(string $sExtraHtmlContent):iUIBlock
{
$this->sExtraHtmlContent .= $sExtraHtmlContent;
return $this;
}
/**
* Get the extra HTML content as-is, no processing is done on it
*
@@ -249,4 +256,4 @@ class PageContent extends UIBlock
return $aSubBlocks;
}
}
}