Quick Search:

View

Revision:

Diff

Diff from 5 to:

Annotations

Annotate by Age | Author | Mixed | None
/fisheye/browse/osCommerce/trunk/oscommerce/admin/includes/classes/object_info.php

Annotated File View

hpdl
1
1 <?php
2 /*
3   $Id: object_info.php 5 2005-01-31 01:40:15Z hpdl $
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 ?>