Subversion Repositories oidplus

Compare Revisions

Regard whitespace Rev 280 → Rev 281

/trunk/sitemap.php
30,15 → 30,13
$nonConfidential = OIDplusObject::getAllNonConfidential();
 
$json = array();
foreach (OIDplus::getPagePlugins('public') as $plugin) {
if (get_class($plugin) == 'OIDplusPagePublicObjects') {
foreach ($nonConfidential as $id) {
echo OIDplus::getSystemUrl().'?goto='.urlencode($id)."\n";
foreach (OIDplus::getPagePlugins() as $plugin) {
if (is_subclass_of($plugin, OIDplusPagePluginPublic::class)) {
// TODO: The "login" area should not show RA+Admin entries (in case someone who is logged in copy+pastes the sitemap to a search engine)
// TODO: Should there be a plugin API for sitemap?
$plugin->tree($json, null/*RA EMail*/, false/*HTML tree algorithm*/, true/*display all*/);
}
} else {
$plugin->tree($json, null, true, null);
}
}
_rec($json);
 
# ---