Re: What is different in Moodle 2.3.1+
Roman Gelembjuk mukaan. Thanks Patrick. This was really the problem with permissions on linux. But i still see something different with Moddle 2.3.2 and 2.3.3. I get error Fatal error: Class...
View ArticleRe: Mass showing and hiding of courses within a category
nikhil pednekar mukaan. Thanks Rosario,I will search for both u mentioned. Have you shown show/hide functionality in ur code???First need to search.If any problem will let you know.Thanks again.
View ArticleRe: How to return coursemodule id?
Davo Smith mukaan. When you write:require_once('config.php');Is the main 'config.php' file in the same folder as your PHP script, or do you actually mean to write:require_once('../../config.php');(as...
View ArticleQuestion about little priject
pepe juanito perez mukaan. Hello! We are 3 friends, and we just started to use moodle in a subject in our University . We have to develop a little project with moodle and the details of this project...
View ArticleRe: Java Applet storing instructions in Moodle? Is this possible?
sara lopez mukaan. Hi DouglasHave you found anything about this? I'd like to program my applets to send the student score (or just whether completed) back to Moodle too.
View ArticleRe: Java Applet storing instructions in Moodle? Is this possible?
Matt Bury mukaan. Hi Sarah,Doing this with Java requires JRE to be installed on users' computers. In my experience, Flash is more frequently installed and enabled than JRE (Disclosure: I'm a Flash...
View ArticleRe: Setting hidden fields in form (2.3.2)
Richard Crawford mukaan. Diane,I doubt that my situation will be of value to you. I actually have the form defined in a separate file, rather than in core Moodle code (though I do have the include...
View ArticleHow to pass parameter in YUI function
Azmat Ullah mukaan. I want to pass parameter with javascript YUI function.view.php//Function Call $PAGE->requires->js_init_call('M.block_competency.init');module.js// JavaScript...
View ArticleRe: How to pass parameter in YUI function
Davo Smith mukaan. $params = array('first', 'second', 'third');$PAGE->requires->js_init_call('M.block_competency.init', $params);M.block_competency.init = function(Y, param1, param2, param3)...
View ArticleRe: mp3 Autoplay
Andrew Park mukaan. hiDid you ever receive an answer for this, as I also would like to autoplay a sound file based on an asnwer to a question. Is it possible?
View ArticleBest way to test the UI?
by Jean Michel. Hello, I recently have configured the unit tests engine with Pear, and I wonder how I could test the User Interface. I know it there exists tools like Selene but I don't know what is...
View ArticleRe: Best way to test the UI?
by Tim Hunt. Moodle HQ are currently working on trying to use Behat to test Moodle. See https://github.com/dmonllao/behat-moodle/blob/master/README.md. It is currently only a work-in-progress.
View ArticleRe: Best way to test the UI?
by Jean Michel. Wow, I love that! it's like cucumber for Rails I will try to test it this weekend, I think using tools like this is a very good idea. Thanks Tim. Regards!
View ArticleRe: Best way to test the UI?
by Tim Hunt. Don't thank me.You need to thank two people from Moodle HQ: Tim Barker who kicked this off, and David Monllao who is working on making it work reliably.
View ArticleHow to check if a localized string exist
by Federico Ghigini. Hi,is there a function like get_string to check if a localization string is available in the localization file?In lib/moodlelib.php i have found this function:public function...
View ArticleRe: Best way to test the UI?
by Jean Michel. OK Tim. Congratulations for Tim Barke, David Monllao and all the people of Moodle HQ contributing in this project. This type of improvements can make Moodle grow and be improved a...
View ArticleRe: How to check if a localized string exist
by Joseph Rézeau. Hi Frederico,I don't understand what you are wanting to do.What if the string does not exist? What do you put in your else { } statement?Joseph
View ArticleOn-place edit of labels
by pepe juanito perez. Hello! We are 3 friends, and we just started to use moodle in a subject in our University . We have to develop a little project with moodle and the details of this project are:...
View ArticlePlugin adding to courses part of navigation
by Howard Miller. Is it possible - probably in a local plugin - to add additional links into the courses part of the navigation? I'd like to be able to link to courses external to the Moodle site (via...
View ArticleRe: Plugin adding to courses part of navigation
by Alex Walker. There's a renderer called block_navigation that's used to build the navigation tree, using $this->page->navigation. This is built by calling the global_navigation function.I've...
View Article