Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

In /config/config.inc.php there is a line that controls which external systems are linked. In the example below two are set up: UoNCM and NLE.

Code Block
languagephp
$vle_apis = array('UoNCM' => '', 'NLE' => '');

These names them map to PHP classes in /plugins/CM/ directory. 'CM_' is prefixed to the name, so, for example, the UoNCM class would be CM_UoNCM.class.php.

...