Note: You are currently viewing documentation for Moodle 3.1. 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 5: Line 5:


=== Language folder ===
=== Language folder ===
* add language folder: '''\lang\en\filter_nanogong.php''' with the following content:
Add language folder: '''\lang\en\filter_nanogong.php''' with the following content:


<code php>
<code php>
$string['filtername'] = 'NanoGong';
$string['filtername'] = 'NanoGong';
</code>
=== Filter function ===
The filter function is wrapped inside a class:
<code php>
class filter_nanogong extends moodle_text_filter {
    function filter($text, array $options = array()){
    ...
    }
}
</code>
</code>



Revision as of 20:21, 22 March 2011

Java settings

Filter

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()){
   ...
   }

}

See also

Migrating to Moodle 2.0
Forums
NanoGong documentation