Commit inicial - WordPress Análisis de Precios Unitarios

- 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>
This commit is contained in:
root
2025-11-03 21:04:30 -06:00
commit a22573bf0b
24068 changed files with 4993111 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
<div class="mb-10 container_affected_records">
<h4 class="text-uppercase m-0 dark-blue-color"><?php echo __( 'Records affected', $this->plugin_name ); ?>:</h4>
<p class="pb-10 m-0"><?php echo __( 'The action will be executed on the following records', $this->plugin_name ); ?></p>
<ul class="m-0 mt-5 container_affected_records_list ml-20">
</ul>
</div>

View File

@@ -0,0 +1,6 @@
<div class="bg-light-red px-10 py-10 br-5 font-bold">
<div class="d-flex-start ">
<img class="mr-5" width="15px" src='<?php echo WPDBT_ADMIN_URL; ?>img/warning.svg'>
<p class="m-0"><?php echo __( "This operation is irreversible! Don't forget to make a backup of your database first!", $this->plugin_name ); ?></p>
</div>
</div>

View File

@@ -0,0 +1,32 @@
<form id="form-feed-origin-uncategorized-<?php echo $id; ?>" class="d-flex-start gap-10 form-feed-origin-uncategorized-class">
<select id="choices-origin-uncategorized-<?php echo $id; ?>" class="" onchange="updateFormUncategorized(this)" data-type="<?php echo $id; ?>" class="mr-20" name="slug">
<?php if ( ! empty( $this->database->get_plugins() ) ) : ?>
<optgroup data-type="plugin" value="plugin" label="Plugins">
<?php foreach ( $this->database->get_plugins() as $key => $plugin ) : ?>
<option value="<?php echo $plugin['slug'] . '$' . 'plugin'; ?>"><?php echo $plugin['name']; ?></option>
<?php endforeach; ?>
</optgroup>
<?php endif; ?>
<?php if ( ! empty( $this->database->get_themes() ) ) : ?>
<optgroup data-type="theme" value="theme" label="Themes">
<?php foreach ( $this->database->get_themes() as $key => $theme ) : ?>
<option value="<?php echo $theme['slug'] . '$' . 'theme'; ?>"><?php echo $theme['name']; ?></option>
<?php endforeach; ?>
</optgroup>
<?php endif; ?>
<optgroup data-type="core" value="core" label="Core">
<!-- <option>WordPress Core</option> -->
<option selected value="core$core">WordPress Core</option>
</optgroup>
</select>
<input id="uncategorized-section" type="hidden" name="section" value="options">
<input id="uncategorized-value" type="hidden" name="name" value="">
<input id="uncategorized-prefix" type="hidden" name="prefix" value="">
<input id="uncategorized-type" type="hidden" name="type" value="">
<input type="hidden" name="reliability" value="-">
<a onclick="feedOriginInitAjax(this)" data-slug="uncategorized-<?php echo $id; ?>" data-form="uncategorized" class="button font-md button-secondary b-none btn-dark color-white py-5 px-10 text-uppercase mr-20" value="<?php echo __( 'Enviar', $this->plugin_name ); ?>">Enviar</a>
</form>