{ return GWF_Website::getHTMLbody_foot(); } public static function getModule() { return self::$MODULE; } public static function getUser() { return self::$user; } public static function setDesign($design) { self::$DESIGN = $design; } public static function getDesign() { return self::$DESIGN; } public function __toString() { $module = Common::displayGet('mo', GWF_DEFAULT_MODULE); $method = Common::displayGet('me', GWF_DEFAULT_METHOD); $class = sprintf('<a href="%s" title="%s">%s</a>', GWF_WEB_ROOT, GWF_HTML::lang(__CLASS__), GWF_HTML::lang(__CLASS__)); $method = sprintf('<a href="%s" title="%s">%s</a>', GWF_WEB_ROOT . 'index.php?mo=' . $module . '&me=' . $method, $method, $method); $module = sprintf('<a href="%s" title="%s">%s</a>', GWF_WEB_ROOT . 'index.php?mo=' . $module, $module, $module); return $class . ' >> ' . $module . ' > ' . $method; } } GWF3::_init();