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,15 @@
<?php
/**
* Thrive Themes - https://thrivethemes.com
*
* @package thrive-visual-editor
*/
if ( ! defined( 'ABSPATH' ) ) {
exit; // Silence is golden!
}
?>
<a href="javascript:void(0);" class="click lp-category-filter" data-fn="filter" data-source="<#= filterSource #>" data-key="<#= key #>">
<span><#= label #></span>
<span><#= counter #></span>
</a>

View File

@@ -0,0 +1,54 @@
<?php
/**
* Thrive Themes - https://thrivethemes.com
*
* @package thrive-visual-editor
*/
if ( ! defined( 'ABSPATH' ) ) {
exit; // Silence is golden!
}
$spinner_gif = tve_editor_css( 'images/loading-spinner.gif' );
?>
<div class="lp-template-item modal-item <#- active ? 'selected': ''#>" data-key="<#- key #>" data-cloud="<#- cloud #>" data-uid="<#= uid || ''#>" data-id="<#= id || '' #>">
<div class="tcb-relative">
<div class="lp-template-title mb-10">
<span class="lp-set-title"><#= name #></span>
<# if(moreOptions){ #>
<span class="click" data-fn="toggleMoreOptions">
<?php tcb_icon( 'three-dots' ); ?>
</span>
<div class="lp-more-options-panel">
<a href="javascript:void(0);" class="click" data-fn="openDeleteWarning"><?php echo __( 'Delete', 'thrive-cb' ); ?></a>
</div>
<# } #>
<span class="lp-check-icon">
<?php tcb_icon( 'check-light' ); ?>
</span>
</div>
<div class="lp-template-wrapper click" data-fn="<#- fn #>">
<# if ( is_from_pack ) { #>
<div class="design-pack-label"><?php echo esc_html__( 'Design Pack', 'thrive-cb' ); ?></div>
<# } #>
<# if(locked) { #>
<a href="https://thrivethemes.com/architect/upgrade/?utm_campaign=tarc-upgrade&utm_medium=tarc-lite&utm_source=ttb-ui&utm_content=tarc-element&utm_term=ttb-customer" title="Thrive Architect" target="_blank">
<div class="template-locked-text">
<p>
<?php echo __( 'Upgrade to Access ', 'thrive-cb' ); ?>
</p>
<p class="mb-10">
<?php echo __( 'Upgrade to the full version of Thrive Architect to unlock all landing page sets ', 'thrive-cb' ); ?>
</p>
<button>
<?php echo __( 'Upgrade', 'thrive-cb' ); ?>
</button>
</div>
</a>
<# } #>
<div class="lazy-loading">
<img class="tve-lazy-img" src="<?php echo $spinner_gif; ?>" data-src="<#- url #>" data-ratio="<#- parseFloat(parseInt(h) / parseInt(w)).toFixed(3) #>"/>
</div>
</div>
</div>
</div>

View File

@@ -0,0 +1,14 @@
<div class="tve-landing-page-text-preview tve-remove-auxiliary-content canvas-mode">
<div class="tve-border-radius">
<div class="tve-landing-page-text-controls">
<div class="tve_left tcb-element-title"><?php echo __( 'All Elements', 'thrive-cb' ) ?></div>
<div id="tcb-close-lp-fonts-icon" class="tve_right tcb-close-lp-fonts"></div>
</div>
<div id="tcb-fonts-all-texts-wrapper">
<?php tcb_template( 'typography.phtml', null, false, 'backbone' ); ?>
</div>
</div>
<div class="tcb-panel-right">
<button id="tcb-close-lp-fonts-btn" class="tcb-btn-green tcb-close-lp-fonts"><?php echo __( 'Close', 'thrive-cb' ) ?></button>
</div>
</div>

View File

@@ -0,0 +1,55 @@
<?php
/**
* Thrive Themes - https://thrivethemes.com
*
* @package thrive-visual-editor
*/
if ( ! defined( 'ABSPATH' ) ) {
exit; // Silence is golden!
}
?>
<div class="lp-template-item modal-item lp-set-template-item <#= typeof locked !== 'undefined' ? 'locked': '' #> <#- extraClass #>" data-set="<#= set #>" data-type="<#= type #>">
<div class="lp-template-title mb-15">
<div class="lp-template-title-text">
<span class="lp-set-title"><#= label #></span>
<i></i>
<span class="lp-set-number"><#= templates.length #> <?php echo __( 'pages', 'thrive-cb' ); ?></span>
</div>
<div class="lp-template-icons">
<# if( locked ) { #>
<span class="lp-locked click mouseleave mouseover" data-fn="toggleTooltip" data-tooltip-type="full"><?php echo __( 'UPGRADE', 'thrive-cb' ); ?></span>
<# } #>
<?php
/**
* Allows other plugins / themes to insert icons here
*/
do_action( 'tcb_extra_landing_page_lightbox_set_icons' );
?>
<# if( hasBlocks ) { #>
<?php tcb_icon( 'cubes-light', false, 'sidebar', 'click mouseleave mouseover', array(
'data-fn' => 'toggleTooltip',
'data-tooltip-type' => 'block',
) ); ?>
<# } #>
</div>
</div>
<div class="lp-template-wrapper lp-set-template-wrapper click" data-fn="domViewSet" data-set="<#= set #>" data-type="<#= type #>">
<div class="lazy-loading">
<img class="tve-lazy-img" src="<?php echo tve_editor_css( 'images/loading-spinner.gif' ); ?>" data-src="<#= url #>"/>
</div>
</div>
<a class="tve-expand-set click" data-fn="domViewSet" data-set="<#= set #>" data-type="<#= type #>">
<?php tcb_icon( 'expand-arrows-alt-regular' ); ?>
<span>
<?php echo __( 'EXPAND', 'thrive-cb' ); ?>
</span>
</a>
<div class="lp-set-action-button lp-prev click" data-fn="prevSetTemplate">
<?php tcb_icon( 'chevron-left-solid' ); ?>
</div>
<div class="lp-set-action-button lp-next click" data-fn="nextSetTemplate">
<?php tcb_icon( 'chevron-right-solid' ); ?>
</div>
</div>

View File

@@ -0,0 +1,15 @@
<?php
/**
* Thrive Themes - https://thrivethemes.com
*
* @package thrive-visual-editor
*/
if ( ! defined( 'ABSPATH' ) ) {
exit; // Silence is golden!
}
?>
<div class="tve-blocks-info-wrapper">
<p class="tve-blocks-tooltip-header"><?php echo __( 'Page Blocks Ready!', 'thrive-cb' ); ?></p>
<p class="tve-blocks-tooltip-text"><?php echo __( 'This landing page set comes complete with page blocks to make building your page quicker.', 'thrive-cb' ); ?></p>
</div>

View File

@@ -0,0 +1,16 @@
<?php
/**
* Thrive Themes - https://thrivethemes.com
*
* @package thrive-visual-editor
*/
if ( ! defined( 'ABSPATH' ) ) {
exit; // Silence is golden!
}
?>
<div class="tve-blocks-info-wrapper">
<p class="tve-blocks-tooltip-header"><?php echo __( 'Upgrade to access', 'thrive-cb' ); ?></p>
<p class="tve-blocks-tooltip-text"><?php echo __( 'Upgrade to the full version of Architect to access this landing page set', 'thrive-cb' ); ?></p>
</div>