hpdl
|
1852
|
1
|
<?php
|
|
2
|
/*
|
|
3
|
$Id: configuration.php 1863 2009-03-06 23:53:49Z hpdl $
|
|
4
|
|
|
5
|
osCommerce, Open Source E-Commerce Solutions
|
|
6
|
http://www.oscommerce.com
|
|
7
|
|
|
8
|
Copyright (c) 2009 osCommerce
|
|
9
|
|
|
10
|
This program is free software; you can redistribute it and/or modify
|
|
11
|
it under the terms of the GNU General Public License v2 (1991)
|
|
12
|
as published by the Free Software Foundation.
|
|
13
|
*/
|
|
14
|
|
|
15
|
require('includes/applications/configuration/classes/configuration.php');
|
|
16
|
|
|
17
|
class osC_Application_Configuration extends osC_Template_Admin {
|
|
18
|
|
|
19
|
/* Protected variables */
|
|
20
|
|
|
21
|
protected $_module = 'configuration',
|
|
22
|
$_page_title,
|
|
23
|
$_page_contents = 'main.php';
|
|
24
|
|
|
25
|
/* Class constructor */
|
|
26
|
|
|
27
|
public function __construct() {
|
hpdl
|
1854
|
28
|
global $osC_Language;
|
hpdl
|
1852
|
29
|
|
|
30
|
$this->_page_title = $osC_Language->get('heading_title');
|
|
31
|
|
|
32
|
if ( !isset($_GET['gID']) || (isset($_GET['gID']) && !is_numeric($_GET['gID'])) ) {
|
|
33
|
$_GET['gID'] = 1;
|
|
34
|
}
|
|
35
|
}
|
|
36
|
}
|
|
37
|
?>
|