⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.72
Server IP:
41.128.143.86
Server:
Linux host.raqmix.cloud 6.8.0-1025-azure #30~22.04.1-Ubuntu SMP Wed Mar 12 15:28:20 UTC 2025 x86_64
Server Software:
Apache
PHP Version:
8.3.23
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
usr
/
share
/
psa-horde
/
turba
/
lib
/
View
/
List
/
Edit File: PageFilter.php
<?php /** * The Turba_View_List:: class provides an interface for objects that * visualize Turba_List objects. * * @author Chuck Hagenbuch <chuck@horde.org> * @author Jon Parise <jon@csh.rit.edu> * @package Turba */ /** * Skips objects which are not on the current page */ class Turba_View_List_PageFilter { protected $_min; protected $_max; protected $_count = 0; public function __construct($min, $max) { $this->_min = $min; $this->_max = $max; } public function skip($ob) { if ($this->_count++ < $this->_min) { return true; } return ($this->_count > $this->_max); } }
Simpan