25 lines
516 B
PHP
25 lines
516 B
PHP
<?php
|
|
/**
|
|
* Page Cache Ultimate, Page Cache standard and Speed pack are powered by Jpresta (jpresta . com)
|
|
*
|
|
* @author Jpresta
|
|
* @copyright Jpresta
|
|
* @license See the license of this module in file LICENSE.txt, thank you.
|
|
*/
|
|
|
|
use JPresta\SpeedPack\JprestaUtils;
|
|
|
|
if (!defined('_PS_VERSION_')) {exit;}
|
|
|
|
/*
|
|
* Enable stats on TTFB by default
|
|
*/
|
|
function upgrade_module_8_8_8($module)
|
|
{
|
|
$ret = true;
|
|
|
|
JprestaUtils::saveConfigurationAllShop('pagecache_statsttfb', true);
|
|
|
|
return $ret;
|
|
}
|