6.1 Access Key List
This snippet generates a list of all Quick Access Keys used throughout your Tribiq CMS Site. To embed the list into a template, use the following snippet, and save the file as “HTML-accessibility.tpl.php” and place it within your template family:
<?php
echo getAccessibilityList();
?>
The output is an unordered list.
<ul>
<li>Page (Key)</li>
<li>Page (Key)</li>
<li>Page (Key)</li>
</ul>
Top of Page