FishEye
Search
Changelog
Browse
Help
osCommerce
:/
branches
/
frank
/
tinymce
/
admin
/
includes
/
classes
/
object_info.php
revision
1
Quick Search:
View
Revision:
1161
151
43
5
1
Diff
Diff from 1 to:
1161
151
43
5
1
Annotations
Annotate by Age |
Author
|
Mixed
|
None
Annotated File View
hpdl
1
1
<?php
2
/*
3
$Id: object_info.php,v 1.7 2004/07/22 22:17:08 hpdl Exp $
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
?>