9 lines
301 B
PHP
9 lines
301 B
PHP
<?php
|
|
|
|
Kirby::plugin('adrienpayet/pdc-notifications', [
|
|
'userMethods' => [
|
|
'sendNotification' => require(__DIR__ . '/user-methods/send.php'),
|
|
'deleteNotification' => require(__DIR__ . '/user-methods/delete.php'),
|
|
'readNotification' => require(__DIR__ . '/user-methods/read.php')
|
|
]
|
|
]);
|