[ PHPXref.com ] [ Generated: Sun Jul 20 19:13:40 2008 ] [ osCommRes 1.2.0 ]
[ Index ]     [ Variables ]     [ Functions ]     [ Classes ]     [ Constants ]     [ Statistics ]

title

Body

[close]

/ -> account.php (source)

   1  <?php
   2  /*
   3    $Id: account.php,v 1.2 2003/09/24 13:57:00 wilt Exp $
   4  
   5    osCommerce, Open Source E-Commerce Solutions
   6    http://www.oscommerce.com
   7  
   8    Copyright (c) 2003 osCommerce
   9  
  10    Released under the GNU General Public License
  11  */
  12  
  13    require ('includes/application_top.php');
  14  
  15    if (!tep_session_is_registered('customer_id')) {
  16      $navigation->set_snapshot();
  17      $return=(isset($HTTP_GET_VARS["R"])?"R=1":"");
  18      tep_redirect(tep_href_link(FILENAME_LOGIN, $return, 'SSL'));
  19    }
  20  
  21    require(DIR_WS_LANGUAGES . $language . '/' . FILENAME_ACCOUNT);
  22  
  23    $breadcrumb->add(NAVBAR_TITLE, tep_href_link(FILENAME_ACCOUNT, '', 'SSL'));
  24  
  25    $content = CONTENT_ACCOUNT;
  26    $javascript = $content . '.js';
  27  
  28    require(DIR_WS_TEMPLATES . TEMPLATE_NAME . '/' . TEMPLATENAME_MAIN_PAGE);
  29  
  30    require (DIR_WS_INCLUDES . 'application_bottom.php');
  31  
  32  ?>


[ Powered by PHPXref - Served by Debian GNU/Linux ]