Files
roi-theme/wp-content/plugins/w3-total-cache/Cdn_Page_View_Fsd_HeaderActions.php
root a22573bf0b 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>
2025-11-03 21:04:30 -06:00

44 lines
760 B
PHP
Executable File

<?php
/**
* File: Cdn_Page_View_Fsd_HeaderActions.php
*
* @package W3TC
*/
namespace W3TC;
if ( ! defined( 'W3TC' ) ) {
die();
}
?>
<p>
<?php
echo wp_kses(
sprintf(
Util_Ui::button_link(
// translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
__(
'Purge %1$sCDN%2$s completely',
'w3-total-cache'
),
Util_Ui::url( array( 'w3tc_cdn_flush' => 'y' ) )
),
'<acronym title="' . esc_attr__( 'Content Delivery Network', 'w3-total-cache' ) . '">',
'</acronym>'
),
array(
'input' => array(
'type' => array(),
'name' => array(),
'class' => array(),
'value' => array(),
'onclick' => array(),
),
'acronym' => array(
'title' => array(),
),
)
);
?>
</p>