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,22 @@
<p>
<strong>
<?php
echo sprintf(
__( 'Connection lost - there is a new version of %s available but your thrivethemes.com account must be %s in order to update. %s', 'thrive-dash' ),
$name,
sprintf(
'<a href="%s">%s</a>',
'admin.php?page=tve_dash_ttw_account',
__( 'connected', 'thrive-dash' )
),
sprintf(
'<a class="%s" aria-label="%s" href="%s">' . __( 'View version %s details', 'thrive-dash' ) . '</a>.',
'thickbox open-plugin-details-modal',
$name,
$details_url,
$version
)
)
?>
</strong>
</p>

View File

@@ -0,0 +1,27 @@
<p>
<strong>
<?php
echo sprintf(
__( 'License expired - there is a new version of %s available but your license must be %s to update. %s', 'thrive-dash' ),
$name,
sprintf(
'<a target="_blank" href="%s">%s</a>',
'https://thrivethemes.com/themebuilder/',
__( 'renewed', 'thrive-dash' )
),
sprintf(
'<a class="%s" aria-label="%s" href="%s">' . __( 'View version %s details', 'thrive-dash' ) . '</a>.',
'thickbox open-plugin-details-modal',
$name,
$details_url,
$version
)
)
?>
</strong>
<?php if ( isset( $recheck_url ) ) : ?>
<a class="ttw-cla" href="<?php echo $recheck_url; ?>">
<?php echo __( 'Check license again', 'thrive-dash' ); ?>
</a>
<?php endif; ?>
</p>

View File

@@ -0,0 +1,27 @@
<p>
<strong>
<?php
echo sprintf(
__( 'Membership expired - there is a new version of %s available but your license must be %s to update. %s', 'thrive-dash' ),
$name,
sprintf(
'<a target="_blank" href="%s">%s</a>',
'https://thrivethemes.com/themebuilder/',
__( 'renewed', 'thrive-dash' )
),
sprintf(
'<a class="%s" aria-label="%s" href="%s">' . __( 'View version %s details', 'thrive-dash' ) . '</a>.',
'thickbox open-plugin-details-modal',
$name,
$details_url,
$version
)
)
?>
</strong>
<?php if ( isset( $recheck_url ) ) : ?>
<a class="ttw-cla" href="<?php echo $recheck_url; ?>">
<?php echo __( 'Check license again', 'thrive-dash' ); ?>
</a>
<?php endif; ?>
</p>

View File

@@ -0,0 +1,36 @@
<p>
<strong>
<?php
echo sprintf(
__( 'No license - there is a new version of %s available but no license could be found for it. %s', 'thrive-dash' ),
$name,
sprintf(
'<a class="%s" aria-label="%s" href="%s">' . __( 'View version %s details', 'thrive-dash' ) . '</a>.',
'thickbox open-plugin-details-modal',
$name,
$details_url,
$version
)
)
?>
</strong>
<a class="ttw-rnw" href="https://thrivethemes.com/themebuilder/" target="_blank" rel="noopener">
<?php echo __( 'Buy new license', 'thrive-dash' ) ?>
</a>
<?php if ( isset( $recheck_url ) ) : ?>
<a class="ttw-cla" href="<?php echo $recheck_url; ?>">
<?php echo __( 'Check license again', 'thrive-dash' ); ?>
</a>
<?php endif; ?>
</p>
<style>
.ttw-rnw {
color: #fff !important;
background-color: #1e5496;
text-decoration: none !important;
padding: 0 15px;
border-radius: 3px;
display: inline-block;
line-height: 28px;
}
</style>

View File

@@ -0,0 +1,17 @@
<p>
<strong>
<?php
echo sprintf(
__( 'There is a new version of %s available. %s', 'thrive-dash' ),
$name,
sprintf(
'<a class="%s" aria-label="%s" href="%s">' . __( 'View version %s details', 'thrive-dash' ) . '</a>.',
'thickbox open-plugin-details-modal',
$name,
$details_url,
$version
)
)
?>
</strong>
</p>