Symposium Widgets

You have a useful widgets available for sharing information of Symposium events:

Map of buildings

Provides of a directory of buildings of your organization. You need to add the directory information in the Administration Panel of your Symposium instance.

By Example, we can show the University of Murcia directory using the code:


<script>
	// user-defined variables :)
	var MY_LANGUAGE = 'es';
	// system: do not touch this!
	var _SERVERURI = "http://eventos.um.es/";
	var _API_KEY = 'AIzaSyBtyyPJ4eyMuelQlNFpCQkKHlice9pMFV0';
	var _DIRECTORY = '2';
	var _BV_NAME = 'Universidad de Murcia';
	// if you want to listen when user click in directory place
	// $(window).bind("widget_map:select_place_directory", function(e, data){ callback code });
</script>
<script src="http://eventos.um.es/js/api/widget_map.js"></script>
<script>
	/*
	 * Example usage (default values):
	 *
	 * SYM.WIDGET.show_map({
	 * 	width: 600,
	 * 	height: 200,
	 * 		features: {
	 * 			directory: true
	 * 	}
	 *  //and optional default location
	 *  location:{
	 *   lat: "38.024418",
	 *   lng: "-1.172994"
	 *  }
	 * });
	 */
	SYM.WIDGET.show_map({});
</script>

With this result http://eventos.um.es/api/widget_map

Maps of locations of an event

Insert the locations of an event. You can share the locations map in any website.

<iframe src="http://demopremium.symposium.events/api/widget_map_event/<event_id>"></iframe>

Where <event_id> is the event id code from the url of the event.

Share activity of a user

Share the last attendances and event creation from a user.

<iframe src="http://demopremium.symposium.events/user_events/my_last_activity/<user_email>/<limit>"></iframe>

Where <user_email> is the email of a registered user and <limit> is a number of elements to display.

Share events created of a user

Share the last events created by a user.

<iframe src="http://demopremium.symposium.events/user_events/my_last_events/<user_email>/<limit>"></iframe>

Where <user_email> is the email of a registered user and <limit> is a number of elements to display.

Share attendances of a user

Share the last attendances from a user.

<iframe src="http://demopremium.symposium.events/user_events/my_last_attendings/<user_email>/<limit>"></iframe>

Where <user_email> is the email of a registered user and <limit> is a number of elements to display.

Navigation