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'] = array('css/superfish.css',
24  'css/superfish-navbar.css'
25  );
26 
27  $skinversion['js'] = array('../../js/jquery-1.3.2.min.js',
28  '../../js/hoverIntent.js',
29  '../../js/superfish.js'
30  );
31 
32  $header = "\n" . '<script type="text/javascript">';
33  $header .= "\n" . ' var $sfnav = jQuery.noConflict()';
34  $header .= "\n" . ' $sfnav(function(){';
35  $header .= "\n" . ' $sfnav(\'ul.sf-menu\').superfish({';
36  $header .= "\n" . ' pathClass: \'current\'';
37  $header .= "\n" . ' });';
38  $header .= "\n" . ' });';
39  $header .= "\n" . '</script>';
40 
41  $skinversion['header'] = $header;
42 
43  ?>
$header