⚝
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 :
~
/
proc
/
self
/
root
/
usr
/
share
/
psa-horde
/
lib
/
Block
/
View File Name :
Time.php
_name = _("Current Time"); } /** */ protected function _params() { return array( 'time' => array( 'type' => 'enum', 'name' => _("Time format"), 'default' => '24-hour', 'values' => array( '24-hour' => _("24 Hour Format"), '12-hour' => _("12 Hour Format") ) ) ); } /** */ protected function _content() { if (empty($this->_params['time'])) { $this->_params['time'] = '24-hour'; } // Set the timezone variable, if available. $GLOBALS['registry']->setTimeZone(); $html = '
' . strftime('%A, %B %d, %Y '); if ($this->_params['time'] == '24-hour') { $html .= strftime('%H:%M'); } else { $html .= strftime('%I:%M %p'); } return $html . '
'; } }