account.php

来自「this the oscommerce 3.0 aplha 4」· PHP 代码 · 共 70 行

PHP
70
字号
<?php/*  $Id: account.php 1498 2007-03-29 14:04:50Z hpdl $  osCommerce, Open Source E-Commerce Solutions  http://www.oscommerce.com  Copyright (c) 2006 osCommerce  This program is free software; you can redistribute it and/or modify  it under the terms of the GNU General Public License v2 (1991)  as published by the Free Software Foundation.*/?><?php echo osc_image(DIR_WS_IMAGES . $osC_Template->getPageImage(), $osC_Template->getPageTitle(), HEADING_IMAGE_WIDTH, HEADING_IMAGE_HEIGHT, 'id="pageIcon"'); ?><h1><?php echo$osC_Template->getPageTitle(); ?></h1><?php  if ($messageStack->size('account') > 0) {    echo $messageStack->output('account');  }?><div class="moduleBox">  <h6><?php echo $osC_Language->get('my_account_title'); ?></h6>  <div class="content">    <?php echo osc_image(DIR_WS_IMAGES . 'account_personal.gif', $osC_Language->get('my_account_title'), null, null, 'style="float: left;"'); ?>    <ul style="padding-left: 100px; list-style-image: url(<?php echo osc_href_link(DIR_WS_IMAGES . 'arrow_green.gif', null, 'SSL'); ?>);">      <li><?php echo osc_link_object(osc_href_link(FILENAME_ACCOUNT, 'edit', 'SSL'), $osC_Language->get('my_account_information')); ?></li>      <li><?php echo osc_link_object(osc_href_link(FILENAME_ACCOUNT, 'address_book', 'SSL'), $osC_Language->get('my_account_address_book')); ?></li>      <li><?php echo osc_link_object(osc_href_link(FILENAME_ACCOUNT, 'password', 'SSL'), $osC_Language->get('my_account_password')); ?></li>    </ul>    <div style="clear: both;"></div>  </div></div><div class="moduleBox">  <h6><?php echo $osC_Language->get('my_orders_title'); ?></h6>  <div class="content">    <?php echo osc_image(DIR_WS_IMAGES . 'account_orders.gif', $osC_Language->get('my_orders_title'), null, null, 'style="float: left;"'); ?>    <ul style="padding-left: 100px; list-style-image: url(<?php echo osc_href_link(DIR_WS_IMAGES . 'arrow_green.gif', null, 'SSL'); ?>);">      <li><?php echo osc_link_object(osc_href_link(FILENAME_ACCOUNT, 'orders', 'SSL'), $osC_Language->get('my_orders_view')); ?></li>    </ul>    <div style="clear: both;"></div>  </div></div><div class="moduleBox">  <h6><?php echo $osC_Language->get('my_notifications_title'); ?></h6>  <div class="content">    <?php echo osc_image(DIR_WS_IMAGES . 'account_notifications.gif', $osC_Language->get('my_notifications_title'), null, null, 'style="float: left;"'); ?>    <ul style="padding-left: 100px; list-style-image: url(<?php echo osc_href_link(DIR_WS_IMAGES . 'arrow_green.gif', null, 'SSL'); ?>);">      <li><?php echo osc_link_object(osc_href_link(FILENAME_ACCOUNT, 'newsletters', 'SSL'), $osC_Language->get('my_notifications_newsletters')); ?></li>      <li><?php echo osc_link_object(osc_href_link(FILENAME_ACCOUNT, 'notifications', 'SSL'), $osC_Language->get('my_notifications_products')); ?></li>    </ul>    <div style="clear: both;"></div>  </div></div>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?