error/admin/sectionerror: Różnice pomiędzy wersjami

Z MoodleDocs
Skocz do:nawigacja, szukaj
Tim Hunt (dyskusja | edycje)
Nie podano opisu zmian
m category
 
Linia 5: Linia 5:


  $ADMIN->add("''parent_section''", new admin_externalpage('foo', "Foo Admin Component", "$CFG->wwwroot/$CFG->admin/foo.php"));
  $ADMIN->add("''parent_section''", new admin_externalpage('foo', "Foo Admin Component", "$CFG->wwwroot/$CFG->admin/foo.php"));
[[Category:Error|Admin]]

Aktualna wersja na dzień 11:27, 2 sty 2009

The error means that a new admin page 'foo' (the one you're developing right now) is not registered with the Admin menu. It is triggered with the call:

admin_externalpage_setup('foo');

The solution is to add a reference to the page in the appropriate file in admin/settings/XXX.php. Something like:

$ADMIN->add("parent_section", new admin_externalpage('foo', "Foo Admin Component", "$CFG->wwwroot/$CFG->admin/foo.php"));