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 @@
<select id="tcb-condition-display-autocomplete"></select>

View File

@@ -0,0 +1,4 @@
<li class="select2-selection__choice">
<span class="select2-selection__choice__remove" role="presentation" data-value="<#= data.value #>">×</span>
<span class="select2-title"><#= data.label #></span>
</li>

View File

@@ -0,0 +1,4 @@
<select class="change" data-fn="selectChanged">
<option value="1"><?php echo esc_html__( 'True', 'thrive-cb' ) ?></option>
<option value="0"><?php echo esc_html__( 'False', 'thrive-cb' ) ?></option>
</select>

View File

@@ -0,0 +1 @@
<div class="tcb-condition-checkbox-list"></div>

View File

@@ -0,0 +1,4 @@
<div class="tcb-condition-date-time-container">
<div class="tcb-condition-date-time"></div>
<div class="tcb-condition-date-picker"></div>
</div>

View File

@@ -0,0 +1,2 @@
<input class="tcb-condition-input change" type="number" data-fn="inputChanged" min="<#= this.minInterval #>" max="<#= this.maxInterval #>">
<div class="tcb-interval-select tcb-conditional-display-select"></div>

View File

@@ -0,0 +1,4 @@
<input type="text" class="tcb-condition-datepicker-input change" data-fn="changeDate">
<div class="tcb-condition-datepicker-icon click" data-fn="openDatePicker">
<?php tcb_icon( 'calendar-range' ); ?>
</div>

View File

@@ -0,0 +1 @@
<div class="tcb-dropdown-container tcb-conditional-display-select"></div>

View File

@@ -0,0 +1 @@
<input class="tcb-condition-input change" data-fn="inputChanged" placeholder="<#= this.placeholderText #>">

View File

@@ -0,0 +1 @@
<input class="tcb-condition-input change" type="number" data-fn="inputChanged" step="1" min="<#= this.min #>" max="<#= this.max #>" >

View File

@@ -0,0 +1 @@
<div class="tcb-operator-select tcb-conditional-display-select"></div>

View File

@@ -0,0 +1 @@
<input class="tcb-condition-input input" data-fn="stringNameChanged" placeholder="variable name">

View File

@@ -0,0 +1,2 @@
<div class="tcb-condition-string-compare-select tcb-conditional-display-select"></div>
<input class="tcb-condition-input tcb-condition-string-value change" data-fn="stringValueChanged" placeholder="value">

View File

@@ -0,0 +1,2 @@
<input class="tcb-condition-input-hour input" type="number" data-fn="hourChanged" min="<#= this.minHours #>" max="<#= this.maxHours #>">
<input class="tcb-condition-input-minute input" type="number" data-fn="minuteChanged" min="<#= this.minMinutes #>" max="<#= this.maxMinutes #>">

View File

@@ -0,0 +1,3 @@
<a href="<?php echo admin_url( 'options-general.php' ) ?>" target="_blank" class="tcb-condition-input-timezone">
UTC+<?php echo get_option( 'gmt_offset' ) ?>
</a>