extranet/www/includejs.php

21 lines
635 B
PHP
Raw Normal View History

<?php
//Inclusion des js en fonction de la variable page
$tabScripts = array(
'scripts' => array(
'list' => array('jquery.js', 'jquery.bgiframe.js', 'jquery.autocomplete.js', 'dropDownOverlapping.js', 'menu.js', 'scripts.js'),
'pages' => array('all'),
),
'scripts_saisie' => array(
'list' => array('saisieajax.js'),
'pages' => array('saisie')
),
'scripts_synthese' => array(
'list' => array('jquery.qtip.js', 'synthese.js'),
2009-10-15 09:39:11 +00:00
'pages' => array('synthese', 'rsynthese', 'rsynthesemin'),
),
2009-09-23 07:38:25 +00:00
'scripts_ratios' => array(
'list' => array('jquery.qtip.js', 'ratios.js'),
'pages' => array('ratios', 'rsynthese'),
2009-09-23 07:38:25 +00:00
),
);
?>