forked from lino/radar-wp
31 lines
1,009 B
PHP
31 lines
1,009 B
PHP
<?php
|
|
|
|
/**
|
|
* Squat Radar bootstrap file
|
|
*
|
|
* @link https://radar.squat.net/
|
|
* @since 2.0.0
|
|
* @package Squat_Radar
|
|
*
|
|
* @wordpress-plugin
|
|
* Plugin Name: Squat Radar calendar integration custom
|
|
* Plugin URI: https://0xacab.org/radar/radar-wp
|
|
* Description: Provides widget, and shortcode, integration for displaying events from https://radar.squat.net/ agenda.
|
|
* Version: 2.0.9
|
|
* Author: Radar contributors
|
|
* License: GPL-2.0+
|
|
* License URI: http://www.gnu.org/licenses/gpl-2.0.txt
|
|
* Text Domain: squat-radar
|
|
* Domain Path: /languages
|
|
* Gitea Plugin URI: https://git.systemausfall.org/newyorck/radar-wp-custom
|
|
*/
|
|
|
|
if ( ! defined( 'ABSPATH' ) ) {
|
|
die;
|
|
}
|
|
|
|
define( 'SQUAT_RADAR_URL', plugin_dir_url( __FILE__ ) );
|
|
define( 'SQUAT_RADAR_DIR', trailingslashit( plugin_dir_path( __FILE__ ) ) );
|
|
include SQUAT_RADAR_DIR . 'includes/squat-radar-instance.php';
|
|
|
|
Squat_Radar_Instance::get_instance();
|