Skip to content
Snippets Groups Projects
Select Git revision
  • main
1 result

settings.php

Blame
  • settings.php 1.25 KiB
    <?php
    // The consumer secret set in your LMS for the LTI External tool.
    $pail_oauth_consumer_secret = "12345";
    
    // The title of the page generated by PAIL.
    $pail_title = "Personalising Assessment for Individualised Learning";
    
    // A short description of the page generated by PAIL.
    $pail_description = "Personalising assessment for individualised learning";
    
    // The subdirectory where assessments are generated
    $pail_generated_dir = "generated";
    
    // The command to execute to generate files.
    // It will be passed a final parameter that is the directory in which all files should be generated.
    $pail_generate_command = "python3 example.py";
    
    // The email address users will be directed to if there are any issues.
    $pail_contact = "pail@example.edu";
    
    // If true, files are regenerated each time a user visits the site.
    // If false, files are only generated the first time (and then redisplayed on subsequent visits).
    $pail_reset = false;
    
    // The key to use to get the context id from the LTI context
    $pail_context_id = "context_id";
    
    // The key to use to get the user id from the LTI context
    $pail_user_id = "user_id";
    
    // If true, prints out some debug information with the assessment page
    // If false, no debug information is printed on the assessment page
    $pail_debug = false;
    ?>