Uname:
Linux webm012.cluster130.gra.hosting.ovh.net 5.15.167-ovh-vps-grsec-zfs-classid #1 SMP Tue Sep 17 08:14:20 UTC 2024 x86_64
Software:
Apache
PHP version:
8.0.30 [ PHP INFO ] PHP os:
Linux
Server Ip:
145.239.37.162
Your Ip:
216.73.216.190
User:
dreampi (1009562) | Group:
users (100)
Safe Mode:
OFF
Disable Function:
_dyuweyrj4,_dyuweyrj4r,dl
<?php
/* Twenty20 Image Before-After support functions
------------------------------------------------------------------------------- */
// Theme init priorities:
// 9 - register other filters (for installer, etc.)
if (!function_exists('spin_twenty20_theme_setup9')) {
add_action( 'after_setup_theme', 'spin_twenty20_theme_setup9', 9 );
function spin_twenty20_theme_setup9() {
if (is_admin()) {
add_filter( 'spin_filter_tgmpa_required_plugins', 'spin_twenty20_tgmpa_required_plugins' );
}
}
}
// Filter to add in the required plugins list
if ( !function_exists( 'spin_twenty20_tgmpa_required_plugins' ) ) {
function spin_twenty20_tgmpa_required_plugins($list=array()) {
if (spin_storage_isset('required_plugins', 'twenty20') && spin_storage_get_array( 'required_plugins', 'twenty20', 'install' ) !== false) {
$list[] = array(
'name' => spin_storage_get_array('required_plugins', 'twenty20', 'title'),
'slug' => 'twenty20',
'required' => false
);
}
return $list;
}
}
// Check if plugin installed and activated
if ( !function_exists( 'spin_exists_twenty20' ) ) {
function spin_exists_twenty20() {
return function_exists('twenty20_dir_init');
}
}
?>