Files
roi-theme/wp-content/plugins/w3-total-cache/DbCache_Page.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

52 lines
1.1 KiB
PHP
Executable File

<?php
/**
* File: DbCache_Page.php
*
* @package W3TC
*/
namespace W3TC;
/**
* Class DbCache_Page
*
* phpcs:disable PSR2.Classes.PropertyDeclaration.Underscore
* phpcs:disable WordPress.PHP.NoSilencedErrors.Discouraged
* phpcs:disable WordPress.WP.AlternativeFunctions.file_get_contents_file_get_contents
*/
class DbCache_Page extends Base_Page_Settings {
/**
* Current page
*
* @var string
*/
protected $_page = 'w3tc_dbcache';
/**
* Renders the database cache view page.
*
* @return void
*/
public function view() {
$dbcache_enabled = $this->_config->get_boolean( 'dbcache.enabled' );
include W3TC_INC_DIR . '/options/dbcache.php';
}
/**
* Configures the database cluster settings.
*
* @return void
*/
public function dbcluster_config() {
$this->_page = 'w3tc_dbcluster_config';
if ( Util_Environment::is_dbcluster( $this->_config ) ) {
$content = @file_get_contents( W3TC_FILE_DB_CLUSTER_CONFIG );
} else {
$content = @file_get_contents( W3TC_DIR . '/ini/dbcluster-config-sample.php' );
}
include W3TC_INC_OPTIONS_DIR . '/enterprise/dbcluster-config.php';
}
}