extranet/www/includejs.php

38 lines
1.1 KiB
PHP
Raw Normal View History

<?php
//Inclusion des js en fonction de la variable page
$tabScripts = array(
'scripts' => array(
2010-03-03 13:33:16 +00:00
'list' => array('jquery.js', 'jquery-ui.js', 'jquery.bgiframe.js',
'jquery.autocomplete.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'),
'pages' => array('synthese', 'rsynthese', 'rsynthesemin'),
),
'scripts_ratios' => array(
'list' => array('jquery.qtip.js', 'ratios.js'),
'pages' => array('ratios', 'rsynthese'),
),
'scripts_surveillance' => array(
2010-04-13 08:21:31 +00:00
'list' => array('jquery.tablesorter.js', 'telechargement.js'),
'pages' => array('surveillance'),
),
2010-04-13 08:21:31 +00:00
'scripts_telechargement' => array(
'list' => array('telechargement.js'),
'pages' => array('moncompte', 'administration', 'portefeuille'),
2010-04-13 08:21:31 +00:00
),
2010-03-03 13:33:16 +00:00
'scripts_portefeuille' => array(
'list' => array('jquery.qtip.js', 'jquery.tablesorter.js'),
'pages' => array('portefeuille'),
),
'scripts_greffes' => array(
'list' => array('greffes.js'),
'pages' => array('greffes'),
),
);
?>