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 @@
<div class="symbols-categories-list">
<div class="term-item">
<?php echo __('Symbols','thrive-cb') ?>
</div>
</div>

View File

@@ -0,0 +1,11 @@
<div class="category-name">
<span class="cat-name"><#= category.get('name') #></span>
<# if ( category.get('term_id') !== 0 ) { #>
<a data-tooltip="<?php _e( 'Change Name', 'thrive-cb' ); ?>" data-position="top" class="tvd-tooltipped tvd-icon-pencil sym-cat-pen sym-pen edit-category-name"></a>
<a data-tooltip="<?php _e( 'Delete Category', 'thrive-cb' ); ?>" data-position="left" class="tvd-tooltipped sym-icon sym-delete delete-category">
<?php echo tcb_admin_icon( 'delete' ); ?>
</a>
<# } #>
</div>

View File

@@ -0,0 +1 @@
<div class="symbols-container"></div>

View File

@@ -0,0 +1,7 @@
<button class="create-category <# if ( ct_selected ) { #>sym-down<# } #>"><#= create_text #></button>
<# if ( ct_selected ) { #>
<div class="sym-btn-drop sym-move">
<span class="new-symbol"><?php echo __( 'Symbol', 'thrive-cb' ); ?></span>
<span class="new-cat"><?php echo __( 'Category', 'thrive-cb' ); ?></span>
</div>
<# } #>

View File

@@ -0,0 +1,23 @@
<div class="symbol-item modal-item" data-id="<#= item.get('id') #>">
<div class="sym-title-area">
<span class="symbol-title">
<span class="symbol-title-text"><#= item.get('title').rendered #></span>
<a data-tooltip="<?php _e( 'Change Name', 'thrive-cb' ); ?>" data-position="top" class="tvd-tooltipped tvd-icon-pencil sym-pen"></a>
</span>
<div class="sym-right-icons">
<a data-tooltip="<?php _e( 'Move to another Category', 'thrive-cb' ); ?>" data-position="top" class="tvd-tooltipped sym-icon sym-move">
<?php echo tcb_admin_icon( 'move-symbol' ); ?>
</a>
<a data-tooltip="<?php _e( 'Make a Copy', 'thrive-cb' ); ?>" data-position="top" class="tvd-tooltipped sym-icon sym-duplicate">
<?php echo tcb_admin_icon( 'duplicate' ); ?>
</a>
<a data-tooltip="<?php _e( 'Delete Symbol', 'thrive-cb' ); ?>" data-position="top" class="tvd-tooltipped sym-icon sym-delete">
<?php echo tcb_admin_icon( 'delete' ); ?>
</a>
</div>
</div>
<div style="background-image: url('<#= item.get('thumb').url #>');" class="sym-image edit-symbol" data-height="<#= item.get('thumb').h #>" data-width="<#= item.get('thumb').w #>">
<button><?php _e( 'Edit Symbol', 'thrive-cb' ); ?></button>
</div>
</div>

View File

@@ -0,0 +1,10 @@
<# if ( length === 0 ) { #>
<div class="sym-no-sym tcb-masonry-item">
<p><?php echo __( 'You have no symbols added in this category. You can either create a new symbol or move an existing symbol to this category.' ); ?></p>
<button class="sym-button open-create-modal"><?php echo __( 'Create New Symbol', 'thrive-cb' ); ?></button>
</div>
<# } else { #>
<div class="sym-add-item open-create-modal tcb-masonry-item">
<div><a class="sym-icon sym-plus"></a><?php echo __( 'Create New Symbol', 'thrive-cb' ); ?></div>
</div>
<# } #>

View File

@@ -0,0 +1,12 @@
<div class="symbols-error message-inline hf-only-admin">
<div class="tcb-notification">
<div class="tcb-notification-icon tcb-notification-icon-error">
<!-- --><?php //tcb_icon( 'close2' ) ?>
</div>
<div class="tcb-notification-content">
<div>
<pre><#= error_message #></pre>
</div>
</div>
</div>
</div>

View File

@@ -0,0 +1,5 @@
<div class="search-input-container">
<#= input_title #>: <input type="search" placeholder="<#= input_placeholder #>&hellip;" name="search-symbols" class="search-symbols">
</div>

View File

@@ -0,0 +1,20 @@
<div class="symbol-item modal-item" data-id="<#= item.get('id') #>">
<div class="sym-title-area">
<span class="symbol-title">
<span class="symbol-title-text"><#= item.get('title').rendered #></span>
<a data-tooltip="<?php _e( 'Change Name', 'thrive-cb' ); ?>" data-position="top" class="tvd-tooltipped tvd-icon-pencil sym-pen"></a>
</span>
<div class="sym-right-icons">
<a data-tooltip="<?php _e( 'Make a Copy', 'thrive-cb' ); ?>" data-position="top" class="tvd-tooltipped sym-icon sym-duplicate">
<?php echo tcb_admin_icon( 'duplicate' ); ?>
</a>
<a data-tooltip="<?php _e( 'Delete ', 'thrive-cb' ); ?>" data-position="top" class="tvd-tooltipped sym-icon sym-delete">
<?php echo tcb_admin_icon( 'delete' ); ?>
</a>
</div>
</div>
<div style="background-image: url('<#= item.get('thumb').url #>');" class="sym-image edit-symbol" data-height="<#= item.get('thumb').h #>" data-width="<#= item.get('thumb').w #>">
<button><?php _e( 'Edit ', 'thrive-cb' ); ?><#= type.charAt(0).toUpperCase() + type.substr(1) #></button>
</div>
</div>

View File

@@ -0,0 +1 @@
<div class="sections-container"></div>

View File

@@ -0,0 +1,5 @@
<div class="sections-list-items tcb-masonry-grid"></div>
<div class="no-items"></div>
<div class="create-section"><?php echo __( 'Create New', 'thrive-cb' ) ?>
<#= type.charAt( 0 ).toUpperCase() + type.slice( 1, -1 ) #>
</div>