Re: How to translate the custom menu items between languages
by Marcus Hoberg. Actually I think this is two different tools: the multilanguage filter in our moodle 2.3.1 has no impact on the custom user items. The multi language filter also has a different...
View ArticleRe: New to moodle
by mkariti mkariti. External functions API http://docs.moodle.org/dev/External_functions_API Web services API http://docs.moodle.org/dev/Web_services_API Cheers
View ArticleAdding a new Site Administration Menu Item
by Andrew Normore. Hey all, Trying to add a new link in: Site Administration -> Courses -> New Link Any one point me in the right direction?
View ArticleRe: Adding a new Site Administration Menu Item
by Andrew Normore. Would this be the correct idea for Moodle 2.2? $settingnode = $PAGE->settingsnav->add(get_string('setting'), new moodle_url('/a/link/if/you/want/one.php'),...
View ArticleRe: Adding a new Site Administration Menu Item
by Andrew Normore. More Info:I'm extending some features of the /course plugin. I'm just trying to get a user to the appropriate place. Here's some more code that I found, what exactly does this do?...
View ArticleRe: renderer for My Moodle page
by Hubert Chathi. Yes. The default course overview area is displayed by a block named, coincidentally, "Course Overview." So you can customize that area by either creating your own block, or...
View ArticleRe: créer des liens au sein d'un bloc
by hejer ben brahim. En effet je me suis renseigné sur le bloc HTML et je pense que le bloc que j'ai créé est un bloc HTML danslequel je veux juste ajouter une liste de liens dont chacun menera vers...
View ArticleRe: New default icon set for Moodle 2.4 roadmap
by Stuart Lamour. lovely font icon set - http://gregoryloucas.github.com/Font-Awesome-More/
View ArticleMoodle 2.x database query
by Andrew Normore. Coming from MODx I was able to do this: $result = $modx->query('SELECT * FROM table');foreach($result as $row){ echo $row['id'];} How do I accomplish this within Moodle? Thanks!
View ArticleRe: Moodle 2.x database query
by Andrew Normore. Found the solution. Sharing. $results = $DB->get_records('extrafields_type');foreach($results as $row){ echo $row['id'];}
View ArticleRe: Moodle 2.x database query
by Hubert Chathi. More functions that you can use for querying the database: http://docs.moodle.org/dev/Data_manipulation_API Also, make sure to read the section on recordsets if you need to deal...
View ArticleRe: Turning Point Software & RFID Clickers
by Lee Eyerman. I upgraded from 1.9.9 to 2.2. Everything went great except I cannot RESET any courses because the database says the table "turningtech" is missing. I looked in my old 1.9.9 DB and...
View ArticleGeneric Search for moodle?
by Alaa Salih. I need as site wide search for moodle like a search engine for moodle. in moodel 2.0 there was such thing. but I workig with moodle 2.3 is there a search plugin for moodle 2.3. I have...
View ArticleRe: New default icon set for Moodle 2.4 roadmap
by Thomas Hanley. I agree also with Stuart and Darcy that an svg/font icon solution would be best. Font-Awesome looks good.
View ArticleRe: Scrollable blocks
by Anju Menon. Sir, Could you please tell me where am i supposed to put in the said code for making the quiz navigation block to float. Which file needs to be changes. Regards, Anju
View ArticleMyMoodle showing posts to grouped ForumNGs
by Charlie MacFadyen. We just switched over to ForumNG (3.7, Moodle 1.97). We use groupings to have separate forums for our faculty departments within a larger faculty "course." So, for example, an...
View ArticleRe: Odp: Re: Odp: Re: Moodle 2.0 - how to create file (from string)
by Nick Boss. Here's how to create a file whose contents will be a text string. This is the equivalent of the PHP function file_put_contents. $fs = get_file_storage(); // Prepare file record...
View ArticleAuto assign block
by Muff Stuff. Hello, i am wondering if its possible to create a function that adds a certain block to a course, in a specific position.I looked around and found nothing. Thank you in advance.
View ArticleMoodle 2.0 Screen Layout
by Rudi Peseckas. The addition of the quiz navigation and flag questions block in Moodle 2.0 is creating issues with the way moodle courses display on screens with lower resolutions as well as certain...
View ArticleModx -> Moodle single sign on using curl [Now with legible code!!]
by Sean Kimball. I'm trying to write a SSO plugin for Modx so that users logging into modx also get a Moodle session, I think the easiest way to do that would be to use curl, retrieve the session...
View Article