This repository has been archived on 2023-08-16. You can view files and clone it, but cannot push or open issues or pull requests.
footnotes/src/footnotes.php
Rumperuu cd0c6bc295 refactor: use proper dependency tracking
As you can see, there is quite a tangled web of dependency
in this project, which is something to look at later.

Fix #33
2021-04-26 09:39:41 +01:00

62 lines
1.5 KiB
PHP
Executable file
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
/**
* The footnotes WordPress Plugin.
*
* @package footnotes
* @author Mark Cheret
* @copyright 2021 Mark Cheret (email: mark@cheret.de)
* @license GPL-3.0-only
*
* @wordpress-plugin
* Plugin Name: footnotes
* Plugin URI: https://wordpress.org/plugins/footnotes/
* Description: footnotes lets you easily add highly-customisable footnotes on your WordPress Pages and Posts.
* Version: 2.7.3
* Requires at least: 3.9
* Requires PHP: 7.0
* Author: Mark Cheret
* Author URI: https://cheret.org/footnotes
* Text Domain: footnotes
* Domain Path: /languages
* License: GPL v3
* License URI: https://www.gnu.org/licenses/gpl-3.0.html
*/
declare(strict_types=1);
/**
* Defines the current Plugin version.
*
* @since 2.1.4
* @var string
*/
const C_STR_FOOTNOTES_VERSION = '2.7.3';
/**
* Defines the current environment ('development' or 'production').
*
* This primarily affects whether minified or unminified files are requested.
*
* @since 2.5.5
* @var bool
*/
const PRODUCTION_ENV = false;
/**
* Defines the Plugin entry point (relative to the `wp-content/` dir).
*
* @since 2.8.0
* @var string
*/
const PLUGIN_ENTRYPOINT = 'footnotes/footnotes.php';
// Requires the core Plugin file.
require_once dirname( __FILE__ ) . '/class/init.php';
// Add links to the Installed Plugins page on the WordPress dashboard.
add_filter( 'plugin_action_links_' . PLUGIN_ENTRYPOINT, array( 'Footnotes_Hooks', 'get_plugin_links' ), 10, 2 );
// Initialize the Plugin.
$g_obj_mci_footnotes = new Footnotes();
// Run the Plugin.
$g_obj_mci_footnotes->run();