haraldpdl / oscommerce forked from osCommerce/oscommerce

osCommerce Online Merchant v3.x

This URL has Read+Write access

commit  57308c5e88eae1e278cdef471397e20129e5ae66
tree    65f58710726c222ae3657ddf18257fb4bfd0afe3
parent  7c37dfd984dead1abc9b0673341ce7fe5ea4b7b6
oscommerce / products.php
100644 27 lines (17 sloc) 0.665 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<?php
/*
$Id: index.php 208 2005-09-26 23:08:58 +0200 (Mo, 26 Sep 2005) hpdl $
 
osCommerce, Open Source E-Commerce Solutions
http://www.oscommerce.com
 
Copyright (c) 2005 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.
*/
 
  $_SERVER['SCRIPT_FILENAME'] = __FILE__;
 
  require('includes/application_top.php');
 
  $osC_Language->load('products');
 
  $osC_Template = osC_Template::setup('products');
 
  require('templates/' . $osC_Template->getCode() . '.php');
 
  require('includes/application_bottom.php');
?>