FishEye
Search
Changelog
Browse
Help
osCommerce
:/
branches
/
frank
/
osc-tickets
/
admin
/
includes
/
classes
/
object_info.php
revision
1165
Quick Search:
View
Revision:
1165
151
43
5
1
Diff
Diff from 1165 to:
1165
151
43
5
1
Annotations
Annotate by Age |
Author
|
Mixed
|
None
Annotated File View
hpdl
1
1
<?php
2
/*
mattice
151
3
$Id: object_info.php 151 2005-08-02 14:33:25Z mattice $
hpdl
1
4
5
osCommerce, Open Source E-Commerce Solutions
6
http://www.oscommerce.com
7
8
Copyright (c) 2004 osCommerce
9
10
Released under the GNU General Public License
11
*/
12
13
class objectInfo {
14
function objectInfo($object_array) {
15
foreach ($object_array as $key => $value) {
16
$this->$key = $value;
17
}
18
}
19
}
20
?>