Use negative numbers for constants in date range element
The reason being that we may have a module that has an id matching one of these values.
This commit is contained in:
parent
7dd18f75e2
commit
68838944fa
1 changed files with 5 additions and 5 deletions
|
@ -77,27 +77,27 @@ class element extends \mod_customcert\element {
|
||||||
/**
|
/**
|
||||||
* Date - Issue
|
* Date - Issue
|
||||||
*/
|
*/
|
||||||
const DATE_ISSUE = 1;
|
const DATE_ISSUE = -1;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Date - Completion
|
* Date - Completion
|
||||||
*/
|
*/
|
||||||
const DATE_COMPLETION = 2;
|
const DATE_COMPLETION = -2;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Date - Course start
|
* Date - Course start
|
||||||
*/
|
*/
|
||||||
const DATE_COURSE_START = 3;
|
const DATE_COURSE_START = -3;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Date - Course end
|
* Date - Course end
|
||||||
*/
|
*/
|
||||||
const DATE_COURSE_END = 4;
|
const DATE_COURSE_END = -4;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Date - Course grade date
|
* Date - Course grade date
|
||||||
*/
|
*/
|
||||||
const DATE_COURSE_GRADE = 5;
|
const DATE_COURSE_GRADE = -5;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* This function renders the form elements when adding a customcert element.
|
* This function renders the form elements when adding a customcert element.
|
||||||
|
|
Loading…
Reference in a new issue