[Mapbender-commits] r4047 - branches/mifan_dev/mapbender/http/classes

svn_mapbender at osgeo.org svn_mapbender at osgeo.org
Thu Jun 18 23:56:26 EDT 2009


Author: mifan
Date: 2009-06-18 23:56:26 -0400 (Thu, 18 Jun 2009)
New Revision: 4047

Added:
   branches/mifan_dev/mapbender/http/classes/class_csw.php
Log:
class to hold main Catalog element from DB and to DB

Added: branches/mifan_dev/mapbender/http/classes/class_csw.php
===================================================================
--- branches/mifan_dev/mapbender/http/classes/class_csw.php	                        (rev 0)
+++ branches/mifan_dev/mapbender/http/classes/class_csw.php	2009-06-19 03:56:26 UTC (rev 4047)
@@ -0,0 +1,55 @@
+<?php
+# $Id$
+# http://www.mapbender.org/index.php/class_wms
+# Copyright (C) 2002 CCGIS 
+#
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2, or (at your option)
+# any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+
+require_once(dirname(__FILE__)."/../../core/globalSettings.php");
+require_once(dirname(__FILE__)."/class_connector.php");
+require_once(dirname(__FILE__)."/class_user.php");
+require_once(dirname(__FILE__)."/class_administration.php");
+
+/**
+ * CSW main class
+ * @author nazgul
+ *
+ */
+class csw{
+	var $title;
+	var $abstract;
+	
+	var $fees;
+	var $accessconstraints;
+	var $contactperson;
+	var $contactposition;
+	var $contactorganization;
+	var $address;
+	var $city;
+	var $stateorprovince;
+	var $postcode;
+	var $country;
+	var $contactvoicetelephone;
+	var $contactfacsimiletelephone;
+	var $contactelectronicmailaddress;
+	
+	var $catowner;
+	var $cattimestamp;
+	
+	function csw(){
+		
+	}
+}
+?>
\ No newline at end of file



More information about the Mapbender_commits mailing list