18 lines
554 B
PHP
18 lines
554 B
PHP
<?php
|
|
|
|
load([
|
|
'ProjectPage' => 'models/ProjectPage.php',
|
|
], __DIR__);
|
|
|
|
Kirby::plugin('adrienpayet/pdc-notifications', [
|
|
'routes' => [
|
|
require(__DIR__ . '/routes/readAll.php'),
|
|
require(__DIR__ . '/routes/read.php')
|
|
],
|
|
'userMethods' => [
|
|
'sendNotification' => require(__DIR__ . '/user-methods/send.php'),
|
|
'deleteNotification' => require(__DIR__ . '/user-methods/delete.php'),
|
|
'readNotification' => require(__DIR__ . '/user-methods/read.php'),
|
|
'readAllNotifications' => require(__DIR__ . '/user-methods/readAll.php')
|
|
]
|
|
]);
|