[Mapbender-commits] r5239 - trunk/mapbender/http/plugins

svn_mapbender at osgeo.org svn_mapbender at osgeo.org
Wed Dec 23 05:36:35 EST 2009


Author: christoph
Date: 2009-12-23 05:36:35 -0500 (Wed, 23 Dec 2009)
New Revision: 5239

Added:
   trunk/mapbender/http/plugins/jq_ui_effects.php
Log:


Added: trunk/mapbender/http/plugins/jq_ui_effects.php
===================================================================
--- trunk/mapbender/http/plugins/jq_ui_effects.php	                        (rev 0)
+++ trunk/mapbender/http/plugins/jq_ui_effects.php	2009-12-23 10:36:35 UTC (rev 5239)
@@ -0,0 +1,91 @@
+/**
+ * Package: jq_ui_effects
+ *
+ * Description:
+ * A collection of jQuery UI effects
+ * 
+ * Files:
+ *  - http/plugins/jq_ui_effects.js
+ *  - http/extensions/jquery-ui-1.7.2.custom/development-bundle/ui/min.effects.*
+ *
+ * SQL:
+ * > <SQL for element> 
+ * > 
+ * > <SQL for element var> 
+ *
+ * Help:
+ * http://www.mapbender.org/<wiki site name>
+ *
+ * Maintainer:
+ * http://www.mapbender.org/User:<user>
+ * 
+ * Parameters:
+ * <normal element var name>      - <type and description>
+ * <optional element var name>    - *[optional]* <type and description>
+ * <deprecated element var name>  - *[deprecated]* <type and description>
+ *
+ * License:
+ * Copyright (c) 2009, Open Source Geospatial Foundation
+ * This program is dual licensed under the GNU General Public License 
+ * and Simplified BSD license.  
+ * http://svn.osgeo.org/mapbender/trunk/mapbender/license/license.txt
+ */
+console.log("ooo");
+<?php
+	$uiPath = dirname(__FILE__) . '/' . 
+		"../extensions/jquery-ui-1.7.2.custom/development-bundle/ui/";
+
+	include '../include/dyn_php.php';
+	
+	echo "console.log('transfer');";
+	
+	if ($blind) {
+		include $uiPath . "min.effects.blind.js";
+	}
+	
+	if ($bounce) {
+		include $uiPath . "min.effects.bounce.js";
+	}
+	
+	if ($clip) {
+		include $uiPath . "min.effects.clip.js";
+	}
+	
+	if ($drop) {
+		include $uiPath . "min.effects.drop.js";
+	}
+	
+	if ($explode) {
+		include $uiPath . "min.effects.explode.js";
+	}
+	
+	if ($fold) {
+		include $uiPath . "min.effects.fold.js";
+	}
+	
+	if ($highlight) {
+		include $uiPath . "min.effects.highlight.js";
+	}
+	
+	if ($pulsate) {
+		include $uiPath . "min.effects.pulsate.js";
+	}
+	
+	if ($scale) {
+		include $uiPath . "min.effects.scale.js";
+	}
+	
+	if ($shake) {
+		include $uiPath . "min.effects.shake.js";
+	}
+	
+	if ($slide) {
+		include $uiPath . "min.effects.slide.js";
+	}
+	
+	if ($transfer) {
+		include $uiPath . "min.effects.transfer.js";
+		echo "console.log('transfer');";
+	}
+	
+?>
\ No newline at end of file



More information about the Mapbender_commits mailing list