![]() 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 : /home/corals/gg.corals.io/wp-content/plugins/custom-facebook-feed/admin/views/about/ |
<?php if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly ?> <div class="cff-fb-full-wrapper cff-fb-fs"> <?php /** * CFF Admin Notices * * @since 4.0 */ do_action('cff_admin_notices'); ?> <div class="cff-sb-container"> <div class="cff-section-header"> <h2>{{genericText.title}}</h2> </div> <div class="cff-about-box"> <div class="sb-team-avatar"> <img :src="aboutBox.teamAvatar" :alt="aboutBox.teamImgAlt"> </div> <div class="sb-team-info"> <div class="sb-team-left"> <h2>{{aboutBox.atSmashBalloon}}</h2> </div> <div class="sb-team-right"> <p>{{aboutBox.weAreOn}}</p> <p>{{aboutBox.ourPlugins}}</p> </div> </div> </div> <div class="cff-section-second-header"> <h3>{{genericText.title2}}</h3> <p>{{genericText.description2}}</p> </div> <div class="cff-plugins-boxes-container"> <div class="sb-plugins-box" v-for="(plugin, name, index) in plugins"> <div class="icon"><img :src="plugin.icon" :alt="plugin.title"></div> <div class="plugin-box-content"> <h4 class="sb-box-title">{{plugin.title +''+ (plugin.type != 'none' ? ' Pro' : '')}}</h4> <p class="sb-box-description">{{plugin.description}}</p> <div class="sb-action-buttons"> <button class="cff-btn sb-btn-add" v-if="plugin.type === 'none' && plugin.activated === 'none'" @click="installPlugin(plugin.download_plugin, name, index, 'plugin')"> <span v-html="buttonIcon()" v-if="btnClicked == index + 1 && btnName == name"></span> {{buttons.install}} </button> <button class="cff-btn sb-btn-installed" v-if="plugin.type === 'pro'"> <span v-html="icons.checkmarkSVG"></span> {{buttons.installed}} </button> <button class="cff-btn sb-btn-activate" v-if="plugin.type === 'pro' && !plugin.activated" @click="activatePlugin(plugin.plugin, name, index, 'plugin')" :class="btnStatus"> <span v-html="buttonIcon()" v-if="btnClicked == index + 1 && btnName == name"></span> {{buttons.activate}} </button> <!--<button class="cff-btn sb-btn-deactivate" v-if="plugin.installed && plugin.activated && name != 'facebook'" @click="deactivatePlugin(plugin.plugin, name, index, 'plugin')" :class="btnStatus"> <span v-html="buttonIcon()" v-if="btnClicked == index + 1 && btnName == name"></span> {{buttons.deactivate}} </button>--> <a class="cff-btn sb-btn-activate" :href="plugin.link" target="_blank" v-if="plugin.type == 'free'"> {{buttons.upgradeToPro}} </a> </div> </div> </div> <div class="sb-plugins-box cff-social-wall-plugin-box"> <span class="sb-box-bg-image"> <img :src="social_wall.graphic" alt="Social Wall Image"> </span> <div class="plugin-box-content"> <h4 class="sb-box-title">{{social_wall.title}}</h4> <p class="sb-box-description">{{social_wall.description}}</p> <div class="sb-action-buttons"> <a class="cff-btn sb-btn-add" v-if="!social_wall.installed" :href="social_wall.permalink" target="_blank"> {{buttons.viewDemo}} <span v-html="icons.link"></span> </a> <button class="cff-btn sb-btn-installed" v-if="social_wall.installed"> <span v-html="icons.checkmarkSVG"></span> {{buttons.installed}} </button> <button class="cff-btn sb-btn-activate" v-if="social_wall.installed && ! social_wall.activated" @click="activatePlugin(social_wall.plugin, 'social_wall', 1, 'plugin')" :class="btnStatus"> <span v-html="buttonIcon()" v-if="btnClicked == 2 && btnName == 'social_wall'"></span> {{buttons.activate}} </button> <button class="cff-btn sb-btn-deactivate" v-if="social_wall.installed && social_wall.activated" @click="deactivatePlugin(social_wall.plugin, 'social_wall', 1, 'plugin')" :class="btnStatus"> <span v-html="buttonIcon()" v-if="btnClicked == 2 && btnName == 'social_wall'"></span> {{buttons.deactivate}} </button> </div> </div> </div> </div> <div class="cff-section-second-header"> <h3>{{genericText.title3}}</h3> </div> <div class="cff-plugins-boxes-container sb-recommended-plugins"> <div class="sb-plugins-box" v-for="(plugin, name, index) in recommendedPlugins"> <div class="icon"><img :src="plugin.icon" :alt="plugin.title"></div> <div class="plugin-box-content"> <h4 class="sb-box-title">{{plugin.title}}</h4> <p class="sb-box-description">{{plugin.description}}</p> <div class="sb-action-buttons"> <button class="cff-btn sb-btn-add" v-if="!plugin.installed" @click="installPlugin(plugin.download_plugin, name, index, 'recommended_plugin')"> <span v-html="buttonIcon()" v-if="btnClicked == index + 1 && btnName == name"></span> {{buttons.install}} </button> <button class="cff-btn sb-btn-installed" v-if="plugin.installed"> <span v-html="icons.checkmarkSVG"></span> {{buttons.installed}} </button> <button class="cff-btn sb-btn-activate" v-if="plugin.installed && ! plugin.activated" @click="activatePlugin(plugin.plugin, name, index, 'recommended_plugin')" :class="btnStatus"> <span v-html="buttonIcon()" v-if="btnClicked == index + 1 && btnName == name"></span> {{buttons.activate}} </button> <button class="cff-btn sb-btn-deactivate" v-if="plugin.installed && plugin.activated && name != 'facebook'" @click="deactivatePlugin(plugin.plugin, name, index, 'recommended_plugin')" :class="btnStatus"> <span v-html="buttonIcon()" v-if="btnClicked == index + 1 && btnName == name"></span> {{buttons.deactivate}} </button> </div> </div> </div> </div> </div> </div>