Quick Search:

View

Revision:

Diff

Diff from 151 to:

Annotations

Annotate by Age | Author | Mixed | None
/fisheye/browse/osCommerce/branches/frank/osc_trunk/admin/includes/classes/object_info.php

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 ?>