|
System | : | Linux MiraNet 3.0.0-14-generic-pae #23-Ubuntu SMP Mon Nov 21 22:07:10 UTC 2011 i686 |
Software | : | Apache. PHP/5.3.6-13ubuntu3.10 |
ID | : | uid=65534(nobody) gid=65534(nogroup) groups=65534(nogroup)
|
|
Safe Mode | : | OFF |
Open_Basedir | : | OFF |
Freespace | : | 30.63 GB of 70.42 GB (43.5%) |
|
MySQL: ON MSSQL: OFF Oracle: OFF PostgreSQL: OFF Curl: OFF Sockets: ON Fetch: OFF Wget: ON Perl: ON |
Disabled Functions: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,
|
[ System Info ]
[ Processes ]
[ SQL Manager ]
[ Eval ]
[ Encoder ]
[ Mailer ]
[ Back Connection ]
[ Backdoor Server ]
[ Kernel Exploit Search ]
[ MD5 Decrypter ]
[ Reverse IP ]
[ Kill Shell ]
[ FTP Brute-Force ]
|
|
/
http/
guitar.1/
templates/
escene/
- drwxr-xr-x
|
Viewing file: component.php (4.01 KB) -rw-r--r--Select action/file-type:  ( +) |  ( +) |  ( +) | Code ( +) | Session ( +) |  ( +) | SDB ( +) |  ( +) |  ( +) |  ( +) |  ( +) |  ( +) |
<?php /*********************************************************************************** ************************************************************************************ *** *** *** XTC Template Framework 2.2.1 *** *** *** *** Copyright (c) 2010-2012 Monev Software LLC, All Rights Reserved *** *** *** *** This program is free software; you can redistribute it and/or modify *** *** it under the terms of the GNU General Public License as published by *** *** the Free Software Foundation; either version 2 of the License, or *** *** (at your option) any later version. *** *** *** *** This program is distributed in the hope that it will be useful, *** *** but WITHOUT ANY WARRANTY; without even the implied warranty of *** *** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *** *** GNU General Public License for more details. *** *** *** *** You should have received a copy of the GNU General Public License *** *** along with this program; if not, write to the Free Software *** *** Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA *** *** *** *** See COPYRIGHT.php for more information. *** *** See LICENSE.php for more information. *** *** *** *** www.joomlaxtc.com *** *** *** ************************************************************************************ ***********************************************************************************/ JHTML::_('behavior.mootools');
require JPATH_THEMES.'/'.$this->template.'/XTC/XTC.php'; $templateParameters = xtcLoadParams(); $layout = $templateParameters->templateLayout;
$document = JFactory::getDocument(); $user = JFactory::getUser();
$params = $templateParameters->group->$layout; // We got $layout from the index.php
// Use the Grid parameters to compute the main columns width $grid = $params->xtcgrid; $style = $params->xtcstyle; //Group parameters from grid.xml $gridParams = $templateParameters->group->$grid; $styleParams = $templateParameters->group->$style; // Start of HEAD ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php echo $this->language; ?>" lang="<?php echo $this->language; ?>" > <head> <?php // Include the CSS files using the groups as defined in the layout parameters echo xtcCSS($params->xtcgrid,$params->xtcstyle,$params->xtctypo);
// Get Xtc Menu library $document->addScript($xtc->templateUrl.'js/xtcMenu.js'); $document->addScriptDeclaration("window.addEvent('load', function(){ xtcMenu(null, 'menu', 180,80,'h', new Fx.Transition(Fx.Transitions.Quint.easeInOut), 70, true, true); });");
// Include the Menu files, if any //echo xtcMenu($params->xtcmenu); ?> <jdoc:include type="head" /> <!--[if IE 7]><link rel="stylesheet" type="text/css" href="<?php echo $xtc->templateUrl; ?>css/ie7.css" /><![endif]--> <!--[if IE 8]><link rel="stylesheet" type="text/css" href="<?php echo $xtc->templateUrl; ?>css/ie8.css" /><![endif]--> </head> <body> <jdoc:include type="message" /> <jdoc:include type="component" /> </body> <?php // End of BODY ?> </html>
|