PHPackages                             plugin/owc-mijn-services - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Utility &amp; Helpers](/categories/utility)
4. /
5. plugin/owc-mijn-services

ActiveWordpress-plugin[Utility &amp; Helpers](/categories/utility)

plugin/owc-mijn-services
========================

Retrieve information from ZGW to show in Mijn Services

0.6.2(1mo ago)0325↓50%[7 PRs](https://github.com/OpenWebconcept/plugin-owc-mijn-services/pulls)PHPPHP ^8.1CI passing

Since Jul 16Pushed 1mo ago4 watchersCompare

[ Source](https://github.com/OpenWebconcept/plugin-owc-mijn-services)[ Packagist](https://packagist.org/packages/plugin/owc-mijn-services)[ RSS](/packages/plugin-owc-mijn-services/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (3)Dependencies (12)Versions (19)Used By (0)

OWC Mijn Services
=================

[](#owc-mijn-services)

OWC Mijn Services is a WordPress plugin built around custom Gutenberg blocks that integrate with ZGW (Zaakgericht Werken) APIs. These blocks are the foundation of the plugin, allowing you to easily configure, and display data—directly within the WordPress block editor.

Installation
------------

[](#installation)

### Manual installation

[](#manual-installation)

1. Upload the 'owc-mijn-services' folder in to the `/wp-content/plugins/` directory.
2. `cd /wp-content/plugins/owc-mijn-services`
3. Run composer install, NPM asset build is in version control already.
4. Activate the plugin in via the WordPress admin.

### Composer installation

[](#composer-installation)

1. `composer source git@github.com:OpenWebconcept/plugin-owc-mijn-services.git`
2. `composer require plugin/owc-mijn-services`
3. `cd /wp-content/plugins/owc-mijn-services`
4. Run `composer install`, NPM asset build is in version control already.

### Configure your project

[](#configure-your-project)

To use this plugin, make sure the following pages exist in your WordPress installation:

- A single page for a Zaak that contains the owc-my-services/zaak block.
- A single page for a Zaak download, no blocks required.
- A page (any type) that contains the owc-my-services/mijn-zaken block.

Gutenberg blocks
----------------

[](#gutenberg-blocks)

### owc-my-services/zaak

[](#owc-my-serviceszaak)

This block displays all data for a single Zaak. Selecting a ZGW API supplier is the only configuration required in the block settings.

### owc-my-services/mijn-zaken

[](#owc-my-servicesmijn-zaken)

This block displays an overview of all Zaken, filtered by the selected supplier and the social security number (BSN) of the currently logged-in citizen.

### NLDS Components

[](#nlds-components)

Both `owc-my-services/zaak` and `owc-my-services/mijn-zaken` blocks use components from the **NLDS (Nederlandse Design System)**.

- The NLDS React components and CSS are automatically loaded when a block is placed on the page.
- The project should have NLDS design tokens available to ensure styling.

Logging
-------

[](#logging)

Enable logging to keep track of errors during communication with the ZGW supplier(s).

- Logs are written daily to `owc-my-services-log{-date}.json` in the WordPress webroot directory.
- A rotating file handler keeps up to 7 log files by default, deleting the oldest as needed.
- You can change the maximum number of log files using the filter described below.

[![General settings example](./data/general-settings.png)](./data/general-settings.png)

Hooks
-----

[](#hooks)

### Customizing Template Paths

[](#customizing-template-paths)

You can customize the template paths by using the following filter in your theme or another plugin:

```
add_filter('owcms::view/template-paths', function ($paths) {
    $paths[] = get_stylesheet_directory() . '/resources/views/owc-mijn-services';

    return $paths;
});
```

To prioritize your custom template path over the default ones, use this example:

```
add_filter('owcms::view/template-paths', function ($paths) {
    $paths[] = get_stylesheet_directory() . '/resources/views/owc-mijn-services';

    return array_reverse($paths);
});
```

### Change the maximum number of log files

[](#change-the-maximum-number-of-log-files)

Use the following filter to alter the rotating file handler's max files setting:

```
apply_filters('owcms::logger/rotating_filer_handler_max_files', OWC_MY_SERVICES_LOGGER_DEFAULT_MAX_FILES)
```

### Intercept exceptions for custom handling

[](#intercept-exceptions-for-custom-handling)

Intercept exceptions caught by the plugin for additional processing or custom logging using this action:

```
do_action('owcms::exception/intercept', $exception, $method)
```

The `$exception` parameter contains the caught exception object

### Restricting page access based on authentication requirements

[](#restricting-page-access-based-on-authentication-requirements)

Pages can be protected by enforcing specific authentication methods, such as **DigiD** and/or **eHerkenning**. These access rules are configured through the **Security** metabox in the page editor.

By default, only the `page` post type supports access restrictions. This can be customized using the following filter:

```
apply_filters( 'owcms::gatekeeper/metabox_post_types', array( 'page' ) )
```

### Configure number of redirection posts as option

[](#configure-number-of-redirection-posts-as-option)

Defaults to fetching all posts for the configured post types. Increase or limit this value when the query becomes too heavy by applying the filter below:

```
apply_filters( 'owcms::gatekeeper/metabox_number_of_redirect_options', -1 )
```

###  Health Score

42

—

FairBetter than 90% of packages

Maintenance89

Actively maintained with recent releases

Popularity15

Limited adoption so far

Community13

Small or concentrated contributor base

Maturity44

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 51.2% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~8 days

Total

10

Last Release

56d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/62775?v=4)[Anton Zhuravsky](/maintainers/Yard)[@yard](https://github.com/yard)

---

Top Contributors

[![mvdhoek1](https://avatars.githubusercontent.com/u/11852816?v=4)](https://github.com/mvdhoek1 "mvdhoek1 (21 commits)")[![YvetteNikolov](https://avatars.githubusercontent.com/u/48315669?v=4)](https://github.com/YvetteNikolov "YvetteNikolov (13 commits)")[![robertbossaert](https://avatars.githubusercontent.com/u/4972135?v=4)](https://github.com/robertbossaert "robertbossaert (5 commits)")[![ictbeheer](https://avatars.githubusercontent.com/u/14947039?v=4)](https://github.com/ictbeheer "ictbeheer (2 commits)")

###  Code Quality

Code StylePHP\_CodeSniffer

### Embed Badge

![Health badge](/badges/plugin-owc-mijn-services/health.svg)

```
[![Health](https://phpackages.com/badges/plugin-owc-mijn-services/health.svg)](https://phpackages.com/packages/plugin-owc-mijn-services)
```

###  Alternatives

[infinum/eightshift-libs

WordPress libs developed by Eightshift team to use in modern WordPress.

63118.9k3](/packages/infinum-eightshift-libs)[drupal-code-builder/drupal-code-builder

Code generator for Drupal

27241.1k1](/packages/drupal-code-builder-drupal-code-builder)[php-di/zf1-bridge

Integrates PHP-DI to Zend Framework 1

27457.8k1](/packages/php-di-zf1-bridge)[sansec/composer-integrity-plugin

5624.2k1](/packages/sansec-composer-integrity-plugin)[okapi/aop

PHP AOP is a PHP library that provides a powerful Aspect Oriented Programming (AOP) implementation for PHP.

3812.0k](/packages/okapi-aop)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
