Files
Kenneth Reitz 29b20bfff0 Import
2011-01-15 22:35:01 -05:00

23 lines
376 B
PHP

<?php
/**
* Spec class
* Catalog product spec table
*
* @author Jonathan Davis
* @version 1.0
* @copyright Ingenesis Limited, 26 July, 2008
* @package shopp
**/
class Spec extends DatabaseObject {
static $table = "spec";
function Spec ($id=false) {
$this->init(self::$table);
if ($this->load($id)) return true;
else return false;
}
} // end Spec class
?>