File "host-webfonts-local.php"

Full Path: /home/jovision/public_html/wp/wp-content/plugins/host-webfonts-local/host-webfonts-local.php
File size: 778 bytes
MIME-type: text/x-php
Charset: utf-8

<?php
/**
 * Plugin Name: OMGF
 * Plugin URI: https://daan.dev/wordpress/omgf/
 * Description: Increase GDPR/DSGVO compliance and leverage browser cache by automatically self-hosting Google Fonts.
 * Version: 6.3.10
 * Author: Daan from Daan.dev
 * Author URI: https://daan.dev
 * Text Domain: host-webfonts-local
 * License: GPL2v2 or later
 */

defined( 'ABSPATH' ) || exit;

/**
 * Define constants.
 */
define( 'OMGF_PLUGIN_DIR', plugin_dir_path( __FILE__ ) );
define( 'OMGF_PLUGIN_FILE', __FILE__ );
define( 'OMGF_PLUGIN_BASENAME', plugin_basename( OMGF_PLUGIN_FILE ) );
define( 'OMGF_DB_VERSION', '6.3.1' );

/**
 * Takes care of loading classes on demand.
 */
require_once OMGF_PLUGIN_DIR . 'vendor/autoload.php';

/**
 * All systems GO!!!
 */
$omgf = new OMGF\Plugin();