Installation
extends SubDecision
in package
uses
MemberAwareTrait
Installation as board member.
Attributes
- #[Entity]
Table of Contents
Properties
- $boardMember : BoardMember
- Board member reference.
- $date : DateTime
- The date at which the installation is in effect.
- $discharge : Discharge|null
- Discharge.
- $function : BoardFunctions
- Function given.
- $member : Member|null
- The member involved in this sub-decision.
- $release : Release|null
- Release.
Methods
- getBoardMember() : BoardMember
- Get the board member decision.
- getContentEN() : string
- Get the content in English.
- getContentNL() : string
- Get the content in Dutch.
- getDate() : DateTime
- Get the date.
- getDecision() : Decision
- Get the decision.
- getDecisionNumber() : int
- Get the decision number.
- getDecisionPoint() : int
- Get the decision point number.
- getDischarge() : Discharge|null
- Get the discharge.
- getFunction() : BoardFunctions
- Get the function.
- getMeetingNumber() : int
- Get the meeting number.
- getMeetingType() : MeetingTypes
- Get the meeting type.
- getMember() : Member
- Get the member.
- getRelease() : Release|null
- Get the release.
- getSequence() : int
- Get the sequence number.
- setContentEN() : void
- Set the content in English.
- setContentNL() : void
- Set the content in Dutch.
- setDate() : void
- Set the date.
- setDecision() : void
- Set the decision.
- setFunction() : void
- Set the function.
- setMember() : void
- Set the member.
- setSequence() : void
- Set the sequence number.
- toGdprArray() : SubDecisionGdprArrayType
Properties
$boardMember
Board member reference.
private
BoardMember
$boardMember
Attributes
- #[OneToOne]
- $targetEntity: \Decision\Model\BoardMember::class
- $mappedBy: 'installationDec'
$date
The date at which the installation is in effect.
private
DateTime
$date
Attributes
- #[Column]
- $type: 'date'
$discharge
Discharge.
private
Discharge|null
$discharge
= null
Attributes
- #[OneToOne]
- $targetEntity: \Decision\Model\SubDecision\Board\Discharge::class
- $mappedBy: 'installation'
$function
Function given.
private
BoardFunctions
$function
Attributes
- #[Column]
- $type: 'string'
- $enumType: \Decision\Model\Enums\BoardFunctions::class
$member
The member involved in this sub-decision.
private
Member|null
$member
= null
Not all sub-decisions require this, as such it is nullable. However, sub-decisions that need the guarantee that this is not null or need to specify an inverse side can do so using an association override.
Attributes
- #[JoinColumn]
- $name: 'lidnr'
- $referencedColumnName: 'lidnr'
- $nullable: true
- #[ManyToOne]
- $targetEntity: \Decision\Model\Member::class
$release
Release.
private
Release|null
$release
= null
Attributes
- #[OneToOne]
- $targetEntity: \Decision\Model\SubDecision\Board\Release::class
- $mappedBy: 'installation'
Methods
getBoardMember()
Get the board member decision.
public
getBoardMember() : BoardMember
Return values
BoardMembergetContentEN()
Get the content in English.
public
getContentEN() : string
Return values
stringgetContentNL()
Get the content in Dutch.
public
getContentNL() : string
Return values
stringgetDate()
Get the date.
public
getDate() : DateTime
Return values
DateTimegetDecision()
Get the decision.
public
getDecision() : Decision
Return values
DecisiongetDecisionNumber()
Get the decision number.
public
getDecisionNumber() : int
Return values
intgetDecisionPoint()
Get the decision point number.
public
getDecisionPoint() : int
Return values
intgetDischarge()
Get the discharge.
public
getDischarge() : Discharge|null
Return values
Discharge|nullgetFunction()
Get the function.
public
getFunction() : BoardFunctions
Return values
BoardFunctionsgetMeetingNumber()
Get the meeting number.
public
getMeetingNumber() : int
Return values
intgetMeetingType()
Get the meeting type.
public
getMeetingType() : MeetingTypes
Return values
MeetingTypesgetMember()
Get the member.
public
getMember() : Member
Tags
Return values
MembergetRelease()
Get the release.
public
getRelease() : Release|null
Return values
Release|nullgetSequence()
Get the sequence number.
public
getSequence() : int
Return values
intsetContentEN()
Set the content in English.
public
setContentEN(string $content) : void
Parameters
- $content : string
setContentNL()
Set the content in Dutch.
public
setContentNL(string $content) : void
Parameters
- $content : string
setDate()
Set the date.
public
setDate(DateTime $date) : void
Parameters
- $date : DateTime
setDecision()
Set the decision.
public
setDecision(Decision $decision) : void
Parameters
- $decision : Decision
setFunction()
Set the function.
public
setFunction(BoardFunctions $function) : void
Parameters
- $function : BoardFunctions
setMember()
Set the member.
public
setMember(Member $member) : void
Parameters
- $member : Member
setSequence()
Set the sequence number.
public
setSequence(int $sequence) : void
Parameters
- $sequence : int
toGdprArray()
public
toGdprArray() : SubDecisionGdprArrayType