public static function indexAction()
 {
     // Produkte für Tarifvergleich auslesen
     $ahTariffCompare = static::includeProductCompare(array('settings_file' => 'products', 'assign_settings' => 'product_settings'));
     Renderer::assign('tariffcompare', $ahTariffCompare);
     // TLDs, die bei Abfrage ohne TLD gesucht werden sollen
     $hDefaultTlds = shopProduct::getTLDNamesFromTLDGroup();
     // Weitere Domains abfragen -> Domains der erster Standard-Domaingruppe
     $hGroupTlds = shopProduct::getTLDNamesFromTLDGroup(array('ptgid' => static::WHOIS_DEFAULT_GROUP_ID));
     // Günstigste TLDs des Shops abfragen
     $ahHighlightTlds = shopProduct::getCheapestTLDs(array('return_limit' => static::TLD_CHEAPEST_COUNT));
     Renderer::assign('tlds', array('additional' => $hGroupTlds, 'default' => $hDefaultTlds, 'highlights' => $ahHighlightTlds));
     // Intervall für Preisanzeige bereitstellen
     Renderer::assign('interval', shopProduct::readInterval(array('return_shopformat' => 1)));
 }