mirror of
https://framagit.org/les/gancio.git
synced 2025-02-01 00:52:01 +01:00
27 lines
No EOL
1.1 KiB
PHP
27 lines
No EOL
1.1 KiB
PHP
<?php
|
|
/*
|
|
Plugin Name: WPGancio
|
|
Plugin URI: https://gancio.org
|
|
Description: Connects an user of a gancio instance to a Wordpress user so that published events are automatically pushed with Gancio API.
|
|
Version: 1.12
|
|
Author: Gancio
|
|
License: AGPL 3.0
|
|
|
|
WPGancio is free software: you can redistribute it and/or modify it under the
|
|
terms of the GNU Affero General Public License as published by the Free
|
|
Software Foundation, either version 3 of the license, or any later version.
|
|
|
|
WPGancio is distributed in the hope that it will be useful, but WITHOUT ANY
|
|
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
|
|
PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU Affero General Public License
|
|
along with (WPGancio). If not, see (https://www.gnu.org/licenses/agpl-3.0.html).
|
|
*/
|
|
|
|
defined('ABSPATH') or die('Nope, not accessing this');
|
|
define('WPGANCIO_DIR', plugin_dir_path(__FILE__));
|
|
require_once(WPGANCIO_DIR . 'settings.php');
|
|
|
|
require_once(WPGANCIO_DIR . 'wc.php');
|
|
require_once(WPGANCIO_DIR . 'oauth.php'); |