Daily Archives: August 24, 2008
Allowing Sloodle Controller to Work even when Invisible
Here’s what to do to make the Controller work even when invisible:
In the Sloodle module folder, open up “lib/controller.php”, and look for a member function called “is_available()” (should be around line 223). Normally, it should contain the following line:
return (bool)($this->cm->visible);
Change that line to just this:
return true;
