--- a/busui/owa/modules/base/entities/host.php +++ b/busui/owa/modules/base/entities/host.php @@ -1,1 +1,62 @@ - + + * @copyright Copyright © 2006 Peter Adams + * @license http://www.gnu.org/copyleft/gpl.html GPL v2.0 + * @category owa + * @package owa + * @version $Revision$ + * @since owa 1.0.0 + */ + +class owa_host extends owa_entity { + + function __construct() { + + $this->setTableName('host'); + $this->setCachable(); + // properties + $this->properties['id'] = new owa_dbColumn; + $this->properties['id']->setDataType(OWA_DTD_BIGINT); + $this->properties['id']->setPrimaryKey(); + $this->properties['ip_address'] = new owa_dbColumn; + $this->properties['ip_address']->setDataType(OWA_DTD_VARCHAR255); + $this->properties['host'] = new owa_dbColumn; + $this->properties['host']->setDataType(OWA_DTD_VARCHAR255); + $this->properties['full_host'] = new owa_dbColumn; + $this->properties['full_host']->setDataType(OWA_DTD_VARCHAR255); + $this->properties['city'] = new owa_dbColumn; + $this->properties['city']->setDataType(OWA_DTD_VARCHAR255); + $this->properties['country'] = new owa_dbColumn; + $this->properties['country']->setDataType(OWA_DTD_VARCHAR255); + $this->properties['latitude'] = new owa_dbColumn; + $this->properties['latitude']->setDataType(OWA_DTD_VARCHAR255); + $this->properties['longitude'] = new owa_dbColumn; + $this->properties['longitude']->setDataType(OWA_DTD_VARCHAR255); + } + + +} + + + +?>