ascvh@#%(^-^)V ?host,ip,port,protocol,title,domain,country,city,link,org ???à JFIF x x ?? C ?? C ?à " ?? ?? μ } !1AQa "q2?‘?#B±áR?e$3br? %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz??…???‰?’“”?–—???¢£¤¥|§¨?a23′μ?·?1o??????èéêòó???×?ùúáa?????èéê?òó???÷?ùú?? ?? μ w !1AQ aq"2?B‘?±á #3Rebr?{
File "visualcomposer.php"
Full Path: /home/zcziejy/ryadselyen/plugins/shortpixel-image-optimiser/class/external/visualcomposer.php
File size: 549 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly.
}
// Visual Composer and compat class.
class visualComp
{
public function __construct()
{
add_filter('shortpixel/init/automedialibrary', array($this, 'check_vcinline'));
}
// autolibrary should not do things when VC is being inline somewhere.
public function check_vcinline($bool)
{
if ( function_exists( 'vc_action' ) && vc_action() == 'vc_inline' )
return false;
else
return $bool;
}
} // Class
$vc = new visualComp();