1
0
Fork 0
forked from lino/radar-wp
radar-wp-custom/squat-radar.php

32 lines
1,009 B
PHP
Raw Permalink Normal View History

<?php
/**
* Squat Radar bootstrap file
*
* @link https://radar.squat.net/
* @since 2.0.0
* @package Squat_Radar
*
* @wordpress-plugin
2024-08-19 03:50:32 +02:00
* Plugin Name: Squat Radar calendar integration custom
* Plugin URI: https://0xacab.org/radar/radar-wp
2024-08-19 04:08:12 +02:00
* Description: Provides widget, and shortcode, integration for displaying events from https://radar.squat.net/ agenda.
2022-03-24 21:28:41 +01:00
* 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
2024-08-19 03:50:32 +02:00
* 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();