extranet/www/includejs.php
2010-05-19 15:48:29 +00:00

55 lines
1.6 KiB
PHP

<?php
//Inclusion des js en fonction de la variable page
$tabScripts = array(
'scripts' => array(
'list' => array('jquery.js', 'jquery.bgiframe.js', 'jquery-ui.js',
'jquery.qtip.js', 'scripts.js'),
'pages' => array('all'),
),
'scripts_saisie' => array(
'list' => array('saisieajax.js', 'jquery.autocomplete.js'),
'pages' => array('saisie')
),
'scripts_synthese' => array(
'list' => array('synthese.js'),
'pages' => array('synthese', 'rsynthese', 'rsynthesemin', 'bilans'),
),
'scripts_ratios' => array(
'list' => array('ratios.js'),
'pages' => array('ratios', 'rsynthese'),
),
'scripts_surveillance' => array(
'list' => array('jquery.tablesorter.js', 'telechargement.js'),
'pages' => array('surveillance'),
),
'scripts_portefeuille' => array(
'list' => array('jquery.tablesorter.js', 'portefeuille.js',
'telechargement.js'),
'pages' => array('portefeuille'),
),
'scripts_greffes' => array(
'list' => array('greffes.js'),
'pages' => array('greffes'),
),
'scripts_moncompte' => array(
'list' => array('moncompte.js', 'telechargement.js'),
'pages' => array('moncompte'),
),
'scripts_administration' => array(
'list' => array('administration.js', 'telechargement.js'),
'pages' => array('administration', 'administration_client'),
),
'scripts_greffescmd' => array(
'list' => array('greffescmd.js'),
'pages' => array('greffescmd'),
),
'scripts_kbis' => array(
'list' => array('jqueryprogressbar.js','kbis.js'),
'pages' => array('kbis2'),
),
'scripts_enquetec' => array(
'list' => array('enquetec.js'),
'pages' => array('enquetec'),
),
);
?>