-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path_define.php
More file actions
23 lines (20 loc) · 768 Bytes
/
_define.php
File metadata and controls
23 lines (20 loc) · 768 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?php
/**
* This file is part of Galette Activities plugin (https://galette.eu).
* SPDX-FileCopyrightText: Copyright © 2024-2026 The Galette Team
* SPDX-License-Identifier: GPL-3.0-or-later
*/
declare(strict_types=1);
/** @var \Galette\Core\Plugins $this */
$this->register(
name: 'Galette Activities', //Name
desc: 'Activities management', //Short description
author: 'Johan Cwiklinski', //Author
version: '1.1.2', //Version
compver: '1.2.0', //Galette compatible version
route: 'activities', //routing name and translation domain
date: '2025-12-08', //Release date
acls: [ //Permissions needed
'/activities_.*/' => 'staff'
]
);