| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133 |
- <?php
- /**
- * Main renderer for the Carousel
- *
- * @category Child Plugin
- * @author iClyde <kontakt@iclyde.pl>
- */
- // Namespace
- namespace Inisev\Subs;
- // Disallow direct access
- if (!defined('ABSPATH')) exit;
- ?>
- <section class="ci-carrinis-wrapper">
- <section class="ci-carrinis" id="carrinis">
- <h1>Like this plugin?</h1>
- <h1>Then you'll LOVE our others too :)</h1>
- <div class="ci-carousel">
- <?php $this->_include('static/tabs'); ?>
- <div class="ci-project-content">
- <?php
- $bmi_free = $this->is_plugin_installed($this->bmi_slug);
- $bmi_pro = $this->is_plugin_installed($this->bmi_premium);
- $bmi_state = (!$bmi_free || (!$bmi_free && $bmi_pro)) ? 'install' : (($bmi_free && !$bmi_pro) ? 'upgrade' : 'already-installed')
- ?>
- <div class="ci-project ci-project-BackupMigration <?php echo 'ci-'.$bmi_state.'-state-visible'; ?>">
- <?php
- if (!$bmi_free || (!$bmi_free && $bmi_pro)) {
- $this->_include('projects/bmi/install');
- } elseif ($bmi_free && !$bmi_pro) {
- $this->_include('projects/bmi/upgrade');
- } elseif ($bmi_free && $bmi_pro) {
- $this->_include('projects/bmi/installed');
- }
- ?>
- <div class="ci-right-part">
- <img src="<?php $this->_asset('/projects/bmi/imgs/background-images.png'); ?>" class="ci-main-image">
- </div>
- </div>
- <?php
- $mpu_plugin = $this->is_plugin_installed($this->mpu_slug);
- $mpu_state = $mpu_plugin ? 'already-installed' : 'install';
- ?>
- <div class="ci-project ci-project-MyPopups <?php echo 'ci-'.$mpu_state.'-state-visible'; ?>">
- <?php
- if ($mpu_plugin) {
- $this->_include('projects/mpu/installed');
- } else {
- $this->_include('projects/mpu/install');
- }
- ?>
- <div class="ci-right-part">
- <img src="<?php $this->_asset('/projects/mpu/imgs/background-images.png'); ?>" class="ci-main-image">
- <img src="<?php $this->_asset('/projects/mpu/imgs/background-texture-green.png'); ?>" class="ci-secondary-image">
- </div>
- </div>
- <?php
- $cdp_free = $this->is_plugin_installed($this->cdp_slug);
- $cdp_pro = $this->is_plugin_installed($this->cdp_premium);
- $cdp_state = (!$cdp_free || (!$cdp_free && $cdp_pro)) ? 'install' : (($cdp_free && !$cdp_pro) ? 'upgrade' : 'already-installed');
- ?>
- <div class="ci-project ci-project-CopyDeletePosts <?php echo 'ci-'.$cdp_state.'-state-visible'; ?>">
- <?php
- if (!$cdp_free || (!$cdp_free && $cdp_pro)) {
- $this->_include('projects/cdp/install');
- } elseif ($cdp_free && !$cdp_pro) {
- $this->_include('projects/cdp/upgrade');
- } elseif ($cdp_free && $cdp_pro) {
- $this->_include('projects/cdp/installed');
- }
- ?>
- <div class="ci-right-part">
- <img src="<?php $this->_asset('/projects/cdp/imgs/secondary-background-image.svg'); ?>" class="ci-secondary-image">
- <img src="<?php $this->_asset('/projects/cdp/imgs/main-background-image.png'); ?>" class="ci-main-image">
- </div>
- </div>
- <div class="ci-project ci-project-TasteWP ci-install-state-visible">
- <?php $this->_include('projects/twp/install'); ?>
- <div class="ci-right-part">
- <img src="<?php $this->_asset('/projects/twp/imgs/background-image-1.svg'); ?>">
- <img src="<?php $this->_asset('/projects/twp/imgs/background-image-2.svg'); ?>">
- <img src="<?php $this->_asset('/projects/twp/imgs/background-image-3.svg'); ?>">
- </div>
- </div>
- <?php
- $usm_free = $this->is_plugin_installed($this->usm_slug);
- $usm_pro = $this->is_plugin_installed($this->usm_premium);
- $usm_state = (!$usm_free || (!$usm_free && $usm_pro)) ? 'install' : (($usm_free && !$usm_pro) ? 'upgrade' : 'already-installed');
- ?>
- <div class="ci-project ci-project-SocialShare <?php echo 'ci-'.$usm_state.'-state-visible'; ?>">
- <?php
- if (!$usm_free || (!$usm_free && $usm_pro)) {
- $this->_include('projects/usm/install');
- $this->_include('projects/usm/part-install');
- } elseif ($usm_free && !$usm_pro) {
- $this->_include('projects/usm/upgrade');
- $this->_include('projects/usm/part-upgrade');
- } elseif ($usm_free && $usm_pro) {
- $this->_include('projects/usm/part-install');
- $this->_include('projects/usm/installed');
- }
- ?>
- </div>
- <div class="ci-project ci-project-followIt ci-install-state-visible">
- <?php $this->_include('projects/fit/install'); ?>
- </div>
- </div>
- </div>
- <div class="ci-all-projects">
- <a class="ci-see-all-projects" href="https://inisev.com/?utm_source=plugin_footer&utm_campaign=CDP&utm_medium=carrousel" target="_blank">See all projects</a>
- </div>
- </section>
- </section>
|