- WordPress core y plugins - Tema Twenty Twenty-Four configurado - Plugin allow-unfiltered-html.php simplificado - .gitignore configurado para excluir wp-config.php y uploads 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
20 lines
801 B
PHP
Executable File
20 lines
801 B
PHP
Executable File
<div class="my-10">
|
|
<h4 class="m-0 text-uppercase dark-blue-color"><?php echo __( 'Current scanner', $this->plugin_name ); ?></h4>
|
|
|
|
<div id="scanner-feedback-not-loading">
|
|
<p class="m-0 font-bold font-sm text-uppercase"><?php echo __( 'Unexecuted', $this->plugin_name ); ?></p>
|
|
</div>
|
|
|
|
<div id="scanner-feedback" class="d-none">
|
|
<div class="d-flex-start align-items-center bg-dark-blue-color br-5">
|
|
<?php require plugin_dir_path( __DIR__ ) . 'components/wp-database-tools-admin-component-loader.php'; ?>
|
|
<p id="scanner-text" class="m-0 text-uppercase color-light-blue-color-x2 font-sm text-align-left "><?php echo __( 'Performing scanner', $this->plugin_name ); ?></p>
|
|
</div>
|
|
|
|
<div>
|
|
<?php echo __( 'This may take a few minutes', $this->plugin_name ); ?>
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|