ILIAS  release_5-3 Revision v5.3.23-19-g915713cf615
ASS_Mark Class Reference

A class defining marks for assessment test objects. More...

+ Collaboration diagram for ASS_Mark:

Public Member Functions

 __construct ( $short_name="", $official_name="", $minimum_level=0, $passed=0)
 ASS_Mark constructor. More...
 
 getShortName ()
 Returns the short name of the mark. More...
 
 getPassed ()
 Returns passed status of the mark. More...
 
 getOfficialName ()
 Returns the official name of the mark. More...
 
 getMinimumLevel ()
 Returns the minimum level reaching the mark. More...
 
 setShortName ($short_name="")
 Sets the short name of the mark. More...
 
 setPassed ($passed=0)
 Sets the passed status the mark. More...
 
 setOfficialName ($official_name="")
 Sets the official name of the mark. More...
 
 setMinimumLevel ($minimum_level)
 Sets the minimum level reaching the mark. More...
 

Data Fields

 $short_name
 
 $official_name
 
 $minimum_level = 0
 
 $passed
 

Detailed Description

A class defining marks for assessment test objects.

Author
Helmut Schottmüller helmu.nosp@m.t.sc.nosp@m.hottm.nosp@m.uell.nosp@m.er@ma.nosp@m.c.co.nosp@m.m
Version
$Id$

Definition at line 14 of file class.assMark.php.

Constructor & Destructor Documentation

◆ __construct()

ASS_Mark::__construct (   $short_name = "",
  $official_name = "",
  $minimum_level = 0,
  $passed = 0 
)

ASS_Mark constructor.

The constructor takes possible arguments an creates an instance of the ASS_Mark object.

Parameters
string$short_nameThe short name of the mark
string$official_nameThe official name of the mark
double$minimum_levelThe minimum percentage level reaching the mark public

Definition at line 62 of file class.assMark.php.

References $minimum_level, $official_name, $passed, $short_name, setMinimumLevel(), setOfficialName(), setPassed(), and setShortName().

67  {
68  $this->setShortName($short_name);
71  $this->setPassed($passed);
72  }
setOfficialName($official_name="")
Sets the official name of the mark.
setPassed($passed=0)
Sets the passed status the mark.
setShortName($short_name="")
Sets the short name of the mark.
setMinimumLevel($minimum_level)
Sets the minimum level reaching the mark.
+ Here is the call graph for this function:

Member Function Documentation

◆ getMinimumLevel()

ASS_Mark::getMinimumLevel ( )

Returns the minimum level reaching the mark.

Returns the minimum level reaching the mark

Returns
double The minimum level reaching the mark public
See also
$minimum_level

Definition at line 125 of file class.assMark.php.

References $minimum_level.

126  {
127  return $this->minimum_level;
128  }

◆ getOfficialName()

ASS_Mark::getOfficialName ( )

Returns the official name of the mark.

Returns the official name of the mark

Returns
string The official name of the mark public
See also
$official_name

Definition at line 111 of file class.assMark.php.

References $official_name.

112  {
113  return $this->official_name;
114  }

◆ getPassed()

ASS_Mark::getPassed ( )

Returns passed status of the mark.

Returns the passed status of the mark

Returns
string The passed status of the mark public
See also
$passed

Definition at line 97 of file class.assMark.php.

References $passed.

98  {
99  return $this->passed;
100  }

◆ getShortName()

ASS_Mark::getShortName ( )

Returns the short name of the mark.

Returns the short name of the mark

Returns
string The short name of the mark public
See also
$short_name

Definition at line 83 of file class.assMark.php.

References $short_name.

84  {
85  return $this->short_name;
86  }

◆ setMinimumLevel()

ASS_Mark::setMinimumLevel (   $minimum_level)

Sets the minimum level reaching the mark.

Sets the minimum level reaching the mark

Parameters
string$minimum_levelThe minimum level reaching the mark public
See also
$minimum_level

Definition at line 181 of file class.assMark.php.

References $minimum_level.

Referenced by __construct().

182  {
183  $minimum_level = (float) $minimum_level;
184 
185  if (($minimum_level >= 0) && ($minimum_level <= 100)) {
186  $this->minimum_level = $minimum_level;
187  } else {
188  throw new Exception('Markstep: minimum level must be between 0 and 100');
189  }
190  }
+ Here is the caller graph for this function:

◆ setOfficialName()

ASS_Mark::setOfficialName (   $official_name = "")

Sets the official name of the mark.

Sets the official name of the mark

Parameters
string$official_nameThe official name of the mark public
See also
$official_name

Definition at line 167 of file class.assMark.php.

References $official_name.

Referenced by __construct().

168  {
169  $this->official_name = $official_name;
170  }
+ Here is the caller graph for this function:

◆ setPassed()

ASS_Mark::setPassed (   $passed = 0)

Sets the passed status the mark.

Sets the passed status of the mark

Parameters
integer$passedThe passed status of the mark public
See also
$passed

Definition at line 153 of file class.assMark.php.

References $passed.

Referenced by __construct().

154  {
155  $this->passed = $passed;
156  }
+ Here is the caller graph for this function:

◆ setShortName()

ASS_Mark::setShortName (   $short_name = "")

Sets the short name of the mark.

Sets the short name of the mark

Parameters
string$short_nameThe short name of the mark public
See also
$short_name

Definition at line 139 of file class.assMark.php.

References $short_name.

Referenced by __construct().

140  {
141  $this->short_name = $short_name;
142  }
+ Here is the caller graph for this function:

Field Documentation

◆ $minimum_level

ASS_Mark::$minimum_level = 0

Definition at line 41 of file class.assMark.php.

Referenced by __construct(), getMinimumLevel(), and setMinimumLevel().

◆ $official_name

ASS_Mark::$official_name

Definition at line 32 of file class.assMark.php.

Referenced by __construct(), getOfficialName(), and setOfficialName().

◆ $passed

ASS_Mark::$passed

Definition at line 50 of file class.assMark.php.

Referenced by __construct(), getPassed(), and setPassed().

◆ $short_name

ASS_Mark::$short_name

Definition at line 23 of file class.assMark.php.

Referenced by __construct(), getShortName(), and setShortName().


The documentation for this class was generated from the following file: