| Server IP : 216.106.184.20 / Your IP : 216.73.216.234 Web Server : LiteSpeed System : Linux asmodeus.in-hell.com 5.14.0-570.58.1.el9_6.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Oct 29 06:24:11 EDT 2025 x86_64 User : sekoaid1 ( 1891) PHP Version : 7.3.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /home/sekoaid1/www/wp-content/plugins/cmp-coming-soon-maintenance/inc/render/ |
Upload File : |
<?php
$html = '';
$ulclass = ( $ulclass != '' ) ? ' ' . $ulclass : $ulclass;
$liclass = ( $liclass != '' ) ? ' ' . $liclass : $liclass;
// migrate social media to new option after update 1.4.0
if ( get_option('niteoCS_socialmedia') ) {
$socialmedia = stripslashes( get_option('niteoCS_socialmedia') );
$socialmedia = json_decode( $socialmedia, true );
//sort social icons array by hidden, then order key
uasort( $socialmedia , array($this,'sort_social') );
$theme_html = ( $themeslug == 'stylo' || $themeslug == 'mosaic' || $themeslug == 'saturn') ? '<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="3em" height="3em" viewBox="0 0 80 80" xml:space="preserve"><circle transform="rotate(-90 40 40)" class="another-circle" cx="40" cy="40" r="36" /></svg>' : '';
if ( $title == true ) {
$soc_title = $this->cmp_wpml_translate_string( stripslashes( get_option('niteoCS_soc_title', 'GET SOCIAL WITH US') ), 'Social Icons Title' );;
$html = ( $soc_title == '' ) ? '' : '<h2 class="soc-title">' . esc_html( $soc_title ) . '</h2>';
}
ob_start();
foreach ( $socialmedia as $social ) {
if ( $social['hidden'] == '0' && $social['active'] == '1') {
$href = $social['url'];
$name = ucfirst($social['name']);
$icon = 'fab fa-' . $social['name'];
switch ($social['name']) {
case 'envelope-o':
$href = 'mailto:'.$social['url'];
$name = __('Email', 'cmp-coming-soon-maintenance');
$icon = 'far fa-envelope';
break;
case 'phone':
$href = 'tel:'.$social['url'];
$name = __('Phone', 'cmp-coming-soon-maintenance');
$icon = 'fas fa-phone';
break;
case 'whatsapp':
$name = 'WhatsApp';
$href = 'https://wa.me/'.preg_replace('/[^0-9]/', '', $social['url']);
break;
case 'linkedin':
$name = 'LinkedIn';
break;
case 'deviantart':
$name = 'DeviantArt';
break;
case 'soundcloud':
$name = 'SoundCloud';
break;
case 'vk':
$name = 'VK';
break;
case 'github':
$name = 'GitHub';
break;
case 'tiktok':
$name = 'TikTok';
break;
case 'rss':
$icon = 'fas fa-rss';
$href = $href ? $href : get_bloginfo('rss2_url');
break;
case 'wikipedia':
$icon = 'fab fa-wikipedia-w';
break;
default:
break;
}
echo ( $mode == 'text' ) ?
'<li class="social-child' . $liclass . '"><a href="'.esc_attr($href).'" target="top" class="social-'.$social['name'].'">'.$name.'</a></li>' :
'<li class="social-child' . $liclass . '"><a href="'.esc_attr($href).'" target="top" class="social-'.$social['name'].'">'.$theme_html.'<i class="'.$icon.'" aria-hidden="true"></i></a></li>';
}
}
$social_list = ob_get_clean();
if ( $social_list != '' ) {
$html = $html . '<ul class="social-list' . $ulclass . '">' . $social_list.'</ul>';
}
}