Source Code
Please paste this code snippet into your template to see how it works.
Let's experiment with a template like
tiny.news.feed/Themes/default/404.tplby pasting code into it and then opening some non-existent page associated with that template.
<?php
$TEST = $cms->getSitemap('news');
$site = printSiteUrl(FALSE);
foreach ( $TEST as $item ) {
echo $site . $item['prefix'] . $item['url'] . ' <br>';
}
?>Note that the
$cmsvariable is a system pointer to your web application. AndgetSitemapis a public method for reading non-disabled URLs. If you are interested in the algorithm of this method, look at the filetiny.news.feed/Application.php.
* This page is a demo post designed to display page content for testers. You need delete this page when you run the website in production mode.
