Removed unnecessary subclass constructors

This commit is contained in:
Mark Nelson 2013-06-05 16:26:29 +08:00
parent 659719945d
commit 220d83935f
4 changed files with 0 additions and 36 deletions

View file

@ -29,15 +29,6 @@ require_once($CFG->dirroot . '/mod/customcert/elements/element.class.php');
class customcert_element_date extends customcert_element_base {
/**
* Constructor.
*
* @param stdClass $element the element data
*/
function __construct($element) {
parent::__construct($element);
}
/**
* This function renders the form elements when adding a customcert element.
*

View file

@ -37,15 +37,6 @@ define('CUSTOMCERT_GRADE_COURSE', '0');
class customcert_element_grade extends customcert_element_base {
/**
* Constructor.
*
* @param stdClass $element the element data
*/
function __construct($element) {
parent::__construct($element);
}
/**
* This function renders the form elements when adding a customcert element.
*

View file

@ -29,15 +29,6 @@ require_once($CFG->dirroot . '/mod/customcert/elements/element.class.php');
class customcert_element_image extends customcert_element_base {
/**
* Constructor.
*
* @param stdClass $element the element data
*/
function __construct($element) {
parent::__construct($element);
}
/**
* This function is responsible for adding the element for the first time
* to the database when no data has yet been specified, default values set.

View file

@ -29,15 +29,6 @@ require_once($CFG->dirroot . '/mod/customcert/elements/element.class.php');
class customcert_element_studentname extends customcert_element_base {
/**
* Constructor.
*
* @param stdClass $element the element data
*/
function __construct($element) {
parent::__construct($element);
}
/**
* Handles rendering the element on the pdf.
*