示例#1
0
 function __construct($args)
 {
     global $langmessage, $config;
     parent::__construct($args);
     /*
     An xml site map will not show any of the pages from dynamic add-ons
     ... which is precisely what the regular sitemap shows
     */
     if (isset($_GET['xml'])) {
         $this->xml();
         return;
     }
     $this->MultiSiteData();
     echo '<div class="sitemap_xml">';
     echo \gp\tool::Link('Special_Site_Map', 'XML', 'xml');
     echo '</div>';
     echo '<h2>';
     echo \gp\tool\Output::ReturnText('site_map');
     echo '</h2>';
     \gp\tool\Output::GetFullMenu();
 }
示例#2
0
 function GetFullMenu()
 {
     trigger_error('deprecated functions');
     \gp\tool\Output::GetFullMenu();
 }