????
| Current Path : /home2/morganrand/public_html/ecommerce/os/catalog/admin/includes/classes/ |
| Current File : /home2/morganrand/public_html/ecommerce/os/catalog/admin/includes/classes/object_info.php |
<?php
/*
$Id: object_info.php,v 1.1 2004/08/25 22:55:43 akhan Exp $
osCommerce, Open Source E-Commerce Solutions
http://www.oscommerce.com
Copyright (c) 2003 osCommerce
Released under the GNU General Public License
*/
class objectInfo {
// class constructor
function objectInfo($object_array) {
reset($object_array);
while (list($key, $value) = each($object_array)) {
$this->$key = tep_db_prepare_input($value);
}
}
}
?>