Note: You are currently viewing documentation for Moodle 1.9. Up-to-date documentation for the latest stable version is available here: Frank Ralf/NanoGong/1.9.

User:Frank Ralf/NanoGong/1.9: Difference between revisions

From MoodleDocs
Line 23: Line 23:


== $cm ==
== $cm ==
  The field $cm->modname should be set if you call build_navigation with a $cm parameter. If you get $cm  using ''get_coursemodule_from_instance'' or '''get_coursemodule_from_id''', this will be done automatically.
  The field $cm->modname should be set if you call build_navigation with a $cm parameter.  
If you get $cm  using ''get_coursemodule_from_instance'' or '''get_coursemodule_from_id''',  
this will be done automatically.
   
   
  * line 3894 of lib\weblib.php: call to debugging()
  * line 3894 of lib\weblib.php: call to debugging()
  * line 59 of mod\nanogong\view.php: call to build_navigation()
  * line 59 of mod\nanogong\view.php: call to build_navigation()


== See also: ==
== See also: ==
...
...

Revision as of 17:10, 28 March 2011

NanoGong for Moodle 1.9 also needs some updating.

build_navigation()

Navigation needs to be updated to use build_navigation()


print_header() was sent a string as 3rd (-> NanoGongs -> NanoGong) parameter. 
This is deprecated in favour of an array built by build_navigation(). Please upgrade your code.

* line 2539 of lib\weblib.php: call to debugging()
* line 61 of mod\nanogong\view.php: call to print_header()
* line 3759 of lib\weblib.php: call to debugging()
* line 37 of theme\standard\header.html: call to print_navigation()
* line 2765 of lib\weblib.php: call to include()
* line 61 of mod\nanogong\view.php: call to print_header()

See Development:lib/weblib.php#function_build_navigation

Moodle 2.0

$cm

The field $cm->modname should be set if you call build_navigation with a $cm parameter. 
If you get $cm  using get_coursemodule_from_instance or get_coursemodule_from_id, 
this will be done automatically.

* line 3894 of lib\weblib.php: call to debugging()
* line 59 of mod\nanogong\view.php: call to build_navigation()

See also:

...