- 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>
31 lines
1016 B
PHP
Executable File
31 lines
1016 B
PHP
Executable File
<div id="top-bar" class="d-flex-between">
|
|
|
|
<!-- SEARCH-->
|
|
<?php require plugin_dir_path( __DIR__ ) . 'components/list/wp-database-tools-component-list-search.php'; ?>
|
|
|
|
<select id="choices" class="w-40p d-grid" placeholder="<?php echo __( 'Filter by origin', $this->plugin_name ); ?>">
|
|
<option selected disabled hidden value="placeholder$default" data-select-options="placeholder" placeholder><?php echo __( 'Filter by origin', $this->plugin_name ); ?></option>
|
|
</select>
|
|
|
|
<div class="d-flex-between">
|
|
|
|
<?php if ( $this->license->get_is_active() ) : ?>
|
|
|
|
<button type="submit" name="submit" id="scanner-btn" class="button button-secondary b-none btn-dark py-5 px-20 text-uppercase ml-20" disabled>
|
|
<?php echo __( 'Scan', $this->plugin_name ); ?>
|
|
</button>
|
|
|
|
<?php else : ?>
|
|
|
|
<button disabled id="scanner-btn" class="button button-secondary b-none btn-dark py-5 px-20 text-uppercase ml-20">
|
|
<?php echo __( 'Scan', $this->plugin_name ); ?>
|
|
</button>
|
|
|
|
<?php endif; ?>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
</div>
|