| Server IP : 213.186.33.4 / Your IP : 216.73.216.222 Web Server : Apache System : Linux webm005.cluster103.gra.hosting.ovh.net 6.18.39-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Tue Jul 21 12:03:15 CEST 2026 x86_64 User : karinebmkh ( 644538) PHP Version : 8.4.22 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/karinebmkh/www2/wp-content/plugins/jetpack/modules/ |
Upload File : |
<?php
/**
* Module Name: Progressive Web Apps
* Module Description: Speed up and improve the reliability of your site using the latest in web technology.
* Sort Order: 38
* Recommendation Order: 18
* First Introduced: 5.6.0
* Requires Connection: Yes
* Auto Activate: No
* Module Tags: Developers
* Feature: Traffic
* Additional Search Queries: manifest, pwa, progressive
*/
require_once ( JETPACK__PLUGIN_DIR . 'modules/pwa/class.jetpack-pwa-helpers.php' );
require_once ( JETPACK__PLUGIN_DIR . 'modules/pwa/class.jetpack-pwa-manifest.php' );
class Jetpack_PWA {
/**
* @var Jetpack_PWA
*/
private static $__instance = null;
/**
* Singleton implementation
*
* @return Jetpack_PWA
*/
public static function instance() {
if ( is_null( self::$__instance ) ) {
self::$__instance = new Jetpack_PWA;
}
return self::$__instance;
}
private function __construct() {
Jetpack_PWA_Manifest::instance();
}
}
Jetpack_PWA::instance();