# Plugin Development ## Plugin structuur ``` plugins/MijnPlugin/ ├── plugin.json # Plugin metadata ├── plugin.php # Plugin code └── config.json # Optionele configuratie ``` ## plugin.json ```json { "name": "Mijn Plugin", "version": "1.0.0", "author": "Jouw Naam", "description": "Beschrijving" } ``` ## plugin.php voorbeeld ```php Hello World'; ``` ## CMSAPI gebruiken ```php getConfig(); $content = $api->getContent(); ```