note description: "Summary description for {CMS_ADMIN_RESPONSE}." date: "$Date$" revision: "$Revision$" class CMS_ADMIN_RESPONSE inherit CMS_RESPONSE redefine make, initialize end create make feature {NONE} -- Initialization make (req: WSF_REQUEST; res: WSF_RESPONSE; a_api: like api) do create {WSF_NULL_THEME} wsf_theme.make Precursor (req, res, a_api) end initialize do Precursor create {CMS_TO_WSF_THEME} wsf_theme.make (Current, theme) end wsf_theme: WSF_THEME feature -- Process process local b: STRING do create b.make_empty set_title (translation ("Admin Page", Void)) b.append ("") set_main_content (b) end end