How to return coursemodule id?

Re: How to return coursemodule id?

by Guilherme Radiske -
Number of replies: 1

mod/page/view.php?id=137

 

That's how my url appears in the browser.


Tried almost every single exemple about $cmid but with no success. The only thing i can return with success on my test.php is the $COURSE->id that i've posted above.
 =/

I could post any exemple here that i've tested, but it is too much to see... tried again after your post to do this

 

<?php
require_once('config.php');
require_once('lib.php');
require_once($CFG->dirroot.'/mod/forum/lib.php');
require_once($CFG->libdir.'/completionlib.php');

$cmid = required_param('id', PARAM_INT);
echo $cmid;
?>

Returns nothing.

In reply to Guilherme Radiske

Re: How to return coursemodule id?

by Davo Smith -
Picture of Core developers Picture of Particularly helpful Moodlers Picture of Peer reviewers Picture of Plugin developers

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 per existing examples in Moodle core).

You should also make sure you have debugging set to 'developer', if you haven't already done so (although, that won't help in this case, as you have to load the 'config.php' file correctly, before the debugging settings are initialised).