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

User:Frank Ralf/NanoGong: Difference between revisions

From MoodleDocs
Line 37: Line 37:


* see [[Development:File API]] and [[Development:Using the File API]]
* see [[Development:File API]] and [[Development:Using the File API]]
* [[Development:File_API#File_serving]]
* [[Development:Using_the_file_API#Serving_files_to_users]]
* [[Development:Using_the_file_API#Serving_files_to_users]]
* [[Development:File_storage_conversion_Quiz_and_Questions#Serving_files]]


== See also ==
== See also ==

Revision as of 08:17, 25 March 2011

Java settings

(Not sure if this is relevant, but better to keep in mind ...)

Filter

General information on filters in Moodle 2.0 can be found at Filters 2.0 and for developers at Development:Filters 2.0.

Language folder

Add language folder: \lang\en\filter_nanogong.php with the following content:

$string['filtername'] = 'NanoGong';

Filter function

The filter function is wrapped inside a class:

class filter_nanogong extends moodle_text_filter {

   function filter($text, array $options = array()){
   ...
   }

}

Note: The callback function has to be outside this class definition!

Preventing caching

$CFG->currenttextiscacheable = false;

is deprecated, outcommented

File API

TODO

See also

Migrating to Moodle 2.0
Forums
NanoGong documentation