File: /var/www/vhosts/uyarreklam.com.tr/httpdocs/wp-content/themes/vadimarketv4/functions.php
<?php if(!defined('ABSPATH')) exit;
// Ioncube ve PHP versiyon
$temavadisiPHPVersion = phpversion();
if(strlen($temavadisiPHPVersion) >=3) $temavadisiPHPVersion = substr($temavadisiPHPVersion, 0, 3);
if($temavadisiPHPVersion == 8.0) {
include(get_template_directory() . "/inc/ioncube80.php");
exit;
}
if($temavadisiPHPVersion <= 7.0) {
include(get_template_directory() . "/inc/phpsurum.php");
exit;
}
if(!extension_loaded("IonCube Loader")) {
add_action( 'admin_notices', 'temavadisi_admin_ioncube_error' );
if(!is_admin()) {
include(get_template_directory() . "/inc/ioncube.php");
exit;
}
}
elseif ($temavadisiPHPVersion >= 8.1) {
include(get_template_directory() . "/functions/php-81.php");
}
elseif ($temavadisiPHPVersion <= 7.4) {
include(get_template_directory() . "/functions/php-74.php");
}
function temavadisi_admin_ioncube_error() {
printf( '<div class="notice notice-error"><p><strong>Sunucunuzda tema için gerekli olan Ioncube bileşeni yüklü değil. Hosting firmanızdan son sürüm Ioncube yüklemesini isteyiniz.</strong></p></div>');
}