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,5 @@
<label class="tcb-checkbox">
<input type="checkbox" class="<#= inputData.classes #>" data-fn="setVal"
data-elem-attr="<#= inputData.id #>" <#= parseInt( value ) === 1 ? 'checked' : '' #> >
<span><#= inputData.label #></span>
</label>

View File

@@ -0,0 +1,14 @@
<div class="settings">
<div class="label"><?php echo __( 'Message', 'thrive-cb' ); ?></div>
<div class="tve-email-modal-settings mt-10 click" data-fn="openSettings">
<div class="input">
<a href="javascript:void(0)" class="click center style-input">
<span class="mr-5">
<?php tcb_icon( 'pen-nib-light' ); ?>
</span>
<span class="tcb-truncate t-80"><?php echo __( 'Compose Email', 'thrive-cb' ); ?></span>
</a>
</div>
</div>
</div>

View File

@@ -0,0 +1,8 @@
<div>
<div class="label"><#= inputData.label #></div>
<input type="text" class="<#= inputData.classes #>" value="<#= value #>" placeholder="<#= inputData.placeholder #>"
data-fn="setVal" data-fn-focusout="onFocusout" data-elem-attr="<#= inputData.id #>">
<div class="info-text orange error-details email-err-box tcb-hide">
<p class="m-0 p-0 email-err" data-elem-msg="<#= inputData.id #>"></p>
</div>
</div>

View File

@@ -0,0 +1,10 @@
<div class="label">
<#= inputData.label #>
<# if ( inputData.tooltip ) { #>
<span data-paneltlt-hover class="tve-cb-img-info ml-5 tcb-message-tooltip"><?php tcb_icon( 'info-circle-solid' ); ?></span>
<# } #>
</div>
<textarea rows="3" class="<#= inputData.classes #>" data-fn="setVal" data-fn-focusout="onFocusout" data-elem-attr="<#= inputData.id #>"><#= value #></textarea>
<div class="info-text orange error-details email-err-box tcb-hide">
<p class="m-0 p-0 email-err" data-elem-msg="<#= inputData.id #>"></p>
</div>