ILIAS  release_5-3 Revision v5.3.23-19-g915713cf615
ilADTInteger Class Reference
+ Inheritance diagram for ilADTInteger:
+ Collaboration diagram for ilADTInteger:

Public Member Functions

 reset ()
 
 setNumber ($a_value=null)
 
 getNumber ()
 
 equals (ilADT $a_adt)
 
 isLarger (ilADT $a_adt)
 
 isSmaller (ilADT $a_adt)
 
 isNull ()
 
 isValid ()
 
 getCheckSum ()
 
- Public Member Functions inherited from ilADT
 __construct (ilADTDefinition $a_def)
 Constructor. More...
 
 getType ()
 Get type (from class/instance) More...
 
 getCopyOfDefinition ()
 Get copy of definition. More...
 
 equals (ilADT $a_adt)
 Check if given ADT equals self. More...
 
 isLarger (ilADT $a_adt)
 Check if given ADT is larger than self. More...
 
 isLargerOrEqual (ilADT $a_adt)
 Check if given ADT is larger or equal than self. More...
 
 isSmaller (ilADT $a_adt)
 Check if given ADT is smaller than self. More...
 
 isSmallerOrEqual (ilADT $a_adt)
 Check if given ADT is smaller or equal than self. More...
 
 isInbetween (ilADT $a_adt_from, ilADT $a_adt_to)
 Check if self is inbetween given ADTs (exclusive) More...
 
 isInbetweenOrEqual (ilADT $a_adt_from, ilADT $a_adt_to)
 Check if self is inbetween given ADTs (inclusive) More...
 
 isNull ()
 Is currently null. More...
 
 isValid ()
 Is currently valid. More...
 
 getValidationErrors ()
 Get all validation error codes. More...
 
 translateErrorCode ($a_code)
 Translate error-code to human-readable message. More...
 
 getCheckSum ()
 Get unique checksum. More...
 

Protected Member Functions

 isValidDefinition (ilADTDefinition $a_def)
 
- Protected Member Functions inherited from ilADT
 reset ()
 Init property defaults. More...
 
 isValidDefinition (ilADTDefinition $a_def)
 Check if definition is valid for ADT. More...
 
 setDefinition (ilADTDefinition $a_def)
 Set definition. More...
 
 getDefinition ()
 Get definition. More...
 
 addValidationError ($a_error_code)
 Add validation error code. More...
 

Protected Attributes

 $value
 
- Protected Attributes inherited from ilADT
 $definition
 
 $validation_errors = []
 

Additional Inherited Members

- Data Fields inherited from ilADT
const ADT_VALIDATION_ERROR_NULL_NOT_ALLOWED = "adt1"
 
const ADT_VALIDATION_ERROR_MAX_LENGTH = "adt2"
 
const ADT_VALIDATION_ERROR_MAX_SIZE = "adt3"
 
const ADT_VALIDATION_ERROR_MIN = "adt4"
 
const ADT_VALIDATION_ERROR_MAX = "adt5"
 
const ADT_VALIDATION_DATE = "adt6"
 
const ADT_VALIDATION_ERROR_INVALID_NODE = 'adt7'
 

Detailed Description

Definition at line 3 of file class.ilADTInteger.php.

Member Function Documentation

◆ equals()

ilADTInteger::equals ( ilADT  $a_adt)

Definition at line 38 of file class.ilADTInteger.php.

References ilADT\getDefinition(), and getNumber().

39  {
40  if ($this->getDefinition()->isComparableTo($a_adt)) {
41  return ($this->getNumber() == $a_adt->getNumber());
42  }
43  }
getDefinition()
Get definition.
Definition: class.ilADT.php:97
+ Here is the call graph for this function:

◆ getCheckSum()

ilADTInteger::getCheckSum ( )

Definition at line 95 of file class.ilADTInteger.php.

References getNumber(), and isNull().

96  {
97  if (!$this->isNull()) {
98  return (string) $this->getNumber();
99  }
100  }
+ Here is the call graph for this function:

◆ getNumber()

ilADTInteger::getNumber ( )

Definition at line 30 of file class.ilADTInteger.php.

References $value.

Referenced by equals(), getCheckSum(), isLarger(), isNull(), isSmaller(), and isValid().

31  {
32  return $this->value;
33  }
+ Here is the caller graph for this function:

◆ isLarger()

ilADTInteger::isLarger ( ilADT  $a_adt)

Definition at line 45 of file class.ilADTInteger.php.

References ilADT\getDefinition(), and getNumber().

46  {
47  if ($this->getDefinition()->isComparableTo($a_adt)) {
48  return ($this->getNumber() > $a_adt->getNumber());
49  }
50  }
getDefinition()
Get definition.
Definition: class.ilADT.php:97
+ Here is the call graph for this function:

◆ isNull()

ilADTInteger::isNull ( )

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

References getNumber().

Referenced by getCheckSum().

63  {
64  return ($this->getNumber() === null);
65  }
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ isSmaller()

ilADTInteger::isSmaller ( ilADT  $a_adt)

Definition at line 52 of file class.ilADTInteger.php.

References ilADT\getDefinition(), and getNumber().

53  {
54  if ($this->getDefinition()->isComparableTo($a_adt)) {
55  return ($this->getNumber() < $a_adt->getNumber());
56  }
57  }
getDefinition()
Get definition.
Definition: class.ilADT.php:97
+ Here is the call graph for this function:

◆ isValid()

ilADTInteger::isValid ( )

Definition at line 70 of file class.ilADTInteger.php.

References $valid, ilADT\addValidationError(), ilADT\getDefinition(), and getNumber().

71  {
72  $valid = parent::isValid();
73 
74  $num = $this->getNumber();
75  if ($num !== null) {
76  $min = $this->getDefinition()->getMin();
77  if ($min !== null && $num < $min) {
78  $this->addValidationError(self::ADT_VALIDATION_ERROR_MIN);
79  $valid = false;
80  }
81 
82  $max = $this->getDefinition()->getMax();
83  if ($max !== null && $num > $max) {
84  $this->addValidationError(self::ADT_VALIDATION_ERROR_MAX);
85  $valid = false;
86  }
87  }
88 
89  return $valid;
90  }
$valid
addValidationError($a_error_code)
Add validation error code.
getDefinition()
Get definition.
Definition: class.ilADT.php:97
+ Here is the call graph for this function:

◆ isValidDefinition()

ilADTInteger::isValidDefinition ( ilADTDefinition  $a_def)
protected

Definition at line 10 of file class.ilADTInteger.php.

11  {
12  return ($a_def instanceof ilADTIntegerDefinition);
13  }

◆ reset()

ilADTInteger::reset ( )

Definition at line 15 of file class.ilADTInteger.php.

16  {
17  parent::reset();
18 
19  $this->value = null;
20  }

◆ setNumber()

ilADTInteger::setNumber (   $a_value = null)

Definition at line 25 of file class.ilADTInteger.php.

References ilADT\getDefinition().

26  {
27  $this->value = $this->getDefinition()->handleNumber($a_value);
28  }
getDefinition()
Get definition.
Definition: class.ilADT.php:97
+ Here is the call graph for this function:

Field Documentation

◆ $value

ilADTInteger::$value
protected

Definition at line 5 of file class.ilADTInteger.php.

Referenced by getNumber().


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