Spamworldpro Mini Shell
Spamworldpro


Server : Apache
System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64
User : corals ( 1002)
PHP Version : 7.4.33
Disable Function : exec,passthru,shell_exec,system
Directory :  /proc/self/cwd/wp-content/plugins/bdthemes-element-pack/modules/member/skins/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : //proc/self/cwd/wp-content/plugins/bdthemes-element-pack/modules/member/skins/skin-band.php
<?php

namespace ElementPack\Modules\Member\Skins;

use Elementor\Group_Control_Image_Size;
use Elementor\Icons_Manager;

use Elementor\Skin_Base as Elementor_Skin_Base;

if (!defined('ABSPATH')) exit; // Exit if accessed directly

class Skin_Band extends Elementor_Skin_Base {

    public function get_id() {
        return 'bdt-band';
    }

    public function get_title() {
        return __('Band', 'bdthemes-element-pack');
    }

    public function render() {
        $settings = $this->parent->get_settings_for_display();

        if (!isset($settings['social_icon']) && !Icons_Manager::is_migration_allowed()) {
            // add old default
            $settings['social_icon'] = 'fab fa-facebook-f';
        }

?>

        <div class="bdt-member skin-band bdt-transition-toggle">
            <div class="bdt-member-item-wrapper">
                <?php if (!empty($settings['photo']['url'])) :
                    $photo_hover_animation = ('' != $settings['photo_hover_animation']) ? ' bdt-transition-scale-' . $settings['photo_hover_animation'] : ''; ?>

                    <div class="bdt-member-photo-wrapper bdt-image-mask">

                        <?php if (($settings['member_alternative_photo']) and (!empty($settings['alternative_photo']['url']))) : ?>
                            <div class="bdt-position-relative bdt-overflow-hidden" bdt-toggle="target: > .bdt-member-photo-flip; mode: hover; animation: bdt-animation-fade; queued: true; duration: 300;">

                                <div class="bdt-member-photo-flip bdt-position-absolute bdt-position-z-index">
                                    <?php echo Group_Control_Image_Size::get_attachment_image_html($settings, 'alternative_photo'); ?>
                                </div>
                            <?php endif; ?>

                            <div class="bdt-member-photo">
                                <div class="<?php echo ($photo_hover_animation); ?>">
                                    <?php echo Group_Control_Image_Size::get_attachment_image_html($settings, 'photo'); ?>
                                </div>
                            </div>

                            <?php if (($settings['member_alternative_photo']) and (!empty($settings['alternative_photo']['url']))) : ?>
                            </div>
                        <?php endif; ?>

                        <?php if ('yes' == $settings['member_social_icon']) : ?>
                            <div class="bdt-member-icons">
                                <?php
                                foreach ($settings['social_link_list'] as $link) :
                                    $tooltip = ('yes' == $settings['social_icon_tooltip']) ? ' title="' . $link['social_link_title'] . '" data-bdt-tooltip' : '';

                                    $migrated  = isset($link['__fa4_migrated']['social_share_icon']);
                                    $is_new    = empty($link['social_icon']) && Icons_Manager::is_migration_allowed(); ?>

                                    <a href="<?php echo esc_url($link['social_link']); ?>" class="bdt-member-icon elementor-repeater-item-<?php echo esc_attr($link['_id']); ?>" target="_blank" <?php echo wp_kses_post($tooltip); ?>>

                                        <?php if ($is_new || $migrated) :
                                            Icons_Manager::render_icon($link['social_share_icon'], ['aria-hidden' => 'true', 'class' => 'fa-fw']);
                                        else : ?>
                                            <i class="<?php echo esc_attr($link['social_icon']); ?>" aria-hidden="true"></i>
                                        <?php endif; ?>

                                    </a>
                                <?php endforeach; ?>
                            </div>
                        <?php endif; ?>

                    </div>
                <?php endif; ?>

                <div class="bdt-member-content">
                    <?php if (!empty($settings['name'])) : ?>
                        <span class="bdt-member-name"><?php echo wp_kses($settings['name'], element_pack_allow_tags('title')); ?></span>
                    <?php endif; ?>
                    <?php if (!empty($settings['role'])) : ?>
                        <span class="bdt-member-role"><?php echo wp_kses($settings['role'], element_pack_allow_tags('title')); ?></span>
                    <?php endif; ?>
                    <?php if (!empty($settings['description_text'])) : ?>
                        <div class="bdt-member-text bdt-content-wrap"><?php echo wp_kses($settings['description_text'], element_pack_allow_tags('text')); ?></div>
                    <?php endif; ?>
                </div>
            </div>
        </div>
<?php
    }
}

Spamworldpro Mini