59 lines
1.7 KiB
PHP
59 lines
1.7 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-ui-i18n.js', 'jquery.qtip.js', 'scripts.js'),
|
|
'pages' => array('all'),
|
|
),
|
|
'scripts_saisie' => array(
|
|
'list' => array('saisieajax.js', 'jquery.form.js'),
|
|
'pages' => array('saisie')
|
|
),
|
|
'scripts_synthese' => array(
|
|
'list' => array('synthese.js'),
|
|
'pages' => array('synthese', 'indiscore3', 'indiscore2', 'bilans', 'flux'),
|
|
),
|
|
'scripts_ratios' => array(
|
|
'list' => array('ratios.js'),
|
|
'pages' => array('ratios', 'indiscore3'),
|
|
),
|
|
'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('kbis'),
|
|
),
|
|
'scripts_enquetec' => array(
|
|
'list' => array('enquetec.js'),
|
|
'pages' => array('enquetec'),
|
|
),
|
|
'scripts_pieces' => array(
|
|
'list' => array('pieces.js'),
|
|
'pages' => array('pieces'),
|
|
),
|
|
);
|
|
?>
|