Skip to content

Commit

Permalink
feat: 2023-02 update
Browse files Browse the repository at this point in the history
  • Loading branch information
aaronlinley committed Feb 8, 2023
1 parent ecfd65d commit 5edea23
Show file tree
Hide file tree
Showing 797 changed files with 3,244 additions and 793 deletions.
3 changes: 3 additions & 0 deletions src/Arbor/Model/AcademicCalendarDate.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@

class AcademicCalendarDate extends ModelBase
{

const START_DATE = 'startDate';

const END_DATE = 'endDate';
Expand Down Expand Up @@ -385,4 +386,6 @@ public function setDataOrder($dataOrder = null)
{
$this->setProperty('dataOrder', $dataOrder);
}


}
3 changes: 3 additions & 0 deletions src/Arbor/Model/AcademicHoliday.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@

class AcademicHoliday extends ModelBase
{

const ACADEMIC_HOLIDAY_TYPE = 'academicHolidayType';

const START_DATE = 'startDate';
Expand Down Expand Up @@ -115,4 +116,6 @@ public function setHolidayLabel($holidayLabel = null)
{
$this->setProperty('holidayLabel', $holidayLabel);
}


}
3 changes: 3 additions & 0 deletions src/Arbor/Model/AcademicLevel.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@

class AcademicLevel extends ModelBase
{

const ACADEMIC_LEVEL_NAME = 'academicLevelName';

const SHORT_NAME = 'shortName';
Expand Down Expand Up @@ -213,4 +214,6 @@ public function getTutorMemberships()
{
return $this->getCollectionProperty('tutorMemberships');
}


}
3 changes: 3 additions & 0 deletions src/Arbor/Model/AcademicLevelMembership.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@

class AcademicLevelMembership extends ModelBase
{

const ACADEMIC_LEVEL = 'academicLevel';

const STUDENT = 'student';
Expand Down Expand Up @@ -115,4 +116,6 @@ public function setEndDate(\DateTime $endDate = null)
{
$this->setProperty('endDate', $endDate);
}


}
3 changes: 3 additions & 0 deletions src/Arbor/Model/AcademicLevelRegistrationFormMapping.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@

class AcademicLevelRegistrationFormMapping extends ModelBase
{

const ACADEMIC_LEVEL = 'academicLevel';

const REGISTRATION_FORM = 'registrationForm';
Expand Down Expand Up @@ -79,4 +80,6 @@ public function setRegistrationForm(RegistrationForm $registrationForm = null)
{
$this->setProperty('registrationForm', $registrationForm);
}


}
3 changes: 3 additions & 0 deletions src/Arbor/Model/AcademicLevelTutor.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@

class AcademicLevelTutor extends ModelBase
{

const ACADEMIC_LEVEL = 'academicLevel';

const STAFF = 'staff';
Expand Down Expand Up @@ -115,4 +116,6 @@ public function setEndDate(\DateTime $endDate = null)
{
$this->setProperty('endDate', $endDate);
}


}
3 changes: 3 additions & 0 deletions src/Arbor/Model/AcademicNote.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@

class AcademicNote extends ModelBase
{

const STUDENT = 'student';

const ACADEMIC_UNIT = 'academicUnit';
Expand Down Expand Up @@ -133,4 +134,6 @@ public function setNoteCreatedDatetime(\DateTime $noteCreatedDatetime = null)
{
$this->setProperty('noteCreatedDatetime', $noteCreatedDatetime);
}


}
3 changes: 3 additions & 0 deletions src/Arbor/Model/AcademicProgramme.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@

class AcademicProgramme extends ModelBase
{

const ACADEMIC_PROGRAMME_NAME = 'academicProgrammeName';

protected $_resourceType = ResourceType::ACADEMIC_PROGRAMME;
Expand Down Expand Up @@ -69,4 +70,6 @@ public function getInstances()
{
return $this->getCollectionProperty('instances');
}


}
3 changes: 3 additions & 0 deletions src/Arbor/Model/AcademicProgrammeInstance.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@

class AcademicProgrammeInstance extends ModelBase
{

const ACADEMIC_PROGRAMME = 'academicProgramme';

const INSTANCE_NAME = 'instanceName';
Expand Down Expand Up @@ -105,4 +106,6 @@ public function getTopLevelAcademicUnits()
{
return $this->getCollectionProperty('topLevelAcademicUnits');
}


}
3 changes: 3 additions & 0 deletions src/Arbor/Model/AcademicTeachingHour.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@

class AcademicTeachingHour extends ModelBase
{

const EFFECTIVE_DATE = 'effectiveDate';

const END_DATE = 'endDate';
Expand Down Expand Up @@ -133,4 +134,6 @@ public function setDayOfCycle($dayOfCycle = null)
{
$this->setProperty('dayOfCycle', $dayOfCycle);
}


}
3 changes: 3 additions & 0 deletions src/Arbor/Model/AcademicUnit.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@

class AcademicUnit extends ModelBase
{

const UNIQUE_IDENTIFIER = 'uniqueIdentifier';

const PARENT_ACADEMIC_UNIT = 'parentAcademicUnit';
Expand Down Expand Up @@ -545,4 +546,6 @@ public function getTimetableSlots()
{
return $this->getCollectionProperty('timetableSlots');
}


}
3 changes: 3 additions & 0 deletions src/Arbor/Model/AcademicUnitAssessment.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@

class AcademicUnitAssessment extends ModelBase
{

const ACADEMIC_UNIT = 'academicUnit';

const ASSESSMENT = 'assessment';
Expand Down Expand Up @@ -79,4 +80,6 @@ public function setAssessment(Assessment $assessment = null)
{
$this->setProperty('assessment', $assessment);
}


}
3 changes: 3 additions & 0 deletions src/Arbor/Model/AcademicUnitAutomaticEnrolment.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@

class AcademicUnitAutomaticEnrolment extends ModelBase
{

const ACADEMIC_UNIT = 'academicUnit';

const TRIGGER = 'trigger';
Expand Down Expand Up @@ -97,4 +98,6 @@ public function setAttendancePattern(AttendancePattern $attendancePattern = null
{
$this->setProperty('attendancePattern', $attendancePattern);
}


}
3 changes: 3 additions & 0 deletions src/Arbor/Model/AcademicUnitBandAssignment.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@

class AcademicUnitBandAssignment extends ModelBase
{

const ACADEMIC_UNIT = 'academicUnit';

const BAND_NAME = 'bandName';
Expand Down Expand Up @@ -79,4 +80,6 @@ public function setBandName($bandName = null)
{
$this->setProperty('bandName', $bandName);
}


}
3 changes: 3 additions & 0 deletions src/Arbor/Model/AcademicUnitBlockAssignment.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@

class AcademicUnitBlockAssignment extends ModelBase
{

const ACADEMIC_UNIT = 'academicUnit';

const BLOCK_NAME = 'blockName';
Expand Down Expand Up @@ -79,4 +80,6 @@ public function setBlockName($blockName = null)
{
$this->setProperty('blockName', $blockName);
}


}
3 changes: 3 additions & 0 deletions src/Arbor/Model/AcademicUnitCurriculum.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@

class AcademicUnitCurriculum extends ModelBase
{

const ACADEMIC_UNIT = 'academicUnit';

const CURRICULUM = 'curriculum';
Expand Down Expand Up @@ -79,4 +80,6 @@ public function setCurriculum(Curriculum $curriculum = null)
{
$this->setProperty('curriculum', $curriculum);
}


}
3 changes: 3 additions & 0 deletions src/Arbor/Model/AcademicUnitDepartment.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@

class AcademicUnitDepartment extends ModelBase
{

const DEPARTMENT = 'department';

const ACADEMIC_UNIT = 'academicUnit';
Expand Down Expand Up @@ -115,4 +116,6 @@ public function setEndDate(\DateTime $endDate = null)
{
$this->setProperty('endDate', $endDate);
}


}
3 changes: 3 additions & 0 deletions src/Arbor/Model/AcademicUnitEnrolment.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@

class AcademicUnitEnrolment extends ModelBase
{

const ACADEMIC_UNIT = 'academicUnit';

const STUDENT = 'student';
Expand Down Expand Up @@ -205,4 +206,6 @@ public function setStudentAttendancePatternDependency(StudentAttendancePattern $
{
$this->setProperty('studentAttendancePatternDependency', $studentAttendancePatternDependency);
}


}
3 changes: 3 additions & 0 deletions src/Arbor/Model/AcademicUnitEnrolmentImport.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@

class AcademicUnitEnrolmentImport extends ModelBase
{

const NAME = 'name';

const ACADEMIC_YEAR = 'academicYear';
Expand Down Expand Up @@ -151,4 +152,6 @@ public function setEnrolmentEndDate(\DateTime $enrolmentEndDate = null)
{
$this->setProperty('enrolmentEndDate', $enrolmentEndDate);
}


}
3 changes: 3 additions & 0 deletions src/Arbor/Model/AcademicUnitLead.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@

class AcademicUnitLead extends ModelBase
{

const ACADEMIC_UNIT = 'academicUnit';

const STAFF = 'staff';
Expand Down Expand Up @@ -115,4 +116,6 @@ public function setEndDate(\DateTime $endDate = null)
{
$this->setProperty('endDate', $endDate);
}


}
3 changes: 3 additions & 0 deletions src/Arbor/Model/AcademicUnitMarksheetCustomReport.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@

class AcademicUnitMarksheetCustomReport extends ModelBase
{

const ACADEMIC_UNIT = 'academicUnit';

const CUSTOM_REPORT = 'customReport';
Expand Down Expand Up @@ -79,4 +80,6 @@ public function setCustomReport(CustomReport $customReport = null)
{
$this->setProperty('customReport', $customReport);
}


}
3 changes: 3 additions & 0 deletions src/Arbor/Model/AcademicUnitQualificationAward.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@

class AcademicUnitQualificationAward extends ModelBase
{

const ACADEMIC_UNIT = 'academicUnit';

const QUALIFICATION_AWARD = 'qualificationAward';
Expand Down Expand Up @@ -79,4 +80,6 @@ public function setQualificationAward(QualificationAward $qualificationAward = n
{
$this->setProperty('qualificationAward', $qualificationAward);
}


}
3 changes: 3 additions & 0 deletions src/Arbor/Model/AcademicUnitQualificationLink.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@

class AcademicUnitQualificationLink extends ModelBase
{

const ACADEMIC_UNIT = 'academicUnit';

const QUALIFICATION_ASSESSABLE = 'qualificationAssessable';
Expand Down Expand Up @@ -133,4 +134,6 @@ public function setEndDate(\DateTime $endDate = null)
{
$this->setProperty('endDate', $endDate);
}


}
3 changes: 3 additions & 0 deletions src/Arbor/Model/AcademicUnitTag.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@

class AcademicUnitTag extends ModelBase
{

const ACADEMIC_UNIT = 'academicUnit';

const RELATED_OBJECT = 'relatedObject';
Expand Down Expand Up @@ -79,4 +80,6 @@ public function setRelatedObject(ModelBase $relatedObject = null)
{
$this->setProperty('relatedObject', $relatedObject);
}


}
3 changes: 3 additions & 0 deletions src/Arbor/Model/AcademicWorkingDay.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@

class AcademicWorkingDay extends ModelBase
{

const CODE = 'code';

const ACTIVE = 'active';
Expand Down Expand Up @@ -151,4 +152,6 @@ public function setDayOfCalendarWeek($dayOfCalendarWeek = null)
{
$this->setProperty('dayOfCalendarWeek', $dayOfCalendarWeek);
}


}
3 changes: 3 additions & 0 deletions src/Arbor/Model/AcademicYear.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@

class AcademicYear extends ModelBase
{

const ACADEMIC_YEAR_NAME = 'academicYearName';

const CODE = 'code';
Expand Down Expand Up @@ -133,4 +134,6 @@ public function setTimetableCycleLength($timetableCycleLength = null)
{
$this->setProperty('timetableCycleLength', $timetableCycleLength);
}


}
Loading

0 comments on commit 5edea23

Please sign in to comment.