2021-08-01 17:27:57 +02:00
|
|
|
<?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
|
2021-08-04 15:31:04 +02:00
|
|
|
* Version: 0.3
|
2021-08-01 17:27:57 +02:00
|
|
|
* 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';
|