%PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
| Server IP : 54.36.91.62 / Your IP : 216.73.217.162 Web Server : Apache System : Linux webm002.cluster127.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64 User : wellingtpa ( 97533) PHP Version : 7.4.33 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/w/e/l/wellingtpa/wellingtonrecord/wp-content/plugins/photo-gallery/booster/ |
Upload File : |
<?php
add_action('init', function() {
add_filter('tenweb_booster_sdk', function($path) {
$version = '1.0.0';
if ( !isset($path['version']) || version_compare($path['version'], $version) === -1 ) {
$path['version'] = $version;
if ( FALSE ) {
$path['path'] = get_template_directory() . '/booster/';
}
else {
$path['path'] = WP_PLUGIN_DIR . "/" . plugin_basename(dirname(__FILE__));
}
}
return $path;
});
}, 8);
add_action('init', function() {
if (!class_exists("TenWebBooster")) {
if ( FALSE ) {
$plugin_dir = apply_filters('tenweb_booster_sdk', array(
'version' => '1.0.0',
'path' => get_template_directory() . '/booster/',
));
}
else {
$plugin_dir = apply_filters('tenweb_booster_sdk', array(
'version' => '1.0.0',
'path' => WP_PLUGIN_DIR . "/" . plugin_basename(dirname(__FILE__)),
));
}
require_once($plugin_dir['path'] . '/main.php');
function TWB($params = array()) {
if ( isset($params['is_plugin']) && !$params['is_plugin'] ) {
$plugin_dir = get_template_directory() . '/booster';
$plugin_url = get_template_directory_uri() . "/booster";
}
else {
$plugin_dir = WP_PLUGIN_DIR . "/" . plugin_basename(dirname(__FILE__));
$plugin_url = plugins_url(plugin_basename(dirname(__FILE__)));
}
$params['plugin_dir'] = $plugin_dir;
$params['plugin_url'] = $plugin_url;
return new TenWebBooster($params);
}
}
}, 10);