File: /home/centralexf/www/modules/mod_text_scroll/mod_text_scroll.php
<?php
/**
* @version $Id: mod_latestnews_sc.php,v 1.7 2006/01/23 17:19:53 levis Exp $
* @package Mitra : JoomlaMarket
* @copyright (C) 2006 JoomlaMarket Club
*/
/** ensure this file is being included by a parent file */
// no direct access
defined('_JEXEC') or die('Restricted access');
$class_sfx = $params->get( 'moduleclass_sfx' );
$width = $params->get( 'width', 150 );
$height = $params->get( 'height', 70 );
$direction = $params->get( 'direction', "left" );
$scrolldelay = $params->get( 'scrolldelay', 100 );
$scrollamount = $params->get( 'scrollamount', 5 );
$boullet = $params->get( 'boullet', "Your Text Here ..." );
$color = $params->get( 'color', "#FF0000" );
$behavior = $params->get( 'behavior', "slide" );
?>
<div style="width: <?php echo $width; ?>px; height: <?php echo $height; ?>px;">
<script type="text/javascript">
<!--
document.write("<marquee direction='<?php echo $direction; ?>' scrolldelay='<?php echo $scrolldelay; ?>' scrollamount='<?php echo $scrollamount; ?>' truespeed onmouseover=this.stop() onmouseout=this.start() height='<?php echo $height; ?>' behavior='<?php echo $behavior; ?>'");
//-->
</script>
<!-- Texte déroulant à afficher : -->
<span style=" color: <?php echo $color; ?>;"><?php echo $boullet; ?></span>
<script type="text/javascript">
<!--
document.write("</marquee>");
//-->
</script>
</div>