XOOPS  2.6.0
skin_version.php
Go to the documentation of this file.
1 <?php
2 /*
3  You may not change or alter any portion of this comment or credits
4  of supporting developers from this source code or any supporting source code
5  which is considered copyrighted (c) material of the original comment or credit authors.
6 
7  This program is distributed in the hope that it will be useful,
8  but WITHOUT ANY WARRANTY; without even the implied warranty of
9  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
10  */
11 
21 $skinversion['template'] = 'templates/template.tpl';
22 
23 $skinversion['css'] = 'css/superfish.css';
24 
25 $skinversion['js'] = array('../../js/jquery-1.3.2.min.js',
26  '../../js/hoverIntent.js',
27  '../../js/superfish.js'
28  );
29 
30 $header = "\n" . '<script type="text/javascript">';
31 $header .= "\n" . ' var $sf = jQuery.noConflict()';
32 $header .= "\n" . ' $sf(function(){';
33 $header .= "\n" . ' $sf(\'ul.sf-menu\').superfish({';
34 $header .= "\n" . ' delay: 1000,';
35 $header .= "\n" . ' animation: {opacity:\'show\',height:\'show\'},';
36 $header .= "\n" . ' speed: \'fast\'';
37 $header .= "\n" . ' });';
38 $header .= "\n" . ' });';
39 $header .= "\n" . '</script>';
40 
41 $skinversion['header'] = $header;
42 
43 ?>
$header