HEX
Server: Apache
System: Linux webm019.cluster128.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64
User: petsclubcc (68997)
PHP: 5.4.45
Disabled: _dyuweyrj4,_dyuweyrj4r,dl
Upload Files
File: /home/petsclubcc/LinkersIT.com/wp-content/themes/toka/inc/get-viewport-script.php
<?php
/*
 * Generates inline JS to set viewports.
 */
if (!function_exists('toka_get_viewport_script')) {
    function toka_get_viewport_script()
    {
        ob_start();
        echo "
    if (screen.width >= 1535 && screen.width < 2561) { 
        let mvp = document.getElementById('siteViewport');
        mvp.setAttribute('content','width=1920');
    }
    if (screen.width > 767 && screen.width < 1535) {
        let mvp = document.getElementById('siteViewport');
        mvp.setAttribute('content','width=1700');
    }
    ";
        return ob_get_clean();
    }
}