s2do.php /// Art: Online Auftragsverwaltung /// Inhalt: Übersicht /// Beschreibung: Übersicht /// Benötigt: Alle, siehe init /// CCML-Parsing: notwendig /// ////////////////////////////////////////////////////////////////////////////////////////// /// /// Letzte Änderungen: /// 07.12.2008 Suchfunktion umgestellt /// ////////////////////////////////////////////////////////////////////////////////////////// ///<07.12.2008/6.0.3.5/> define('ROOT', './'); define('ASSETS', ROOT.'assets/'); require(ASSETS.'s2diconf.php'); require(CC_INCLUDE_INIT); if (!$session->is_shopadmin()) { $session->unset_client(); redirect(CC_URL_LOGIN, CC_URL_OSINDEX); } //////////////////////////////////////////////////////////////////////////// $template = new template(CC_TPL_OSINDEX, true); $template->ressources(CC_INCLUDE_OSLANG); $template->assign(array( '_headline1' => $template->vars['headline1'], '_index_selected' => 'selected', )); $template->out(); ?>