BossBey File Manager
PHP:
8.2.30
OS:
Linux
User:
imagivibe
Root
/
home
/
imagivibe
/
public_html
/
wp-content
/
plugins
/
sg-cachepress
/
core
/
Install_Service
📤 Upload
📝 New File
📁 New Folder
Close
Editing: Install_Cleanup.php
<?php namespace SiteGround_Optimizer\Install_Service; use SiteGround_Optimizer\Htaccess\Htaccess; use SiteGround_Optimizer\Options\Options; class Install_Cleanup { /** * Run the install procedure. * * @since 5.5.4 */ public static function cleanup() { $htaccess = new Htaccess(); if ( ! Options::is_enabled( 'siteground_optimizer_enable_browser_caching' ) ) { $htaccess->disable( 'browser-caching' ); } if ( ! Options::is_enabled( 'siteground_optimizer_enable_gzip_compression' ) ) { $htaccess->disable( 'gzip' ); } } }
Save
Cancel