Files
wordpress/wp-content/mu-plugins/hostforge.php
2026-04-09 02:49:31 +08:00

16 lines
301 B
PHP

<?php
/**
* Plugin Name: HostForge Platform
*/
if (!defined('ABSPATH')) exit;
function hf_config($key, $default = null) {
return defined($key) ? constant($key) : $default;
}
add_action('init', function () {
if (hf_config('HOSTFORGE_ENABLE_TELEMETRY', false)) {
// later: send telemetry
}
});