mirror of
https://github.com/fsr/eseeva
synced 2024-11-15 08:53:11 +01:00
fixed file name pluralisation
This commit is contained in:
parent
fead322def
commit
0725484eaf
|
@ -21,7 +21,7 @@ The people responsible for the ESE create a new list of keys by using the page *
|
||||||
1. First a new set of keys must be created by using the *keyTable.php* page. Select the amount of keys to be high enough to cover all students and tutors.
|
1. First a new set of keys must be created by using the *keyTable.php* page. Select the amount of keys to be high enough to cover all students and tutors.
|
||||||
2. Still in *keyTable.php* set the state of all keys that will be issued to students to *issued*.
|
2. Still in *keyTable.php* set the state of all keys that will be issued to students to *issued*.
|
||||||
3. Open the file *questionnaires/student_questionnaire.txt* and change the list of questions for students to your liking. Do the same for the tutor questions in the file *questionnaires/tutor_questionnair.txt*. You may also want to change the headline and title within the same files.
|
3. Open the file *questionnaires/student_questionnaire.txt* and change the list of questions for students to your liking. Do the same for the tutor questions in the file *questionnaires/tutor_questionnair.txt*. You may also want to change the headline and title within the same files.
|
||||||
4. Open the file *questionnaires/namenspatronen.txt* and update the list of patrons.
|
4. Open the file *questionnaires/namenspatrone.txt* and update the list of patrons.
|
||||||
5. If you want to keep the old log data, you may also want to change the of the log files for students and tutors in the file *libs/loggingLib.php* by changing the constants STUDENTLOGFILE and TUTORLOGFILE to the desired values. Otherwise just delete the previous log files so that blank ones will be created once the first questionnaire has been filled in.
|
5. If you want to keep the old log data, you may also want to change the of the log files for students and tutors in the file *libs/loggingLib.php* by changing the constants STUDENTLOGFILE and TUTORLOGFILE to the desired values. Otherwise just delete the previous log files so that blank ones will be created once the first questionnaire has been filled in.
|
||||||
|
|
||||||
### 4. Checking if a student is authorised to acquire his cup
|
### 4. Checking if a student is authorised to acquire his cup
|
||||||
|
@ -56,4 +56,4 @@ Just go to the *analysis.php* site to see the results.
|
||||||
* **questionnaires/** Directory for all questionnaire files.
|
* **questionnaires/** Directory for all questionnaire files.
|
||||||
* **student_questionnaire.txt**: Questionnaire file for students.
|
* **student_questionnaire.txt**: Questionnaire file for students.
|
||||||
* **tutor_questionnaire.txt**: Questionnaire file for tutors.
|
* **tutor_questionnaire.txt**: Questionnaire file for tutors.
|
||||||
* **namenspatronen.txt**: file for the names of the patrons.
|
* **namenspatrone.txt**: file for the names of the patrons.
|
||||||
|
|
|
@ -10,7 +10,7 @@
|
||||||
|
|
||||||
define ("STUDENT_QUESTIONNAIRE", "questionnaires/student_questionnaire.txt");
|
define ("STUDENT_QUESTIONNAIRE", "questionnaires/student_questionnaire.txt");
|
||||||
define ("TUTOR_QUESTIONNAIRE", "questionnaires/tutor_questionnaire.txt");
|
define ("TUTOR_QUESTIONNAIRE", "questionnaires/tutor_questionnaire.txt");
|
||||||
define ("PATRONS", "questionnaires/namenspatronen.txt");
|
define ("PATRONS", "questionnaires/namenspatrone.txt");
|
||||||
// Possible Questionnaire Element Types
|
// Possible Questionnaire Element Types
|
||||||
// Should be used by all scripts when referencing them
|
// Should be used by all scripts when referencing them
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in a new issue