hpdl
|
228
|
1
|
<?php
|
|
2
|
/*
|
hpdl
|
331
|
3
|
$Id: $
|
hpdl
|
228
|
4
|
osCommerce, Open Source E-Commerce Solutions
|
|
5
|
http://www.oscommerce.com
|
|
6
|
|
hpdl
|
396
|
7
|
Copyright (c) 2006 osCommerce
|
hpdl
|
228
|
8
|
|
|
9
|
Released under the GNU General Public License
|
|
10
|
*/
|
|
11
|
|
hpdl
|
333
|
12
|
class osC_Content_recently_visited extends osC_Modules {
|
hpdl
|
396
|
13
|
var $_title,
|
hpdl
|
331
|
14
|
$_code = 'recently_visited',
|
|
15
|
$_author_name = 'osCommerce',
|
hpdl
|
333
|
16
|
$_author_www = 'http://www.oscommerce.com',
|
|
17
|
$_group = 'content';
|
hpdl
|
228
|
18
|
|
|
19
|
/* Class constructor */
|
|
20
|
|
hpdl
|
331
|
21
|
function osC_Content_recently_visited() {
|
hpdl
|
396
|
22
|
global $osC_Language;
|
|
23
|
|
|
24
|
$this->_title = $osC_Language->get('recently_visited_title');
|
hpdl
|
290
|
25
|
}
|
hpdl
|
228
|
26
|
|
hpdl
|
331
|
27
|
function initialize() {
|
|
28
|
$this->_content = 'dummy text';
|
hpdl
|
290
|
29
|
}
|
hpdl
|
298
|
30
|
}
|
hpdl
|
297
|
31
|
?>
|