Files
Cooper Dalrymple 5f702470cc
Validate Build / validate-build (push) Failing after 36s
Initial setup, untested
2026-08-25 14:58:39 -05:00

76 lines
2.1 KiB
PHP

<?php
/**
* Ogre Consent
*
* @package ogre-consent
* @author cleverogre
* @copyright 2026 CleverOgre
* @license GLP-3.0-or-later
* @version 0.0.0
* @since 0.0.0
*
* @wordpress-plugin
* Plugin Name: Ogre Consent
* Plugin URI: https://git.cleverogre.com/cleverogre/ogre-consent/
* Description: Ogre Consent plugin
* Version: 0.0.0
* Requires at least: 6.0
* Requires PHP: 8.2
* Author: CleverOgre
* Author URI: https://cleverogre.com/
* Text Domain: plugin
* License: GPLv3 or later
* License URI: http://www.gnu.org/licenses/gpl-3.0.html
* Update URI: https://git.cleverogre.com/cleverogre/ogre-consent/
* Domain Path: /lang
* Icon1x: https://plugins.cleverogre.com/wp-content/uploads/ogre-consent-icon-128x128.png
* Icon2x: https://plugins.cleverogre.com/wp-content/uploads/ogre-consent-icon.png
* BannerLow: https://plugins.cleverogre.com/wp-content/uploads/ogre-consent-banner-772x250.png
* BannerHigh: https://plugins.cleverogre.com/wp-content/uploads/ogre-consent-banner.png
* Requires License: yes
*/
namespace Ogre;
use Ogre\Consent\Settings;
defined('ABSPATH') || exit;
require_once 'vendor/autoload.php';
final class Consent extends Plugin {
protected function __construct() {
parent::__construct();
$this->add_files([
'inc/class-settings.php',
]);
}
protected function enable():void {
parent::enable();
add_filter('plugin_action_links_' . self::get_basename(), [$this, 'action_links'], 10, 1);
}
protected function disable():void {
parent::disable();
remove_filter('plugin_action_links_' . self::get_basename(), [$this, 'action_links'], 10);
}
public function action_links(array $links): array
{
if (current_user_can('manage_options')) {
array_unshift($links, sprintf(
'<a href="%s">%s</a>',
esc_url(Settings::instance()->get_url()),
esc_html(self::__('Settings'))
));
}
return $links;
}
}
Consent::instance();