16 lines
301 B
PHP
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
|
|
}
|
|
}); |