hpdl
|
1855
|
1
|
<?php
|
|
2
|
/*
|
|
3
|
$Id: currencies.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/currencies/classes/currencies.php');
|
|
16
|
|
|
17
|
class osC_Application_Currencies extends osC_Template_Admin {
|
|
18
|
|
|
19
|
/* Protected variables */
|
|
20
|
|
|
21
|
protected $_module = 'currencies',
|
|
22
|
$_page_title,
|
|
23
|
$_page_contents = 'main.php';
|
|
24
|
|
|
25
|
/* Class constructor */
|
|
26
|
|
|
27
|
function __construct() {
|
|
28
|
global $osC_Language;
|
|
29
|
|
|
30
|
$this->_page_title = $osC_Language->get('heading_title');
|
|
31
|
}
|
|
32
|
}
|
|
33
|
?>
|