hpdl
|
1016
|
1
|
<?php
|
|
2
|
/*
|
|
3
|
$Id: administrators.php 1854 2009-02-28 03:44:39Z hpdl $
|
|
4
|
|
|
5
|
osCommerce, Open Source E-Commerce Solutions
|
|
6
|
http://www.oscommerce.com
|
|
7
|
|
hpdl
|
1851
|
8
|
Copyright (c) 2009 osCommerce
|
hpdl
|
1016
|
9
|
|
hpdl
|
1497
|
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.
|
hpdl
|
1016
|
13
|
*/
|
|
14
|
|
hpdl
|
1851
|
15
|
require('includes/applications/administrators/classes/administrators.php');
|
hpdl
|
1200
|
16
|
|
hpdl
|
1851
|
17
|
class osC_Application_Administrators extends osC_Template_Admin {
|
hpdl
|
1016
|
18
|
|
hpdl
|
1851
|
19
|
/* Protected variables */
|
hpdl
|
1016
|
20
|
|
hpdl
|
1851
|
21
|
protected $_module = 'administrators',
|
|
22
|
$_page_title,
|
|
23
|
$_page_contents = 'main.php';
|
hpdl
|
1016
|
24
|
|
|
25
|
/* Class constructor */
|
|
26
|
|
hpdl
|
1851
|
27
|
public function __construct() {
|
hpdl
|
1854
|
28
|
global $osC_Language;
|
hpdl
|
1200
|
29
|
|
hpdl
|
1446
|
30
|
$this->_page_title = $osC_Language->get('heading_title');
|
hpdl
|
1125
|
31
|
}
|
hpdl
|
1016
|
32
|
}
|
|
33
|
?>
|