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,38 @@
<?php /** @var $this TD_TTW_User_Licenses */ ?>
<div class="td-license-cnt">
<h2 class="products-h2">
<?php echo __( 'License Details', 'thrive-dash' ) ?>
</h2>
<div class="td-refresh-license">
<a href="<?php echo $this->get_recheck_url() ?>">
<?php echo __( 'Refresh', 'thrive-dash' ) ?>
</a>
</div>
<?php foreach ( $this->get_licenses_details() as $license_data ) : ?>
<?php $license = new TD_TTW_License( $license_data ); ?>
<?php /** @var TD_TTW_License $license */ ?>
<div class="td-ttw-license-details">
<span> <?php echo $license->get_name() ?> </span>
<span class="td-badge<?php echo ! $license->is_active() ? '-expired' : '' ?>">
<?php echo $license->get_state(); ?>
</span>
<div class="td-rcnt">
<?php if ( ! $license->is_refunded() && ! empty( $license->get_expiration() ) ) : ?>
<span><?php echo __( 'Renewal date - ', 'thrive-dash' ) . $license->get_expiration(); ?></span>
<?php elseif ( ! empty( $license->get_refunded_date() ) ) : ?>
<span><?php echo __( 'Refund date - ', 'thrive-dash' ) . $license->get_refunded_date(); ?></span>
<?php endif; ?>
</div>
<?php if ( ! $license->is_active() ) : ?>
<div class="td-renew-license">
<a href="<?php echo TD_TTW_Update_Manager::SUITE_URL ?>">
<?php echo __( 'Renew license', 'thrive-dash' ) ?>
</a>
</div>
<?php endif; ?>
</div>
<?php endforeach; ?>
</div>

View File

@@ -0,0 +1,19 @@
<div class="notice error tve-dashboard-license-message tvd-license <?php echo $classes ?>">
<svg class="td-icon">
<use xlink:href="#icon-multiple"></use>
</svg>
<h4><?php echo __( 'Multiple thrive subscriptions have expired.', 'thrive-dash' ) ?></h4>
<p>
<?php echo __( "An active license is needed to access your software or edit your content. Youll also get access to new features, updates, security improvements, templates and support. Your visitors will still be able to access any content you've created.", 'thrive-dash' ) . ' ' . $extra_text ?>
<?php echo __( "Doesn't sound right? Your license might need to be refreshed.", 'thrive-dash' ); ?>
<a href="<?php echo TD_TTW_User_Licenses::get_instance()->get_recheck_url(); ?>">
<?php echo __( 'Click here to refresh your license now.', 'thrive-dash' ) ?>
</a>
</p>
<div>
<a href="https://help.thrivethemes.com/en/articles/8223498-what-happens-when-your-thrive-product-license-expires"
target="_blank"><?php echo __( 'Learn more', 'thrive-dash' ) ?></a>
<a class="tve-license-link" target="_blank"
href="<?php echo tvd_get_individual_plugin_license_link() ?>"><?php echo __( 'Renew now', 'thrive-dash' ) ?></a>
</div>
</div>

View File

@@ -0,0 +1,20 @@
<div class="notice error tve-dashboard-license-message tvd-license <?php echo $classes ?>">
<svg class="td-icon">
<use xlink:href="#icon-multiple"></use>
</svg>
<h4><?php echo __( 'Your Thrive Suite subscription has expired.', 'thrive-dash' ) ?></h4>
<p>
<?php echo __( "An active license is needed to access your software or edit your content. Youll also get access to new features, updates, security improvements, templates and support. Your visitors will still be able to access any content you've created.", 'thrive-dash' ) . ' ' . $extra_text ?>
<?php echo __( "Doesn't sound right? Your license might need to be refreshed.", 'thrive-dash' ); ?>
<a href="<?php echo TD_TTW_User_Licenses::get_instance()->get_recheck_url(); ?>">
<?php echo __( 'Click here to refresh your license now.', 'thrive-dash' ) ?>
</a>
</p>
<div>
<a href="https://help.thrivethemes.com/en/articles/8223498-what-happens-when-your-thrive-product-license-expires"
target="_blank"><?php echo __( 'Learn more', 'thrive-dash' ) ?></a>
<a class="tve-license-link" target="_blank"
href="<?php echo tvd_get_individual_plugin_license_link() ?>"><?php echo __( 'Renew now', 'thrive-dash' ) ?></a>
</div>
</div>