One Hat Cyber Team
Your IP :
216.73.216.115
Server IP :
194.44.31.54
Server :
Linux zen.imath.kiev.ua 4.18.0-553.77.1.el8_10.x86_64 #1 SMP Fri Oct 3 14:30:23 UTC 2025 x86_64
Server Software :
Apache/2.4.37 (Rocky Linux) OpenSSL/1.1.1k
PHP Version :
5.6.40
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
home
/
sam
/
public_html
/
web
/
includes
/
Edit File:
version.php
<?php /** * @version $Id: version.php 6086 2006-12-24 19:13:59Z robs $ * @package Joomla * @copyright Copyright (C) 2005 Open Source Matters. All rights reserved. * @license http://www.gnu.org/copyleft/gpl.html 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( '_VALID_MOS' ) or die( 'Restricted access' ); /** * Version information * @package Joomla */ class joomlaVersion { /** @var string Product */ var $PRODUCT = 'Joomla!'; /** @var int Main Release Level */ var $RELEASE = '1.0'; /** @var string Development Status */ var $DEV_STATUS = 'Stable'; /** @var int Sub Release Level */ var $DEV_LEVEL = '12'; /** @var int build Number */ var $BUILD = '$Revision: 6086 $'; /** @var string Codename */ var $CODENAME = 'Sunfire'; /** @var string Date */ var $RELDATE = '25 December 2006'; /** @var string Time */ var $RELTIME = '01:00'; /** @var string Timezone */ var $RELTZ = 'UTC'; /** @var string Copyright Text */ var $COPYRIGHT = "Copyright (C) 2005 - 2006 Open Source Matters. All rights reserved."; /** @var string URL */ var $URL = '<a href="http://www.joomla.org">Joomla!</a> is Free Software released under the GNU/GPL License.'; /** @var string Whether site is a production = 1 or demo site = 0: 1 is default */ var $SITE = 1; /** @var string Whether site has restricted functionality mostly used for demo sites: 0 is default */ var $RESTRICT = 0; /** @var string Whether site is still in development phase (disables checks for /installation folder) - should be set to 0 for package release: 0 is default */ var $SVN = 0; /** * @return string Long format version */ function getLongVersion() { return $this->PRODUCT .' '. $this->RELEASE .'.'. $this->DEV_LEVEL .' ' . $this->DEV_STATUS .' [ '.$this->CODENAME .' ] '. $this->RELDATE .' ' . $this->RELTIME .' '. $this->RELTZ; } /** * @return string Short version format */ function getShortVersion() { return $this->RELEASE .'.'. $this->DEV_LEVEL; } /** * @return string Version suffix for help files */ function getHelpVersion() { if ($this->RELEASE > '1.0') { return '.' . str_replace( '.', '', $this->RELEASE ); } else { return ''; } } } $_VERSION = new joomlaVersion(); $version = $_VERSION->PRODUCT .' '. $_VERSION->RELEASE .'.'. $_VERSION->DEV_LEVEL .' ' . $_VERSION->DEV_STATUS .' [ '.$_VERSION->CODENAME .' ] '. $_VERSION->RELDATE .' ' . $_VERSION->RELTIME .' '. $_VERSION->RELTZ; ?>
Simpan