Quick Search:

View

Revision:

Diff

Diff from 1852 to:

Annotations

Annotate by Age | Author | Mixed | None
/fisheye/browse/osCommerce/branches/hpdl/oscommerce/admin/includes/applications/configuration/configuration.php

Annotated File View

hpdl
1852
1 <?php
2 /*
3   $Id: configuration.php 1852 2009-02-28 03:24:48Z 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() {
28       global $osC_Language, $osC_MessageStack;
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 ?>