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
/
modules
/
Edit File:
mod_templatechooser.php
<?php /** * @version $Id: mod_templatechooser.php 1492 2005-12-20 16:07:35Z Jinx $ * @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' ); global $cur_template; // titlelength can be set in module params $titlelength = $params->get( 'title_length', 20 ); $preview_height = $params->get( 'preview_height', 90 ); $preview_width = $params->get( 'preview_width', 140 ); $show_preview = $params->get( 'show_preview', 0 ); // Read files from template directory $template_path = "$mosConfig_absolute_path/templates"; $templatefolder = @dir( $template_path ); $darray = array(); if ($templatefolder) { while ($templatefile = $templatefolder->read()) { if ($templatefile != "." && $templatefile != ".." && $templatefile != ".svn" && $templatefile != "css" && is_dir( "$template_path/$templatefile" ) ) { if(strlen($templatefile) > $titlelength) { $templatename = substr( $templatefile, 0, $titlelength-3 ); $templatename .= "..."; } else { $templatename = $templatefile; } $darray[] = mosHTML::makeOption( $templatefile, $templatename ); } } $templatefolder->close(); } sort( $darray ); // Show the preview image // Set up JavaScript for instant preview $onchange = ""; if ($show_preview) { $onchange = "showimage()"; ?> <img src="<?php echo "templates/$cur_template/template_thumbnail.png";?>" name="preview" border="1" width="<?php echo $preview_width;?>" height="<?php echo $preview_height;?>" alt="<?php echo $cur_template; ?>" /> <script language='JavaScript1.2' type='text/javascript'> <!-- function showimage() { //if (!document.images) return; document.images.preview.src = 'templates/' + getSelectedValue( 'templateform', 'jos_change_template' ) + '/template_thumbnail.png'; } function getSelectedValue( frmName, srcListName ) { var form = eval( 'document.' + frmName ); var srcList = eval( 'form.' + srcListName ); i = srcList.selectedIndex; if (i != null && i > -1) { return srcList.options[i].value; } else { return null; } } --> </script> <?php } ?> <form action="index.php" name="templateform" method="post"> <?php echo mosHTML::selectList( $darray, 'jos_change_template', "id=\"mod_templatechooser_jos_change_template\" class=\"button\" onchange=\"$onchange\"",'value', 'text', $cur_template ); ?> <input class="button" type="submit" value="<?php echo _CMN_SELECT;?>" /> </form>
Simpan