2017-09-10 06:55:12 +00:00
|
|
|
<?php
|
2021-11-24 07:29:43 +00:00
|
|
|
// This file is part of the htmlcert module for Moodle - http://moodle.org/
|
2017-09-10 06:55:12 +00:00
|
|
|
//
|
|
|
|
// Moodle is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
|
|
|
// Moodle is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
|
|
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Contains the class that provides a grade object to be used by elements for display purposes.
|
|
|
|
*
|
2021-11-24 07:29:43 +00:00
|
|
|
* @package mod_htmlcert
|
|
|
|
* @copyright 2017 Mark Nelson <markn@moodle.com>, 2021 Klaus-Uwe Mitterer <kumitterer@kumi.systems>
|
2017-09-10 06:55:12 +00:00
|
|
|
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
|
|
|
*/
|
|
|
|
|
2021-11-24 07:29:43 +00:00
|
|
|
namespace mod_htmlcert;
|
2017-09-10 06:55:12 +00:00
|
|
|
|
|
|
|
defined('MOODLE_INTERNAL') || die();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The class that provides a grade object to be used by elements for display purposes.
|
|
|
|
*
|
2021-11-24 07:29:43 +00:00
|
|
|
* @package mod_htmlcert
|
2017-09-10 06:55:12 +00:00
|
|
|
* @copyright 2017 Mark Nelson <markn@moodle.com>
|
|
|
|
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
|
|
|
*/
|
|
|
|
class grade_information {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var string The grade name.
|
|
|
|
*/
|
|
|
|
protected $name;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var float The raw grade.
|
|
|
|
*/
|
|
|
|
protected $grade;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var string The grade to display
|
|
|
|
*/
|
|
|
|
protected $displaygrade;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var int The date it was graded.
|
|
|
|
*/
|
|
|
|
protected $dategraded;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The constructor.
|
|
|
|
*
|
|
|
|
* @param string $name
|
|
|
|
* @param float $grade
|
|
|
|
* @param string $displaygrade
|
|
|
|
* @param int $dategraded
|
|
|
|
*/
|
|
|
|
public function __construct($name, $grade, $displaygrade, $dategraded) {
|
|
|
|
$this->name = $name;
|
|
|
|
$this->grade = $grade;
|
|
|
|
$this->displaygrade = $displaygrade;
|
|
|
|
$this->dategraded = $dategraded;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the name.
|
|
|
|
*
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function get_name() {
|
|
|
|
return $this->name;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the raw grade.
|
|
|
|
*
|
|
|
|
* @return float
|
|
|
|
*/
|
|
|
|
public function get_grade() {
|
|
|
|
return $this->grade;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the display grade.
|
|
|
|
*
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function get_displaygrade() {
|
|
|
|
return $this->displaygrade;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the date it was graded.
|
|
|
|
*
|
|
|
|
* @return int
|
|
|
|
*/
|
|
|
|
public function get_dategraded() {
|
|
|
|
return $this->dategraded;
|
|
|
|
}
|
|
|
|
}
|