--- a/busui/owa/owa_location.php +++ b/busui/owa/owa_location.php @@ -1,1 +1,80 @@ - + + * @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_location { + + /** + * City + * + * @var string + */ + var $city; + + /** + * Country + * + * @var string + */ + var $country; + + /** + * Latitude coordinates + * + * @var string + */ + var $latitude; + + /** + * Longitude coordinates + * + * @var string + */ + var $longitude; + + /** + * Location of concrete class plugins + * + * @var unknown_type + */ + var $plugin_dir; + + /** + * Constructor + * + * @return owa_location + */ + function __construct() { + + } +} + +?>