Rename to ATT Site Healthcheck (private prefix)
Wholesale rename to avoid clashes with generic 'site healthcheck' plugin names on a target site: - Plugin Name: 'Site Healthcheck' → 'ATT Site Healthcheck' - Main file: site-healthcheck.php → att-site-healthcheck.php - Plugin folder: site-healthcheck → att-site-healthcheck - Admin menu slug: site-healthcheck → att-site-healthcheck - Settings slug: site-healthcheck-settings → att-site-healthcheck-settings - PHP class prefix: WPH_ → ATT_HC_ - Function prefix: wph_ → att_hc_ - Option / transient: wph_* → att_hc_* - Action/filter: wph_* → att_hc_* - CSS class prefix: wph- → att-hc- - Constants: WPH_GITEA_* → ATT_HC_GITEA_* - Class file names: class-wph-*.php → class-att-hc-*.php - Dev folder: ~/dev/wp-healthcheck → ~/dev/att-site-healthcheck Existing in-progress sessions on installs that had the old wph_session option will not migrate — they were intended for dev use only and the user has confirmed this is OK for the rename window. Smoke-tested on testsite: classes load, 14 steps discovered, save/load round-trip works, admin page renders with new att-hc- CSS classes. Recovery plugin detection unchanged — that lives in wp-site-recovery and continues to be detected by Name + Author header.
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
<?php
|
||||
if (!defined('ABSPATH')) exit;
|
||||
|
||||
return new class extends WPH_Step {
|
||||
return new class extends ATT_HC_Step {
|
||||
|
||||
public function id(): string { return 'email_test'; }
|
||||
public function title(): string { return 'Step — Email Delivery Test'; }
|
||||
@@ -61,10 +61,10 @@ return new class extends WPH_Step {
|
||||
$default_to = $current && $current->user_email ? $current->user_email : get_option('admin_email');
|
||||
$debug_data = $session_state['email_debug'] ?? null;
|
||||
?>
|
||||
<div class="wph-card" style="background:#fafafb;border-radius:6px;padding:.75rem 1rem;margin-top:.6rem">
|
||||
<div class="att-hc-card" style="background:#fafafb;border-radius:6px;padding:.75rem 1rem;margin-top:.6rem">
|
||||
<form method="post" action="<?php echo esc_url(admin_url('admin-post.php')); ?>">
|
||||
<?php wp_nonce_field('wph_step_action_email_test_send_test'); ?>
|
||||
<input type="hidden" name="action" value="wph_step_action">
|
||||
<?php wp_nonce_field('att_hc_step_action_email_test_send_test'); ?>
|
||||
<input type="hidden" name="action" value="att_hc_step_action">
|
||||
<input type="hidden" name="step" value="email_test">
|
||||
<input type="hidden" name="step_action" value="send_test">
|
||||
<p style="margin:.2rem 0 .5rem"><strong>Send test email</strong></p>
|
||||
@@ -148,7 +148,7 @@ return new class extends WPH_Step {
|
||||
// Stash the debug trace on the session so the UI can render it as a
|
||||
// collapsible block. Returning it inside the finding's detail would
|
||||
// mangle the formatting.
|
||||
$session = WPH_Session::current();
|
||||
$session = ATT_HC_Session::current();
|
||||
if ($session && $debug_requested) {
|
||||
$trace = array_slice($trace, 0, 200); // cap to avoid bloating the option
|
||||
$data = $session->data();
|
||||
@@ -157,7 +157,7 @@ return new class extends WPH_Step {
|
||||
'transport' => $transport,
|
||||
'trace' => $trace,
|
||||
];
|
||||
update_option(WPH_OPT_SESSION, $data, false);
|
||||
update_option(ATT_HC_OPT_SESSION, $data, false);
|
||||
|
||||
// Append the trace to the step's notes so the technician can edit
|
||||
// it and so it lands in the downloadable report (notes are
|
||||
|
||||
Reference in New Issue
Block a user