-
Notifications
You must be signed in to change notification settings - Fork 0
/
plugin.php
30 lines (27 loc) · 1.23 KB
/
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
/**
* Packages to improve or extend the editing experience within the WordPress Site Editor (called Gutenberg for a long time) for all sites of the figuren.theater multisite network.
*
* @package figuren-theater/ft-site-editing
* @author figuren.theater
* @copyright 2023 figuren.theater
* @license GPL-3.0-or-later
*
* @wordpress-plugin
* Plugin Name: figuren.theater | Site Editing
* Plugin URI: https://github.com/figuren-theater/ft-site-editing
* Description: Packages to improve or extend the editing experience within the WordPress Site Editor (called Gutenberg for a long time) for all sites of the figuren.theater multisite network.
* Version: 1.7.0
* Requires at least: 6.0
* Requires PHP: 7.2
* Author: figuren.theater
* Author URI: https://figuren.theater
* Text Domain: figurentheater
* Domain Path: /languages
* License: GPL v3 or later
* License URI: http://www.gnu.org/licenses/gpl-3.0.txt
* Update URI: https://github.com/figuren-theater/ft-site-editing
*/
namespace Figuren_Theater\Site_Editing;
const DIRECTORY = __DIR__;
add_action( 'altis.modules.init', __NAMESPACE__ . '\\register' );