Quick Search:

View

Revision:

Diff

Diff from 345 to:

Annotations

Annotate by Age | Author | Mixed | None
/fisheye/browse/osCommerce/branches/hpdl/oscommerce/includes/modules/content/recently_visited.php

Annotated File View

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
296
7   Copyright (c) 2005 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
331
13     var $_title = 'Recently Visited',
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
290
22     }
hpdl
228
23
hpdl
331
24     function initialize() {
25       $this->_content = 'dummy text';
hpdl
290
26     }
hpdl
298
27   }
hpdl
297
28 ?>