Developer FAQ: Różnice pomiędzy wersjami

Z MoodleDocs
Skocz do:nawigacja, szukaj
Nie podano opisu zmian
 
Nie podano opisu zmian
Linia 12: Linia 12:


Always use the "datalib" functions, such as insert_record() or get_record(). Look at [http://moodle.sourceforge.net/dhawes-phpdoc/moodlecore/_lib_datalib_php.html the documentation for datalib.php] for more functions and details of use.
Always use the "datalib" functions, such as insert_record() or get_record(). Look at [http://moodle.sourceforge.net/dhawes-phpdoc/moodlecore/_lib_datalib_php.html the documentation for datalib.php] for more functions and details of use.
===How do I get/set configuration settings?===
...

Wersja z 11:03, 5 kwi 2006

How to get/set information when writing new Moodle code

How do I find out the currently-logged-on user?

The global object $USER, which contains the numeric $USER->id among other things.

How do I find out the current course?

...

How do I insert/retrieve records in the database, without creating my own database connections?

Always use the "datalib" functions, such as insert_record() or get_record(). Look at the documentation for datalib.php for more functions and details of use.

How do I get/set configuration settings?

...