View of /com_supacart/trunk/admin_files/html/account.index.php
Parent Directory
|
Revision Log
Revision 4 -
(download)
(annotate)
Tue Aug 4 12:46:30 2009 UTC (3 years, 9 months ago) by andphe
File size: 3021 byte(s)
Tue Aug 4 12:46:30 2009 UTC (3 years, 9 months ago) by andphe
File size: 3021 byte(s)
+ adding first set of files for version control
<?php defined( '_VALID_MOS' ) or die( 'Direct Access to this location is not allowed.' ); /** * * @version $Id: account.index.php 617 2007-01-04 19:43:08Z soeren_nb $ * @package SupaCart * @subpackage html * See COPYRIGHT.php for copyright notices and details. * @license GNU/GPL Version 2, see LICENSE.php * SupaCart is free software, originally derived from Virtuemart. This version may have been modified pursuant * to the GNU General Public License, and as distributed it includes or * is derivative of works licensed under the GNU General Public License or * other free or open source software licenses. * See /administrator/components/com_supacart/COPYRIGHT.php for copyright notices and details. * * http://www.supacart.com */ mm_showMyFileName( __FILE__ ); require_once(CLASSPATH.'ps_order.php'); $ps_order = new ps_order; /* Set Dynamic Page Title when applicable */ $mainframe->setPageTitle( $VM_LANG->_PHPSHOP_ACCOUNT_TITLE ); if ($perm->is_registered_customer($auth['user_id'])) { ?> <strong><?php echo $VM_LANG->_PHPSHOP_ACC_CUSTOMER_ACCOUNT ?></strong> <?php echo $auth["first_name"] . " " . $auth["last_name"] . "<br />";?> <br /> <table border="0" cellspacing="0" cellpadding="10" width="100%" align="center"> <tr> <td> <strong> <a href="<?php $sess->purl(SECUREURL . "index.php?page=account.billing") ?>"> <?php echo "<img src=\"".IMAGEURL."ps_image/identity.png\" align=\"middle\" height=\"32\" width=\"32\" border=\"0\" alt=\"".$VM_LANG->_PHPSHOP_ACCOUNT_TITLE."\" /></a> "; ?> <a href="<?php $sess->purl(SECUREURL . "index.php?page=account.billing") ?>"> <?php echo $VM_LANG->_PHPSHOP_ACC_ACCOUNT_INFO ; ?></a></strong> <br /><?php echo $VM_LANG->_PHPSHOP_ACC_UPD_BILL ?> </td> </tr> <?php if(CHECKOUT_STYLE == 1 || CHECKOUT_STYLE == 2) { ?> <tr><td> </td></tr> <tr> <td><hr /> <strong><a href="<?php $sess->purl(SECUREURL . "index.php?page=account.shipping") ?>"><?php echo "<img src=\"".IMAGEURL."ps_image/web.png\" align=\"middle\" border=\"0\" height=\"32\" width=\"32\" alt=\"".$VM_LANG->_PHPSHOP_ACC_SHIP_INFO."\" /></a> "; ?> <a href="<?php $sess->purl(SECUREURL . "index.php?page=account.shipping") ?>"> <?php echo $VM_LANG->_PHPSHOP_ACC_SHIP_INFO ?></a></strong> <br /> <?php echo $VM_LANG->_PHPSHOP_ACC_UPD_SHIP ?> </td> </tr> <?php } ?> <tr><td> </td></tr> <tr> <td> <hr /> <strong><?php echo "<img src=\"".IMAGEURL."ps_image/package.png\" align=\"middle\" height=\"32\" width=\"32\" border=\"0\" alt=\"".$VM_LANG->_PHPSHOP_ACC_ORDER_INFO."\" /> "; echo $VM_LANG->_PHPSHOP_ACC_ORDER_INFO ?> </strong> <?php $ps_order->list_order("A", "1" ); ?> </td> </tr> </table> <!-- Body ends here --> <?php } else { echo $VM_LANG->_LOGIN_TEXT .'<br/><br/><br/>'; include(PAGEPATH.'checkout.login_form.php'); } ?>
| ViewVC Help | |
| Powered by ViewVC 1.0.0 |

