extranet/www/includejs.php
2009-12-04 17:17:09 +00:00

26 lines
794 B
PHP

<?php
//Inclusion des js en fonction de la variable page
$tabScripts = array(
'scripts' => array(
'list' => array('jquery.js', 'jquery.bgiframe.js', 'jquery.autocomplete.js', 'jquery.dimensions.js', 'jquery.easing.js', 'jquery-ui.js', 'scripts2.js'),
'pages' => array('all'),
),
'scripts_saisie' => array(
'list' => array('saisieajax.js'),
'pages' => array('saisie')
),
'scripts_synthese' => array(
'list' => array('jquery.qtip.js', 'synthese.js'),
'pages' => array('synthese', 'rsynthese', 'rsynthesemin'),
),
'scripts_ratios' => array(
'list' => array('jquery.qtip.js', 'ratios.js'),
'pages' => array('ratios', 'rsynthese'),
),
'scripts_surveillance' => array(
'list' => array('thickbox.js', 'jquery.tablesorter.js'),
'pages' => array('surveillance'),
),
);
?>