1<?php 2/** 3 * Default settings for the geogebrembed plugin 4 * 5 * @author Philipp Imhof <dev@imhof.cc> 6 */ 7 8// configuration options MUST start with config_ 9$conf['config_url'] = 'https://cdn.geogebra.org/apps/deployggb.js'; 10$conf['config_threshold'] = 12; 11 12// default parameters for GeoGebra applets 13// these MUST start with default_ and then use the exact spelling of the 14// parameter as described on GeoGebra's reference page 15$conf['default_width'] = 800; 16$conf['default_height'] = 600; 17$conf['default_appName'] = 'classic'; 18$conf['default_borderColor'] = '#808080'; 19$conf['default_enableRightClick'] = 1; 20$conf['default_enableLabelDrags'] = 1; 21$conf['default_enableShiftDragZoom'] = 1; 22$conf['default_showZoomButtons'] = 0; 23$conf['default_showMenuBar'] = 0; 24$conf['default_showToolBar'] = 0; 25$conf['default_showAlgebraInput'] = 0; 26$conf['default_showResetIcon'] = 0; 27$conf['default_playButton'] = 0; 28$conf['default_showAnimationButton'] = 1; 29$conf['default_showFullscreenButton'] = 0; 30 31 32 33