Thread: [phpbbreloaded-checkins] SF.net SVN: phpbbreloaded: [222] phpBB Reloaded 2/install/index.php
Status: Planning
Brought to you by:
tehphpmaster
From: <mar...@us...> - 2006-06-11 23:39:27
|
Revision: 222 Author: markthedaemon Date: 2006-06-11 16:39:20 -0700 (Sun, 11 Jun 2006) ViewCVS: http://svn.sourceforge.net/phpbbreloaded/?rev=222&view=rev Log Message: ----------- the first commit for a new shiny installer that will be implemented, in the style of the one that phpBB3 has... Added Paths: ----------- phpBB Reloaded 2/install/index.php Added: phpBB Reloaded 2/install/index.php =================================================================== --- phpBB Reloaded 2/install/index.php (rev 0) +++ phpBB Reloaded 2/install/index.php 2006-06-11 23:39:20 UTC (rev 222) @@ -0,0 +1,34 @@ +<?php +/** +* +* @package: install +* @version: $Id: index.php,v 1.1.1.1 2006/02/24 02:28:06 markthedaemon Exp $ +* @copyright: (c) 2006 phpBB Reloaded & 2002 phpBB Group +* @license: http://opensource.org/licenses/gpl-license.php GNU Public License +* +*/ + +if( isset($HTTP_GET_VARS['mode']) ) +{ + switch( $HTTP_GET_VARS['mode'] ) + { + case 'install': + + break; + case 'support': + + break; + case 'license': + + break; + default: + + break; + } +} +else +{ + +} + +?> \ No newline at end of file This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <mar...@us...> - 2006-06-12 01:05:38
|
Revision: 223 Author: markthedaemon Date: 2006-06-11 18:05:32 -0700 (Sun, 11 Jun 2006) ViewCVS: http://svn.sourceforge.net/phpbbreloaded/?rev=223&view=rev Log Message: ----------- its very new, but the second commit for the new installer...should be fun :S Modified Paths: -------------- phpBB Reloaded 2/install/index.php Modified: phpBB Reloaded 2/install/index.php =================================================================== --- phpBB Reloaded 2/install/index.php 2006-06-11 23:39:20 UTC (rev 222) +++ phpBB Reloaded 2/install/index.php 2006-06-12 01:05:32 UTC (rev 223) @@ -7,16 +7,120 @@ * @license: http://opensource.org/licenses/gpl-license.php GNU Public License * */ +?> +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> +<html> +<head> + +<meta http-equiv="Content-Style-Type" content="text/css"> +<title></title> +<link rel="stylesheet" href="../templates/subC1/subC1.css" type="text/css"> +<link rel="stylesheet" type="text/css" href="../templates/subC1/chromestyle.css"> +<style type="text/css"> +<!-- +th { background-image: url('../templates/subC1/images/cellpic3.gif') } +td.cat { background-image: url('../templates/subC1/images/cellpic1.gif') } +td.rowpic { background-image: url('../templates/subC1/images/cellpic2.jpg'); background-repeat: repeat-y } +td.catHead,td.catSides,td.catLeft,td.catRight,td.catBottom { background-image: url('../templates/subC1/images/cellpic1.gif') } + +/* Import the fancy styles for IE only (NS4.x doesn't use the @import function) */ +@import url("../templates/subC1/formIE.css"); +//--> +</style> +</head> +<body bgcolor="#E5E5E5" text="#000000" link="#006699" vlink="#5584AA"> + +<table width="100%" border="0" cellspacing="0" cellpadding="10" align="center"> + <tr> + <td class="bodyline" width="100%"><table width="100%" border="0" cellspacing="0" cellpadding="0"> + <tr> + <td><table width="100%" border="0" cellspacing="0" cellpadding="0"> + <tr> + <td align="center"><img src="../templates/subC1/images/logo_phpBB.gif" border="0" alt="Forum Home" vspace="1" /></td> + + </tr> + </table></td> + </tr> + <tr> + <td><br /><br /></td> + </tr> + <tr> + <td colspan="2"><table width="90%" border="0" align="center" cellspacing="0" cellpadding="0"> + <tr> + <td align="center"><span class="maintitle">phpBB Reloaded Installation</span></td> + </tr> + </table></td> + </tr> + <tr> + <td><br /><br /></td> + </tr> + <table cellspacing="0" cellpadding="0" border="0" width="100%"> + <tr width="100%"><td><div id="chromemenu"> +<ul> +<li><a href="index.php?mode=overview">Introduction</a></li> +<li></li> +<li></li> +<li><a href="index.php?mode=license">License</a></li> +<li><a href="index.php?mode=support">Support</a></li> +<li><a href="index.php?mode=install">Install</a></li> +</ul> +</div> +</td></tr> +<?php if( isset($HTTP_GET_VARS['mode']) ) { switch( $HTTP_GET_VARS['mode'] ) { + case 'overview': + ?> + <br /><br /> + <tr> + <td colspan="2"><table width="90%" border="0" align="center" cellspacing="0" cellpadding="0"> + <tr> + <td align="center"><span class="gen">Some general overview text will go here....</span></td> + </tr> + </table></td> + </tr> + <?php + break; + case 'install': + ?> + <tr> + <td colspan="2"><table width="90%" border="0" align="center" cellspacing="0" cellpadding="0"> + <tr> + <br /><br /><td align="center"><span class="gen">Thanks for choosing phpBB Reloaded etc. general shit shit shit shit shit shit<br /><br />shit shit shit shit shit</span></td> + </tr> + </table></td> + </tr> + <tr align="center"> + <td colspan="2"> + <br /><br /> + <form method="post" value="index.php?mode=install&sub=step1"> + <input type="submit" name="login" class="mainoption" value="Continue" /></form></td> + </tr> + +<?php +break; + if( isset($HTTP_GET_VARS['sub']) ) +{ + switch( $HTTP_GET_VARS['sub'] ) + { + case 'step1': + + echo 'this is step one ;-)'; + break; + + } + + } + + case 'support': - + echo 'Helllozies'; break; case 'license': @@ -30,5 +134,7 @@ { } - +?> +</table> +<?php ?> \ No newline at end of file This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |