| Current Path : /proc/1908984/root/proc/self/root/proc/self/root/proc/2508158/root/tmp/ |
| Current File : //proc/1908984/root/proc/self/root/proc/self/root/proc/2508158/root/tmp/php9utiCE |
<html><body></body></html>.su-post-grid .cbp-l-grid-blog-title {
margin-top: 0;
}
.su-post-grid .su-blog-img {
margin-bottom: 17px;
}
.su-pgrid-meta > .cbp-l-grid-blog-date {
padding-right: 10px;
margin-right: 5px;
}
.su-pgrid-meta > span {
font-size: 12px;
position: relative;
}
.su-pgrid-meta > .cbp-l-grid-blog-date:after {
content: '';
position: absolute;
right: 0;
top: 50%;
-webkit-transform: translateY(-50%);
transform: translateY(-50%);
height: 11px;
width: 2px;
background-color: rgba(0,0,0,0.1);
}
.cbp-l-filters-alignCenter .cbp-filter-item:before {
content: "/";
position: absolute;
right: -2px;
top: 0;
}
.cbp-l-filters-text.new_filter .cbp-filter-item:last-child:before {display: none;}
.cbp-l-filters-text.new_filter .cbp-filter-item:before {
content: "|";
position: absolute;
right: -2px;
top: 0;
}
.cbp-l-filters-alignCenter .cbp-filter-item:last-child:before {display: none;}
.cbp-l-filters-list .cbp-filter-item:last-child {
border-right-width: 1px;
}
.cbp-l-filters-dropdownWrap {
right: auto;
display: inline-block;
position: relative;
}
.cbp-l-filters-dropdownWrap .cbp-l-filters-dropdownHeader {
text-align: left;
}
.su-post-grid-filter-align-center .cbp-l-filters-dropdownWrap {
margin-left: -100px;
}
.su-post-grid-filter-align-left > div[class*="cbp-l-filters"] {
text-align: left;
}
.su-post-grid-filter-align-right > div[class*="cbp-l-filters"] {
text-align: right;
}
.su-post-grid-filter-align-right .cbp-search {
float: left;
}
.su-post-grid-filter-align-center > div[class*="cbp-l-filters"] {
text-align: center;
margin-right: auto;
margin-left: auto;
}
.cbp-l-filters-text, .cbp-l-filters-alignCenter {
padding: 0;
margin-bottom: 35px;
}
.cbp-l-filters-text > div:first-child,
.cbp-l-filters-alignCenter > div:first-child {
padding-left: 0;
}
.cbp-l-filters-text > div:last-child,
.cbp-l-filters-alignCenter > div:last-child {
padding-right: 0;
}
.cbp-search input[type="text"] {
height: 36px;
box-sizing: border-box;
padding: 6px 10px;
margin: 0;
}
.cbp-l-loadMore-defaultText {
text-transform: uppercase;
}
.su-post-grid .cbp-mode-slider {
margin: 25px auto 40px;
}<html><body></body></html>jQuery(document).ready(function($) {
'use strict';
$('.su-post-grid').each(function () {
var data = $(this).data(),
post_gridid = '#' + data.pgid,
gridContainer = $(post_gridid + '_container'),
filtersContainer = $(post_gridid + '_filter'),
loadMoreBtn = $(post_gridid + '_btn'),
searchContainer = $(post_gridid + '_search'),
wrap, filtersCallback;
/*******************************
init cubeportfolio
****************************** */
gridContainer.cubeportfolio({
layoutMode: data.layout,
search: searchContainer,
loadMore: loadMoreBtn,
loadMoreAction: data.loadmoreaction,
rewindNav: true,
scrollByPage: false,
mediaQueries: [{
width: 1100,
cols: data.large
}, {
width: 800,
cols: data.medium
}, {
width: 500,
cols: data.small
}, {
width: 320,
cols: 1
}],
filters: filtersContainer,
defaultFilter: '*',
animationType: data.filter_animation,
gapHorizontal: data.horizontal_gap,
gapVertical: data.vertical_gap,
gridAdjustment: 'responsive',
caption: data.caption_style,
displayType: data.loading_animation,
displayTypeSpeed: 500,
filterDeeplinking: data.filter_deeplink
});
});
});<?php
/**
* @package Shortcode Ultimate
* @author BdThemes http://www.bdthemes.com
* @copyright Copyright (C) BdThemes Ltd
* @license http://www.gnu.org/licenses/gpl.html GNU/GPL
*/
defined( '_JEXEC' ) or die( 'Restricted access' );
class Su_Shortcode_post_grid_config extends Su_Data {
function __construct() {
parent::__construct();
}
static function get_config() {
return array(
'name' => JText::_('PLG_SYSTEM_BDTHEMES_SHORTCODES_POST_GRID'),
'desc' => JText::_('PLG_SYSTEM_BDTHEMES_SHORTCODES_POST_GRID_DESC'),
'icon' => 'th-large',
'type' => 'single',
'group' => 'gallery',
'atts' => array(
'source' => array(
'type' => 'article_source',
'default' => 'none',
'name' => JText::_('PLG_SYSTEM_BDTHEMES_SHORTCODES_SOURCE'),
'desc' => JText::_('PLG_SYSTEM_BDTHEMES_SHORTCODES_SOURCE_DESC'),
'child' => array(
'layout' => array(
'type' => 'select',
'values' => array(
'grid' => JText::_('PLG_SYSTEM_BDTHEMES_SHORTCODES_CP_GRID'),
'masonry' => JText::_('PLG_SYSTEM_BDTHEMES_SHORTCODES_CP_MASONRY'),
'mosaic' => JText::_('PLG_SYSTEM_BDTHEMES_SHORTCODES_CP_MOSAIC'),
'slider' => JText::_('PLG_SYSTEM_BDTHEMES_SHORTCODES_CP_SLIDER')
),
'default' => 'grid',
'name' => JText::_('PLG_SYSTEM_BDTHEMES_SHORTCODES_CP_LAYOUT'),
'desc' => JText::_('PLG_SYSTEM_BDTHEMES_SHORTCODES_CP_LAYOUT_DESC'),
)
)
),
'limit' => array(
'type' => 'slider',
'min' => 5,
'max' => 100,
'step' => 1,
'default' => 12,
'name' => JText::_('PLG_SYSTEM_BDTHEMES_SHORTCODES_LIMIT'),
'desc' => JText::_('PLG_SYSTEM_BDTHEMES_SHORTCODES_LIMIT_DESC')
),
'show_more' => array(
'type' => 'bool',
'default' => 'no',
'name' => JText::_('PLG_SYSTEM_BDTHEMES_SHORTCODES_SHOW_MORE'),
'desc' => JText::_('PLG_SYSTEM_BDTHEMES_SHORTCODES_SHOW_MORE_DESC'),
'child' => array(
'show_more_item' => array(
'type' => 'slider',
'min' => 1,
'max' => 12,
'step' => 1,
'default' => 4,
'name' => JText::_('PLG_SYSTEM_BDTHEMES_SHORTCODES_SHOW_MORE_LIMIT'),
'desc' => JText::_('PLG_SYSTEM_BDTHEMES_SHORTCODES_SHOW_MORE_LIMIT_DESC')
),
'show_more_action' => array(
'type' => 'select',
'values' => array(
'click' => JText::_('PLG_SYSTEM_BDTHEMES_SHORTCODES_CP_CLICK'),
'auto' => JText::_('PLG_SYSTEM_BDTHEMES_SHORTCODES_CP_AUTO')
),
'default' => 'click',
'name' => JText::_('PLG_SYSTEM_BDTHEMES_SHORTCODES_SHOW_MORE_ACTION'),
'desc' => JText::_('PLG_SYSTEM_BDTHEMES_SHORTCODES_SHOW_MORE_ACTION_DESC')
),
'show_search' => array(
'type' => 'bool',
'default' => 'no',
'name' => JText::_('PLG_SYSTEM_BDTHEMES_SHORTCODES_SHOW_SEARCH'),
'desc' => JText::_('PLG_SYSTEM_BDTHEMES_SHORTCODES_SHOW_SEARCH_DESC')
)
)
),
'order' => array(
'type' => 'select',
'values' => array(
'created' => JText::_('PLG_SYSTEM_BDTHEMES_SHORTCODES_CREATED_DATE'),
'title' => JText::_('PLG_SYSTEM_BDTHEMES_SHORTCODES_TITLE'),
'hits' => JText::_('PLG_SYSTEM_BDTHEMES_SHORTCODES_HITS'),
'ordering' => JText::_('PLG_SYSTEM_BDTHEMES_SHORTCODES_ORDERING')
),
'default' => 'created',
'name' => JText::_('PLG_SYSTEM_BDTHEMES_SHORTCODES_ORDER'),
'desc' => JText::_('PLG_SYSTEM_BDTHEMES_SHORTCODES_ORDER_DESCR'),
'child' => array(
'order_by' => array(
'type' => 'select',
'values' => array(
'asc' => JText::_('PLG_SYSTEM_BDTHEMES_SHORTCODES_ASC'),
'desc' => JText::_('PLG_SYSTEM_BDTHEMES_SHORTCODES_DESC')
),
'default' => 'desc',
'name' => JText::_('PLG_SYSTEM_BDTHEMES_SHORTCODES_ORDER_TYPE'),
'desc' => JText::_('PLG_SYSTEM_BDTHEMES_SHORTCODES_ORDER_TYPE_DESC')
)
)
),
'loading_animation' => array(
'type' => 'select',
'values' => array(
'default' => 'Default',
'fadeIn' => 'Fade In',
'lazyLoading' => 'LazyLoading',
'fadeInToTop' => 'Fade In To Top',
'sequentially' => 'Sequentially',
'bottomToTop' => 'Bottom To Top'
),
'default' => 'default',
'name' => JText::_('PLG_SYSTEM_BDTHEMES_SHORTCODES_LOADING_ANIMATION'),
'desc' => JText::_('PLG_SYSTEM_BDTHEMES_SHORTCODES_LOADING_ANIMATION_DESC'),
'child' => array(
'filter_animation' => array(
'type' => 'select',
'values' => array(
'fadeOut' => 'Fade Out',
'quicksand' => 'Quicksand',
'boxShadow' => 'Box Shadow',
'bounceLeft' => 'Bounce Left',
'bounceTop' => 'Bounce Top',
'bounceBottom' => 'Bounce Bottom',
'moveLeft' => 'Move Left',
'slideLeft' => 'Slide Left',
'fadeOutTop' => 'Fade Out Top',
'sequentially' => 'Sequentially',
'skew' => 'Skew',
'slideDelay' => 'Slide Delay',
'3dflip' => '3d Flip',
'rotateSides' => 'Rotate Sides',
'flipOutDelay' => 'Flip Out Delay',
'flipOut' => 'Flip Out',
'unfold' => 'Unfold',
'foldLeft' => 'Fold Left',
'scaleDown' => 'Scale Down',
'scaleSides' => 'Scale Sides',
'frontRow' => 'Front Row',
'flipBottom' => 'Flip Bottom',
'rotateRoom' => 'Rotate Room'
),
'default' => 'rotateSides',
'name' => JText::_('PLG_SYSTEM_BDTHEMES_SHORTCODES_FILTER_ANIMATION'),
'desc' => JText::_('PLG_SYSTEM_BDTHEMES_SHORTCODES_FILTER_ANIMATION_DESC')
),
'caption_style' => array(
'type' => 'select',
'values' => array(
'pushTop' => 'Push Top',
'pushDown' => 'Push Down',
'revealBottom' => 'Reveal Bottom',
'revealTop' => 'Reveal Top',
'revealLeft' => 'Reveal Left',
'moveRight' => 'Move Right',
'overlayBottom' => 'Overlay Bottom',
'overlayBottomPush' => 'Overlay Push',
'overlayBottomReveal' => 'Overlay Reveal',
'overlayBottomAlong' => 'Overlay Along',
'overlayRightAlong' => 'Overlay Right',
'minimal' => 'Minimal',
'fadeIn' => 'Fade In',
'zoom' => 'Zoom',
'opacity' => 'Opacity'
),
'default' => 'overlayBottomPush',
'name' => JText::_('PLG_SYSTEM_BDTHEMES_SHORTCODES_CAPTION_STYLE'),
'desc' => JText::_('PLG_SYSTEM_BDTHEMES_SHORTCODES_CAPTION_STYLE_DESC'),
),
)
),
'horizontal_gap' => array(
'min' => 0,
'type' => 'slider',
'max' => 50,
'step' => 5,
'default' => 10,
'name' => JText::_('PLG_SYSTEM_BDTHEMES_SHORTCODES_HORIZONTAL_GAP'),
'desc' => JText::_('PLG_SYSTEM_BDTHEMES_SHORTCODES_HORIZONTAL_GAP_DESC'),
'child' => array(
'vertical_gap' => array(
'type' => 'slider',
'min' => 0,
'max' => 50,
'step' => 5,
'default' => 10,
'name' => JText::_('PLG_SYSTEM_BDTHEMES_SHORTCODES_VERTICAL_GAP'),
'desc' => JText::_('PLG_SYSTEM_BDTHEMES_SHORTCODES_VERTICAL_GAP_DESC')
)
)
),
'filter' => array(
'type' => 'bool',
'default' => 'yes',
'name' => JText::_('PLG_SYSTEM_BDTHEMES_SHORTCODES_POST_GRID_FILTER'),
'desc' => JText::_('PLG_SYSTEM_BDTHEMES_SHORTCODES_POST_GRID_FILTER_DESC'),
'child' => array(
'filter_style' => array(
'type' => 'select',
'values' => array(
'1' => JText::_('PLG_SYSTEM_BDTHEMES_SHORTCODES_STYLE1'),
'2' => JText::_('PLG_SYSTEM_BDTHEMES_SHORTCODES_STYLE2'),
'3' => JText::_('PLG_SYSTEM_BDTHEMES_SHORTCODES_STYLE3'),
'4' => JText::_('PLG_SYSTEM_BDTHEMES_SHORTCODES_STYLE4'),
'5' => JText::_('PLG_SYSTEM_BDTHEMES_SHORTCODES_STYLE5'),
'6' => JText::_('PLG_SYSTEM_BDTHEMES_SHORTCODES_STYLE6'),
'7' => JText::_('PLG_SYSTEM_BDTHEMES_SHORTCODES_STYLE7'),
'8' => JText::_('PLG_SYSTEM_BDTHEMES_SHORTCODES_STYLE8'),
'9' => JText::_('PLG_SYSTEM_BDTHEMES_SHORTCODES_STYLE9')
),
'default' => '1',
'name' => JText::_('PLG_SYSTEM_BDTHEMES_SHORTCODES_FILTER_STYLE'),
'desc' => JText::_('PLG_SYSTEM_BDTHEMES_SHORTCODES_FILTER_STYLE_DESC')
),
'filter_deeplink' => array(
'type' => 'bool',
'default' => 'no',
'name' => JText::_('PLG_SYSTEM_BDTHEMES_SHORTCODES_FILTER_DEEPLINK'),
'desc' => JText::_('PLG_SYSTEM_BDTHEMES_SHORTCODES_FILTER_DEEPLINK_DESC')
),
'filter_counter' => array(
'type' => 'bool',
'default' => 'yes',
'name' => JText::_('PLG_SYSTEM_BDTHEMES_SHORTCODES_FILTER_COUNTER'),
'desc' => JText::_('PLG_SYSTEM_BDTHEMES_SHORTCODES_FILTER_COUNTER_DESC')
)
)
),
'category' => array(
'type' => 'bool',
'default' => 'yes',
'name' => JText::_('PLG_SYSTEM_BDTHEMES_SHORTCODES_CATEGORY_SHOW'),
'desc' => JText::_('PLG_SYSTEM_BDTHEMES_SHORTCODES_CATEGORY_SHOW_DESC'),
'child' => array(
'date' => array(
'type' => 'bool',
'default' => 'yes',
'name' => JText::_('PLG_SYSTEM_BDTHEMES_SHORTCODES_DATE'),
'desc' => JText::_('PLG_SYSTEM_BDTHEMES_SHORTCODES_DATE_DESC')
)
)
),
'include_article_image' => array(
'type' => 'bool',
'default' => 'no',
'name' => JText::_('PLG_SYSTEM_BDTHEMES_SHORTCODES_INCLUDE_ARTICLE_IMAGE'),
'desc' => JText::_('PLG_SYSTEM_BDTHEMES_SHORTCODES_INCLUDE_ARTICLE_IMAGE_DESC'),
'child' => array(
'medium' => array(
'type' => 'slider',
'min' => 1,
'max' => 5,
'step' => 1,
'default' => 3,
'name' => JText::_('PLG_SYSTEM_BDTHEMES_SHORTCODES_MEDIUM_DEVICE_ITEM'),
'desc' => JText::_('PLG_SYSTEM_BDTHEMES_SHORTCODES_MEDIUM_DEVICE_ITEM_DESC')
),
'large' => array(
'type' => 'slider',
'min' => 1,
'max' => 10,
'step' => 1,
'default' => 4,
'name' => JText::_('PLG_SYSTEM_BDTHEMES_SHORTCODES_LARGE_DEVICE_ITEM'),
'desc' => JText::_('PLG_SYSTEM_BDTHEMES_SHORTCODES_LARGE_DEVICE_ITEM_DESC')
)
)
),
'scroll_reveal' => array(
'default' => '',
'name' => JText::_('PLG_SYSTEM_BDTHEMES_SHORTCODES_SCROLL_REVEAL'),
'desc' => JText::_('PLG_SYSTEM_BDTHEMES_SHORTCODES_SCROLL_REVEAL_DESC')
),
'class' => array(
'default' => '',
'name' => JT