blob: 8ebfcc54ab7d6d30ae2d9348eb4695eaca9fc295 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<?php /* Copyright (c) 2024 Freya Murphy */
function aria_section($id, $title = NULL): string {
$out = '';
if ($title) {
$idh = $id . '_heading';
$out .= sprintf('<div id="%s" class="section" role="region" aria-labelledby="%s">',
$id, $idh);
$out .= sprintf('<h2 class="heading" id="%s">%s</h2>',
$idh, $title);
} else {
$out .= sprintf('<div id="%s" class="section" role="region">',
$id);
}
return $out;
}
|