Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"minimum-stability": "dev",
"require": {
"php": ">=7.4",
"commongateway/corebundle": "^1.1.110 | <2.0"
"commongateway/corebundle": "^1.4.13 | <2.0"
},
"require-dev": {
"symfony/dependency-injection": "~3.4|~4.1|~5.0"
Expand Down
4 changes: 2 additions & 2 deletions docs/classes/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# CommonGateway\FirstRegistrationBundle

* [Service\InstallationService](Service/InstallationService.md)
* [Service\FirstRegistrationService](Service/FirstRegistrationService.md)
* [Service\InstallationService](Service/InstallationService.md)
* [Service\FirstRegistrationService](Service/FirstRegistrationService.md)
99 changes: 71 additions & 28 deletions docs/classes/Service/FirstRegistrationService.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,16 @@
# CommonGateway\FirstRegistrationBundle\Service\FirstRegistrationService
# CommonGateway\FirstRegistrationBundle\Service\FirstRegistrationService







## Methods

| Name | Description |
|------|-------------|
|[\_\_construct](#firstregistrationservice__construct)||
|[__construct](#firstregistrationservice__construct)||
|[firstRegistrationHandler](#firstregistrationservicefirstregistrationhandler)|A first registration handler that is triggered by an action.|
|[getRolValues](#firstregistrationservicegetrolvalues)|Gets the values from the zaakEigenschappen of the zaak.|
|[getZaakEigenschappenValues](#firstregistrationservicegetzaakeigenschappenvalues)|Gets the values from the zaakEigenschappen of the zaak.|
Expand All @@ -13,14 +19,21 @@
|[sendFirstRegistration](#firstregistrationservicesendfirstregistration)|A first registration handler that is triggered by an action.|
|[zgwToFirstRegistrationHandler](#firstregistrationservicezgwtofirstregistrationhandler)|A first registration handler that is triggered by an action.|

### FirstRegistrationService::\_\_construct



### FirstRegistrationService::__construct

**Description**

```php
__construct (void)
```





**Parameters**

`This function has no parameters.`
Expand All @@ -29,92 +42,108 @@

`void`


<hr />

### FirstRegistrationService::firstRegistrationHandler

### FirstRegistrationService::firstRegistrationHandler

**Description**

```php
public firstRegistrationHandler (array $data, array $configuration)
```

A first registration handler that is triggered by an action.
A first registration handler that is triggered by an action.



**Parameters**

* `(array) $data`
: The data array
: The data array
* `(array) $configuration`
: The configuration array
: The configuration array

**Return Values**

`array`

> A handler must ALWAYS return an array


<hr />

### FirstRegistrationService::getRolValues

### FirstRegistrationService::getRolValues

**Description**

```php
public getRolValues (\ObjectEntity $zaaktypeObject, \ObjectEntity $zaakObject)
```

Gets the values from the zaakEigenschappen of the zaak.
Gets the values from the zaakEigenschappen of the zaak.



**Parameters**

* `(\ObjectEntity) $zaaktypeObject`
: The zaaktype object of the zaak.
: The zaaktype object of the zaak.
* `(\ObjectEntity) $zaakObject`
: The zaak object.
: The zaak object.

**Return Values**

`array`

> The values of the zaakEigenschappen.


<hr />

### FirstRegistrationService::getZaakEigenschappenValues

### FirstRegistrationService::getZaakEigenschappenValues

**Description**

```php
public getZaakEigenschappenValues (\ObjectEntity $zaaktypeObject, \ObjectEntity $zaakObject)
```

Gets the values from the zaakEigenschappen of the zaak.
Gets the values from the zaakEigenschappen of the zaak.



**Parameters**

* `(\ObjectEntity) $zaaktypeObject`
: The zaaktype object of the zaak.
: The zaaktype object of the zaak.
* `(\ObjectEntity) $zaakObject`
: The zaak object.
: The zaak object.

**Return Values**

`array`

> The values of the zaakEigenschappen.


<hr />

### FirstRegistrationService::getZaaktype

### FirstRegistrationService::getZaaktype

**Description**

```php
public getZaaktype (void)
```

Gets the zaaktype object from the zaak.
Gets the zaaktype object from the zaak.



**Parameters**

Expand All @@ -126,77 +155,91 @@ Gets the zaaktype object from the zaak.

> The zaaktype from the zaak.


<hr />

### FirstRegistrationService::removeSelf

### FirstRegistrationService::removeSelf

**Description**

```php
public removeSelf (array $object)
```

Recursively removes self parameters from object.
Recursively removes self parameters from object.



**Parameters**

* `(array) $object`
: The object to remove self parameters from.
: The object to remove self parameters from.

**Return Values**

`array`

> The cleaned object.


<hr />

### FirstRegistrationService::sendFirstRegistration

### FirstRegistrationService::sendFirstRegistration

**Description**

```php
public sendFirstRegistration (array $data, array $configuration)
```

A first registration handler that is triggered by an action.
A first registration handler that is triggered by an action.



**Parameters**

* `(array) $data`
: The data array
: The data array
* `(array) $configuration`
: The configuration array
: The configuration array

**Return Values**

`array`

> A handler must ALWAYS return an array


<hr />

### FirstRegistrationService::zgwToFirstRegistrationHandler

### FirstRegistrationService::zgwToFirstRegistrationHandler

**Description**

```php
public zgwToFirstRegistrationHandler (array $data, array $configuration)
```

A first registration handler that is triggered by an action.
A first registration handler that is triggered by an action.



**Parameters**

* `(array) $data`
: The data array
: The data array
* `(array) $configuration`
: The configuration array
: The configuration array

**Return Values**

`array`

> A handler must ALWAYS return an array


<hr />

Loading