generated from figuren-theater/new-ft-module
-
Notifications
You must be signed in to change notification settings - Fork 0
/
plugin.php
30 lines (27 loc) · 964 Bytes
/
plugin.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<?php
/**
* Register the theater module to altis
*
* @package figuren-theater/ft-theater
* @author figuren.theater
* @copyright 2023 figuren.theater
* @license GPL-3.0+
*
* @wordpress-plugin
* Plugin Name: figuren.theater | theater
* Plugin URI: https://github.com/figuren-theater/ft-theater
* Description: ... like the figuren.theater WordPress Multisite network.
* Version: 0.2.0
* Requires at least: 6.0
* Requires PHP: 7.1
* Author: figuren.theater
* Author URI: https://figuren.theater
* Text Domain: figurentheater
* Domain Path: /languages
* License: GPL-3.0+
* License URI: http://www.gnu.org/licenses/gpl-3.0.txt
* Update URI: https://github.com/figuren-theater/ft-theater
*/
namespace Figuren_Theater\Theater;
const DIRECTORY = __DIR__;
add_action( 'altis.modules.init', __NAMESPACE__ . '\\register' );