# should be called as the last step of a main installation. # Currently all this does is give some informative information to the user on what they should do next sub step_end_init { return 10_000_000; } sub step_end { $wiz->{data}{httpstats} = "http://" . $conf->{install}{webhost} . $conf->{theme}{statsurl}; if ($wiz->{data}{httpstats} !~ m|^http://.+/.+/|) { $wiz->{data}{httpstats} = "http://www.yoursite.com/stats/"; } $wiz->wraptext($lang->{end_start}); $wiz->wraptext($lang->{end_info1}); if ($OS eq 'MSWin32') { $wiz->wraptext($lang->{end_win1}); } else { $wiz->wraptext($lang->{end_linux1}); } $wiz->wraptext($lang->{end_info2}); if ($OS eq 'MSWin32') { $wiz->wraptext($lang->{end_win2}); } else { $wiz->wraptext($lang->{end_linux2}); } $wiz->wraptext($lang->{end_info3}); } 1;