';
}
$htmlCode .= '
';
// TODO: Add a simple and nicer divider.
if(!is_null($iconId)) {
$htmlCode .= '';
}
$htmlCode .= $text;
if(!is_null($rightText)) {
$htmlCode .= '' . $rightText . '';
}
$htmlCode .= '
';
if(!is_null($anchorId)) {
$htmlCode .= '';
}
return $htmlCode;
}
function printMainHeader(string $text, ?string $iconId = null, ?string $rightText = null, ?string $anchorId = null,
?string $backgroundClass = "bkgd-grid"): void {
global $_npDomUtilsHeadingCount;
$_npDomUtilsHeadingCount++;
echo(getMainHeader(
$text,
$iconId,
$rightText,
$anchorId,
($_npDomUtilsHeadingCount > 1),
$backgroundClass
));
}
?>