⚝
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
/
View File Name :
AlphaFilter.php
* @author Jon Parise
* @package Turba */ /** * Skips objects whose name does not start with the specified letter */ class Turba_View_List_AlphaFilter { protected $_alpha; protected $_format; public function __construct($alpha) { $this->_alpha = Horde_String::lower($alpha); $this->_format = $GLOBALS['prefs']->getValue('name_sort'); } public function skip($ob) { $name = Turba::formatName($ob, $this->_format); if ($this->_alpha != '*' && Horde_String::lower(substr($name, 0, 1)) != $this->_alpha) { return true; } return false; } }