mirror of
https://codeberg.org/linos/mobilizon-block.git
synced 2025-06-05 21:49:22 +02:00
initial commit
This commit is contained in:
23
plugin.php
Normal file
23
plugin.php
Normal file
@@ -0,0 +1,23 @@
|
||||
<?php
|
||||
/**
|
||||
* Plugin Name: Mobilizon Block
|
||||
* Plugin URI: https://info.graz.social/mobilizon-block
|
||||
* Description: Mobilizon Block is a Gutenberg Block which can display events from Mobilizon.
|
||||
* Author: André Menrath
|
||||
* Author URI: https://graz.social/@linos
|
||||
* Version: 0.1
|
||||
* License: GPLv3
|
||||
* License URI: https://www.gnu.org/licenses/gpl-3.0.txt
|
||||
*
|
||||
* @package linos
|
||||
*/
|
||||
|
||||
// Exit if accessed directly.
|
||||
if ( ! defined( 'ABSPATH' ) ) {
|
||||
exit;
|
||||
}
|
||||
|
||||
/**
|
||||
* Block Initializer.
|
||||
*/
|
||||
require_once plugin_dir_path( __FILE__ ) . 'src/init.php';
|
Reference in New Issue
Block a user