uawdijnntqw1x1x1
IP : 216.73.216.219
Hostname : webm015.cluster127.gra.hosting.ovh.net
Kernel : Linux webm015.cluster127.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64
Disable Function : _dyuweyrj4,_dyuweyrj4r,dl
OS : Linux
PATH:
/
home
/
pteabiscqq
/
www
/
.
/
.
/
.
/
modules
/
mod_advportfoliopro
/
tmpl
/
default_slider.php
/
/
<?php /** * @copyright Copyright (c) 2013 Skyline Technology Ltd (http://extstore.com). All rights reserved. * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL */ // No direct access. defined('_JEXEC') or die; require_once JPATH_ROOT . '/components/com_advportfoliopro/helpers/route.php'; require_once JPATH_ROOT . '/components/com_advportfoliopro/helpers/advportfoliopro.php'; JHtml::addIncludePath(JPATH_ROOT . '/administrator/components/com_advportfoliopro/helpers/html/'); JHtml::_('advportfoliopro.modal'); JHtml::_('stylesheet', 'com_advportfoliopro/advportfoliopro.css', false, true); JHtml::_('stylesheet', 'com_advportfoliopro/style.css', false, true); JHtml::_('stylesheet', 'com_advportfoliopro/owl.transitions.css', false, true); JHtml::_('script', 'com_advportfoliopro/modernizr.min.js', false, true, false, false, true); JHtml::_('script', 'com_advportfoliopro/owl.carousel.min.js', false, true); if ($overlay_effect == 'hoverdir') { JHtml::_('script', 'com_advportfoliopro/jquery.hoverdir.js', false, true); } JHtml::_('script', 'com_advportfoliopro/script.js', false, true); $document = JFactory::getDocument(); $document->addScriptDeclaration('ExtStore.AdvPortfolioPro.live_site = \'' . JUri::base(true) . '\';'); // get style $numColumns = $params->get('num_columns', 1); $imageWidth = $params->get('image_width', 1200 / $numColumns); $gutterWidth = $params->get('gutter_width', 10); $overlayColor1 = $params->get('overlay_color1', '#5aabd6'); $overlayColor2 = $params->get('overlay_color2', ''); $overlayOpacity = $params->get('overlay_opacity', 100) / 100; if ($bgInfoHoverIcon) { $bg_iconCSs = <<<BGICONCSS #portfolio-module-$id .projects-wrapper .project-img .project-img-extra .project-icon { background-color: $bgInfoIcon; transition: all 0.3s ease-in-out 0s; -webkit-transition: all 0.3s ease-in-out 0s; -moz-transition: all 0.3s ease-in-out 0s; -ms-transition: all 0.3s ease-in-out 0s; } #portfolio-module-$id .projects-wrapper .project-img .project-img-extra .project-icon:hover, #portfolio-module-$id .projects-wrapper .project-img .project-img-extra .project-icon:active, #portfolio-module-$id .projects-wrapper .project-img .project-img-extra .project-icon:focus { background-color: $bgInfoHoverIcon; } BGICONCSS; } else { $bg_iconCSs = " #portfolio-module-$id .projects-wrapper .project-img .project-img-extra .project-icon { background-color: $bgInfoIcon; } "; } $document->addStyleDeclaration($bg_iconCSs); if ($overlayColor1 == '#5aabd6' && !$overlayColor2) { $overlayColor2 = '#90c9e8'; } $rgbaColor1 = AdvPortfolioProHelper::hex2RGB($overlayColor1, true) . ',' . $overlayOpacity; $rgbaColor2 = AdvPortfolioProHelper::hex2RGB($overlayColor2, true) . ',' . $overlayOpacity; if ($overlayColor2) { $css = <<<CSS #portfolio-module-$id .projects-wrapper .project-img .project-img-extra { background-image: -webkit-linear-gradient(top , rgba($rgbaColor2) 0%, rgba($rgbaColor1) 100%); background-image: -moz-linear-gradient(top , rgba($rgbaColor2) 0%, rgba($rgbaColor1) 100%); background-image: -o-linear-gradient(top , rgba($rgbaColor2) 0%, rgba($rgbaColor1) 100%); background-image: -ms-linear-gradient(top , rgba($rgbaColor2) 0%, rgba($rgbaColor1) 100%); background-image: linear-gradient(top , rgba($rgbaColor2) 0%, rgba($rgbaColor1) 100%); } CSS; } else { $css = " #portfolio-module-$id .projects-wrapper .project-img .project-img-extra { background-color: rgba($rgbaColor1); background-image: none; } "; } $document->addStyleDeclaration($css); $defaultCss = <<<DEFAULTCSS #portfolio-module-$id .projects-wrapper .project-img img { transition-property: all; transition-duration: $hover_duration; transition-timing-function: $hover_easing; transition-delay: $hover_delayCss; -moz-transition-property: all; -moz-transition-duration: $hover_duration; -moz-transition-timing-function: $hover_easing; -moz-transition-delay: $hover_delayCss; -webkit-transition-property: all; -webkit-transition-duration: $hover_duration; -webkit-transition-timing-function: $hover_easing; -webkit-transition-delay: $hover_delayCss; -ms-transition-property: all; -ms-transition-duration: $hover_duration; -ms-transition-timing-function: $hover_easing; -ms-transition-delay: $hover_delayCss; } #portfolio-module-$id .projects-wrapper .project-img .project-img-extra { transition-property: all; transition-duration: $hover_duration; transition-timing-function: $hover_easing; transition-delay: $hover_delayCss; -webkit-transition-property: all; -webkit-transition-duration: $hover_duration; -webkit-transition-timing-function: $hover_easing; -webkit-transition-delay: $hover_delayCss; -moz-transition-property: all; -moz-transition-duration: $hover_duration; -moz-transition-timing-function: $hover_easing; -moz-transition-delay: $hover_delayCss; -ms-transition-property: all; -ms-transition-duration: $hover_duration; -ms-transition-timing-function: $hover_easing; -ms-transition-delay: $hover_delayCss; } DEFAULTCSS; $document->addStyleDeclaration($defaultCss); if ($overlay_effect == 'none') { $noneCss = <<<NONE #portfolio-module-$id .projects-wrapper .project-img .project-img-extra { transform: translateX(0%); -webkit-transform: translateX(0%); -moz-transform: translateX(0%); -ms-transform: translateX(0%); } NONE; $document->addStyleDeclaration($noneCss); } if ($overlay_effect == 'hoverdir') { $hoverdirCss = <<<HOVERDIR #portfolio-module-$id .projects-wrapper .project-img .project-img-extra { display: block; left: -100%; top: 0; position: absolute; text-align: center; width: 100%; height: 100%; transform: none; transition: initial; } #portfolio-module-$id .projects-wrapper .project-img:hover .project-img-extra { opacity: 1; transform: none; } HOVERDIR; } else { $hoverdirCss = " #portfolio-module-$id .projects-wrapper .project-img .project-img-extra { left: 0; } "; } $document->addStyleDeclaration($hoverdirCss); $str_transform = ''; if ($scale) { if ($scale_x && !$scale_y) { $str_transform .= 'scaleX(' . $scale_x . ') '; } if (!$scale_x && $scale_y) { $str_transform .= 'scaleY(' . $scale_y . ') '; } if ($scale_x && $scale_y) { $str_transform .= 'scale(' . $scale_x . ',' . $scale_y . ') '; } } if ($translate) { if ($translate_x && !$translate_y) { $str_transform .= 'translateX(' . $translate_x . 'px' . ') '; } if (!$translate_x && $translate_y) { $str_transform .= 'translateY(' . $translate_y . 'px' . ') '; } if ($translate_x && $translate_y) { $str_transform .= 'translate(' . $translate_x . 'px' . ',' . $translate_y . 'px' . ') '; } } if ($rotatex) { $str_transform .= 'rotateX('. $rotate_angle_x . 'deg' . ') '; } if ($rotatey) { $str_transform .= 'rotateY('. $rotate_angle_y . 'deg' . ') '; } if ($rotatez) { $str_transform .= 'rotateZ('. $rotate_angle_z . 'deg' . ') '; } if ($skew) { if ($skew_angle_x && !$skew_angle_y) { $str_transform .= 'skewX('. $skew_angle_x . 'deg' . ') '; } if (!$skew_angle_x && $skew_angle_y) { $str_transform .= 'skewY('. $skew_angle_y . 'deg' . ') '; } if ($skew_angle_x && $skew_angle_y) { $str_transform .= 'skew('. $skew_angle_x . 'deg' . ',' . $skew_angle_y . 'deg' . ') '; } } if ($str_transform != '') { $thumbTransCss = <<<THUMBTRANS #portfolio-module-$id .projects-wrapper .project-img:hover img { transform: $str_transform; transition-property: all; transition-duration: $hover_duration; transition-timing-function: $hover_easing; transition-delay: $hover_delayCss; -webkit-transform: $str_transform; -webkit-transition-property: all; -webkit-transition-duration: $hover_duration; -webkit-transition-timing-function: $hover_easing; -webkit-transition-delay: $hover_delayCss; -moz-transform: $str_transform; -moz-transition-property: all; -moz-transition-duration: $hover_duration; -moz-transition-timing-function: $hover_easing; -moz-transition-delay: $hover_delayCss; -ms-transform: $str_transform; -ms-transition-property: all; -ms-transition-duration: $hover_duration; -ms-transition-timing-function: $hover_easing; -ms-transition-delay: $hover_delayCss; } THUMBTRANS; } else { $thumbTransCss = " #portfolio-module-$id .projects-wrapper .project-img:hover img { transform: none; } "; } $document->addStyleDeclaration($thumbTransCss); ?> <div id="portfolio-module-<?php echo $id; ?>" class="portfolio-module portfolio-module<?php echo $moduleclass_sfx; ?> loading" data-show-navigation="<?php echo ($params->get('show_navigation') == 1 ? 'true' : 'false'); ?>" data-show-direction-navigation="<?php echo ($params->get('show_direction_navigation') == 1 ? 'true' : 'false'); ?>" data-animation="<?php echo $params->get('animation', 'fade'); ?>" data-speed="<?php echo $params->get('speed', 500); ?>" data-columns="<?php echo $numColumns; ?>" data-gutter-width="<?php echo $gutterWidth; ?>" data-overlay_effect="<?php echo $overlay_effect; ?>" data-hoverdir_easing="<?php echo $hover_easing; ?>" data-hoverdir_speed="<?php echo $hoverdir_speed ?>" data-hoverdir_hover_delay="<?php echo $hover_delay ?>" data-hoverdir_inverse="<?php echo $hoverdir_inverse; ?>" data-display_type="<?php echo $displayType; ?>" > <div class="row"> <div class="slides projects-wrapper"> <?php foreach ($items as $item) : $link = AdvPortfolioProHelperRoute::getProjectRoute($item->slug, $item->catslug); $cat_link = AdvPortfolioProHelperRoute::getCategoryRoute($item->catslug); $class = ''; ?> <div class="item project-<?php echo $item->id . $class; ?>"> <?php if ($item->thumbnail) : ?> <div class="project-img"> <?php echo JHtml::_('advportfoliopro.image', $item->thumbnail, $imageWidth, null, $item->thumbnail, false); ?> <?php if ($params->get('show_info', 1)) : ?> <div class="project-img-extra"> <?php if ($params->get('click_thumbnail_to', 1)) : ?> <a class="link-detail" href="<?php echo $link; ?>" <?php echo $str_target; ?> ></a> <?php else: ?> <a class="link-detail gallery-popup" data-project-id="<?php echo $item->id; ?>" href="<?php echo $link; ?>"></a> <?php endif; ?> <div class="project-img-extra-content"> <?php if ($params->get('show_info_project_details', 1)) : ?> <a class="project-icon" href="<?php echo $link; ?>" <?php echo $str_target; ?> title="<?php echo JText::_('COM_ADVPORTFOLIOPRO_DETAILS'); ?>"> <span class="icon-advportfoliopro-plus"></span> </a> <?php endif; ?> <?php if ($item->link && $params->get('show_info_project_link', 1)) : ?> <a class="project-icon link-icon" href="<?php echo $item->link; ?>" <?php echo $str_target; ?> title="<?php echo JText::_('COM_ADVPORTFOLIOPRO_LINK'); ?>"> <span class="icon-advportfoliopro-link-ext"></span> </a> <?php endif; ?> <?php if ($params->get('show_info_project_gallery', 1)) : ?> <a class="project-icon gallery-icon" data-project-id="<?php echo $item->id; ?>" href="<?php echo $link; ?>" title="<?php echo JText::_('COM_ADVPORTFOLIOPRO_GALLERY'); ?>"> <span class="icon-advportfoliopro-picture"></span> </a> <?php endif; ?> <?php if ($params->get('show_info_title', 1)) : ?> <h4><?php echo $item->title; ?></h4> <?php endif; ?> <?php if ($params->get('show_info_category', 1)) : ?> <h5><a href="<?php echo $cat_link ?>" <?php echo $str_target; ?>><?php echo $item->category_title; ?></a></h5> <?php endif; ?> </div> </div> <?php endif; ?> </div> <?php endif; ?> <?php if ($params->get('show_title_list', 1) || $params->get('show_category') || $params->get('show_short_description', 1)) : ?> <div class="project-item-meta"> <?php if ($params->get('show_title_list', 1)) : ?> <h4> <a rel="bookmark" <?php echo $str_target; ?> title="<?php echo $item->title; ?>" href="<?php echo $link; ?>"> <?php echo $item->title; ?> </a> </h4> <?php endif; ?> <?php if ($params->get('show_category')) : ?> <h5> <a href="<?php echo $cat_link ?>" <?php echo $str_target; ?>> <?php echo $item->category_title; ?> </a> </h5> <?php endif; ?> <?php if ($params->get('show_short_description', 1)) : ?> <?php echo $item->short_description; ?> <?php endif; ?> </div> <?php endif; ?> </div> <?php endforeach; ?> </div> </div> </div>
/home/pteabiscqq/www/./././modules/mod_advportfoliopro/tmpl/default_slider.php