GeoGebra
Maintained by
Sara Arjona, Pau Ferrer, Toni Ginard, Projectes TAC Dep. Educació Catalunya
This module allows the incorporation of GeoGebra activities in Moodle and save its state.
Comments
Comments are no longer open for new posts. Existing comments remain available to read.
Best regards.
Verónica.
Sorry for the delay answering.
I've been testing current version with Moodle 3.3 and 3.4 and all the main features are working as expected
Kind regards from Barcelona,
Sara
Thanks
Thanks.
Me pongo en contacto con ustedes ya que en la plataforma Moodle que administro, el profesorado ha querido instalar para usar el módulo GeoGebra para integrarlo en los contenidos educativos de sus cursos para sus alumnos. El feedback es muy bueno y estan encantados con las posibilidades de este módulo, pero genera un error a la hora de calificar una actividad, dando el siguiente mensaje:
Fatal error: Call to undefined method theme_bootstrapbase_core_renderer::notify() in /.../mod/geogebra/locallib.php on line 179
La plataforma Moodle que administro se encuentra en versión 3.1.1, y estamos utilizando como tema corporativo el tema "More" que se adapta a la customización a nuestro antojo de la plataforma.
Saludos cordiales y muchas gracias por adelantado.
in 2.x was one, but it do not work in 3.1
est-ce normal ?
Est-il prévu une mise à jour du module pour qu'il prenne en compte les figures en 3D ?
Traduction Google:
No puedo usar las cifras de GeoGebra en 3D. No se muestra la ventana 3D
es normal ?
¿Está previsto un módulo de actualización para que tome en cuenta las cifras en 3D?
How can I do to embeb a 3d view ?
Hemos instalado la versión v0.2.7 en Moodle 2.7. Todo parece funcionar bien excepto la calificación manual. Si se pasa una calificacion automática con la variable grade la actividad se califica, pero si se intenta una calificación manual, no se efectúa (la casilla de autocalificación está desmarcada) y la actividad aparece siempre como sin calificar. ¿Puede ser un error del plugin o es un problema de nuestra configuracion?
Gracias por tu informe, thanks for your report! As you can see we're working on the next version and we will have a look at your provided patch. We have opened an issue on github with the information provided (https://github.com/projectestac/moodle-mod_geogebra/issues/25).
Cheers,
Sorry for the delay. We're working on the next version that will support Moodle 2.7 and 2.8. You can find the latest code working on these version on github.
Cheers,
locallib.php
if ($viewmode=='submit' && (empty($attempt) || !$attempt->finished) ){
echo '';
echo '';
}
Cambia por:
if (empty($attempt) || !$attempt->finished ){
echo '';
echo '';
}
Gracias por este excelente plugin !
----------------
Dear Sara, Pau y and Jaume: Moodle 2.6 admins can´t see the submit and save buttons and this would be a little confusing for them (all moodle activities have this options).
To solve this I just change a little piece of code (that you already commented related with this topic) and it´s working now:
locallib.php
if ($viewmode=='submit' && (empty($attempt) || !$attempt->finished) ){
echo '< i nput t ype="s ubmit" v alue="' . get_string('savewithoutsubmitting', 'geogebra') . '" / >';
echo '< i nput t ype="s ubmit" o nclick = "this.form.f.value = 1;" value="' . get_string('submitandfinish', 'geogebra') . '" / > ';
}
Changes for:
if (empty($attempt) || !$attempt->finished ){
echo '< i nput t ype="s ubmit" v alue="' . get_string('savewithoutsubmitting', 'geogebra') . '" / >';
echo '< i nput t ype="s ubmit" o nclick = "this.form.f.value = 1;" value="' . get_string('submitandfinish', 'geogebra') . '" / > ';
}
Best regards
Edu Labs
locallib.php
if ($viewmode=='submit' && (empty($attempt) || !$attempt->finished) ){
echo '';
echo '';
}
Cambia por:
if (empty($attempt) || !$attempt->finished ){
echo '';
echo '';
}
Gracias por este excelente plugin !
----------------
Dear Sara, Pau y and Jaume: Moodle 2.6 admins can´t see the submit and save buttons and this would be a little confusing for them (all moodle activities have this options).
To solve this I just change a little piece of code (that you already commented related with this topic) and it´s working now:
locallib.php
if ($viewmode=='submit' && (empty($attempt) || !$attempt->finished) ){
echo '';
echo '';
}
Changes for:
if (empty($attempt) || !$attempt->finished ){
echo '';
echo '';
}
Best regards
Edu Labs