library()

void library(string id)

The function library() embeds the JavaScript- or (if defined on the Server) PHP-Library including the defined identifier id in the questionnaire-site and makes it available for scripts.

Configuration

Server-Administrators can define further libraries inside the file /system/config.php. To e.g. embed the JavaScript-file plugins/SomeScript/somescript.js with the identifier SomeScript, please add at the end of the configuration:

SoSci::set(array(
  'libraries' => array(
    'SomeScript' => 'plugins/SomeScript/somescript.js'
  )
));