- 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>
102 lines
3.4 KiB
PHP
Executable File
102 lines
3.4 KiB
PHP
Executable File
<div id="list-display" class="transients">
|
|
|
|
<!-- TOP BAR -->
|
|
<?php require plugin_dir_path( __DIR__ ) . 'components/wp-database-tools-admin-component-top-bar.php'; ?>
|
|
|
|
<!-- FILTERS -->
|
|
<?php require plugin_dir_path( __DIR__ ) . 'components/wp-database-tools-admin-component-categories-filters.php'; ?>
|
|
|
|
|
|
<div class="mt-10">
|
|
|
|
<!-- BULK ACTIONS -->
|
|
<?php require plugin_dir_path( __DIR__ ) . 'components/wp-database-tools-admin-component-bulk-actions.php'; ?>
|
|
|
|
<div class="d-flex-between">
|
|
|
|
<!-- BULK ACTIONS SELECTIONS-->
|
|
<?php require plugin_dir_path( __DIR__ ) . 'components/wp-database-tools-admin-component-bulk-actions-selectors.php'; ?>
|
|
|
|
<div class="d-flex-between">
|
|
<!-- SELECT PAGINATION -->
|
|
<?php require plugin_dir_path( __DIR__ ) . 'components/wp-database-tools-admin-component-pagination-select.php'; ?>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="d-flex-between bg-light-blue-color-x2 px-10 table-options">
|
|
<div class="d-flex-start align-items-center">
|
|
<input id="check-typebox-all" class="m-0" type="checkbox" onchange="checkAll(this)">
|
|
<p class="m-0 ml-10 font-bold"><?php echo __( 'ID', $this->plugin_name ); ?></p>
|
|
<?php
|
|
$sort_row = 'id';
|
|
$sort_active_asc = 'active';
|
|
$sort_active_desc = '';
|
|
require plugin_dir_path( __DIR__ ) . 'components/wp-database-tools-admin-component-sort.php';
|
|
?>
|
|
</div>
|
|
<div class="text-align-left d-flex-start align-items-center">
|
|
<p class="font-bold"><?php echo __( 'Name', $this->plugin_name ); ?></p>
|
|
<?php
|
|
$sort_row = 'name';
|
|
$sort_active_asc = '';
|
|
$sort_active_desc = '';
|
|
require plugin_dir_path( __DIR__ ) . 'components/wp-database-tools-admin-component-sort.php';
|
|
?>
|
|
</div>
|
|
|
|
<p class="text-align-left font-bold"><?php echo __( 'Value', $this->plugin_name ); ?></p>
|
|
|
|
<div class="text-align-center d-flex-center align-items-center">
|
|
<p class="font-bold"><?php echo __( 'Size', $this->plugin_name ); ?></p>
|
|
<?php
|
|
$sort_row = 'size';
|
|
$sort_active_asc = '';
|
|
$sort_active_desc = '';
|
|
require plugin_dir_path( __DIR__ ) . 'components/wp-database-tools-admin-component-sort.php';
|
|
?>
|
|
</div>
|
|
|
|
<p class="text-align-center font-bold"><?php echo __( 'Autoload', $this->plugin_name ); ?></p>
|
|
|
|
<p class="text-align-center font-bold"><?php echo __( 'Status', $this->plugin_name ); ?></p>
|
|
|
|
<div class="text-align-center d-flex-center align-items-center">
|
|
<p class="font-bold"><?php echo __( 'Origin', $this->plugin_name ); ?></p>
|
|
<?php
|
|
$sort_row = 'origin';
|
|
$sort_active_asc = '';
|
|
$sort_active_desc = '';
|
|
require plugin_dir_path( __DIR__ ) . 'components/wp-database-tools-admin-component-sort.php';
|
|
?>
|
|
</div>
|
|
<p class="text-align-center font-bold"><?php echo __( 'Actions', $this->plugin_name ); ?></p>
|
|
</div>
|
|
<div class="container-list">
|
|
|
|
<!-- NOT RESULTS -->
|
|
<div id="container_list_not_found" style="display: none;">
|
|
<?php require plugin_dir_path( __DIR__ ) . 'components/wp-database-tools-admin-component-not-found.php'; ?>
|
|
</div>
|
|
|
|
<!-- LOADER -->
|
|
<div id="container_list_loader">
|
|
<?php require plugin_dir_path( __DIR__ ) . 'components/wp-database-tools-admin-component-loader.php'; ?>
|
|
</div>
|
|
|
|
<!-- LIST -->
|
|
<div id="container_list_display" style="display: none;">
|
|
<ul id="options-list" class="list m-0">
|
|
</ul>
|
|
<!-- PAGINATION -->
|
|
<?php require plugin_dir_path( __DIR__ ) . 'components/wp-database-tools-admin-component-pagination.php'; ?>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|