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,28 @@
<div class="tvd-row">
<div class="tvd-col tvd-s4">
<span class="tvd-card-title">
<#= model.get('name') #>
</span>
<# if(_.isNumber( model.get( 'id' ) )){ #>
<span data-tooltip="<?php _e( 'Change Text', 'thrive-cb' ); ?>" data-position="top" class="tvd-tooltipped tvd-icon-pencil tvd-pointer tcb-admin-edit-category-name"></span>
<# } #>
</div>
<div class="tvd-col tvd-s8">
<# if(_.isNumber( model.get( 'id' ) )){ #>
<span data-tooltip="<?php _e( 'Delete Category', 'thrive-cb' ); ?>" data-position="left" class="tvd-tooltipped tcb-admin-delete-category-item">
<?php echo tcb_admin_icon( 'delete' ); ?>
</span>
<# } #>
</div>
</div>
<# if ( ! collection_length ) { #>
<p><?php echo __('You have no templates added in this category. You can either save elements in Architect as Content Templates or move existing templates to this category'); ?></p>
<# } #>
<div class="tcb-masonry-grid fill-content tcb-admin-template-t-item"></div>
<div class="tvd-row tcb-admin-show-more-less hidden">
<div class="tvd-col tvd-s12 tvd-center">
<span class="tvd-pointer tcb-admin-show-more-less-btn"><?php echo __( ' Show more templates', 'thrive-cb' ) ?></span>
</div>
</div>

View File

@@ -0,0 +1,19 @@
<div class="tvd-row">
<div class="tvd-col tvd-s12">
<h3>
<#= model.get('name') #>
</h3>
</div>
</div>
<div class="tvd-row">
<div class="tvd-col tvd-s12 tcb-admin-template-preview">
<img src="<#= model.get('thumb') ? model.get('thumb').url : model.get('image_url') #>" alt="Template Image">
</div>
</div>
<div class="tvd-row">
<div class="tvd-col tvd-s12">
<a href="#templatessymbols" class="tvd-btn-flat tvd-btn-flat-primary tvd-btn-flat-dark tvd-waves-effect">
&laquo; <?php echo __( 'Back to templates & symbols', 'thrive-cb' ); ?>
</a>
</div>
</div>

View File

@@ -0,0 +1 @@
<div class="tvd-row" id="tcb-user-template-list"></div>

View File

@@ -0,0 +1,20 @@
<div class="tvd-ct-elem">
<div>
<div class="tcb-admin-template-name">
<span class="tvd-card-title">
<#= model.get('name') #>
</span>
<span data-tooltip="<?php _e( 'Change Text', 'thrive-cb' ); ?>" data-position="top" class="tvd-tooltipped tvd-icon-pencil tvd-pointer tcb-admin-edit-template-name"></span>
</div>
<a data-tooltip="<?php _e( 'Move to another Category', 'thrive-cb' ); ?>" data-position="top" class="tvd-tooltipped">
<?php echo tcb_admin_icon( 'move-symbol' ); ?>
</a>
<a data-tooltip="<?php _e( 'Delete Template', 'thrive-cb' ); ?>" data-position="top" class="tvd-tooltipped tcb-admin-delete-template-item">
<?php echo tcb_admin_icon( 'delete' ); ?>
</a>
</div>
<div class="tcb-admin-image-overlay-wrapper">
<img src="<#= model.get('thumb') && model.get('thumb').url ? model.get('thumb').url : model.get('image_url') #>" class="sym-image" data-height="<#= model.get('thumb').h || 120 #>" data-width="<#= model.get('thumb').w || 250 #>"/>
<a class="tcb-admin-preview-text" href="#template/<#= model.get('id') #>"><?php echo __( 'Preview', 'thrive-cb' ); ?></a>
</div>
</div>