Blame Scripts/Php/Newbb2Phpbb/contents/header.php
|
|
878a2b |
|
|
|
878a2b |
|
|
|
878a2b |
$htmlblock = array('<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">',
|
|
|
878a2b |
'<head>',
|
|
|
878a2b |
'<meta http-equiv="content-type" content="text/html; charset=UTF-8">',
|
|
|
878a2b |
'<title>newbb to phpbb :: Migrating Xoops+CBB(newbb) to phpBB</title>',
|
|
|
878a2b |
'<link rel="stylesheet" href="style.css" type="text/css" media="screen" />',
|
|
|
878a2b |
'</head>',
|
|
|
878a2b |
'<body>',
|
|
|
878a2b |
'
|
|
|
878a2b |
'newbb to phpbb',
|
|
|
878a2b |
'Migrating from Xoops+CBB(newbb) to phpBB+LDAP ');
|
|
|
878a2b |
|
|
|
878a2b |
# Navigation bar
|
|
|
878a2b |
$htmlblock = array_merge($htmlblock, $html->get_navibar());
|
|
|
878a2b |
|
|
|
878a2b |
array_push($htmlblock, '',' ');
|
|
|
878a2b |
array_push($htmlblock, '');
|
|
|
878a2b |
|
|
|
878a2b |
// Where am I in the migration process ?
|
|
|
878a2b |
if ( ! isset($_GET['p'] ) )
|
|
|
878a2b |
{
|
|
|
878a2b |
$htmlblock = array_merge($htmlblock, $html->get_stepPosition());
|
|
|
878a2b |
}
|
|
|
878a2b |
|
|
|
878a2b |
array_push($htmlblock,'');
|
|
|
878a2b |
?>
|