blob: 0e06b9753608aacd07e2f4eecea316e17d81a6be (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<?php /* Copyright (c) 2024 Freya Murphy */
function aria_section(string $id, ?string $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;
}
|