⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.50
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
/
lib
/
Block
/
Account
/
View File Name :
Base.php
* @author Jan Schneider
* @package Horde */ class Horde_Block_Account_Base { /** * Hash containing connection parameters. * * @var array */ protected $_params = array(); /** * Constructor. * * @param array $params Hash containing connection parameters. */ public function __construct(array $params = array()) { $this->_params = $params; } /** * Returns the username. * * @return string The lowercased username. * */ public function getUsername() { return Horde_String::lower($this->_params['user']); } /** * Returns the user's quota if available. * * @return array A quota array, elements are used bytes and limit bytes. */ public function getQuota() { return array(); } /** * Returns the user's full name. * * @return string The user's full name. */ public function getFullname() { return ''; } /** * Returns the user's home (login) directory. * * @return string The user's directory. */ public function getHome() { return ''; } /** * Returns the user's default shell. * * @return string The user's shell. */ public function getShell() { return ''; } /** * Returns the date of the user's last password change. * * @return string Date string. */ public function getPasswordChange() { return ''; } /** * Returns the status of the current password. * * @return string A string with a warning message if the password is about * to expire. */ public function checkPasswordStatus() { return ''; } }