extranet/www/includejs.php

55 lines
1.6 KiB
PHP
Raw Normal View History

<?php
//Inclusion des js en fonction de la variable page
$tabScripts = array(
'scripts' => array(
2010-05-07 12:09:59 +00:00
'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'),
2010-05-07 15:48:45 +00:00
'pages' => array('synthese', 'rsynthese', 'rsynthesemin', 'bilans'),
),
'scripts_ratios' => array(
'list' => array('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-03-03 13:33:16 +00:00
'scripts_portefeuille' => array(
2010-05-07 15:48:45 +00:00
'list' => array('jquery.tablesorter.js', 'portefeuille.js',
'telechargement.js'),
2010-03-03 13:33:16 +00:00
'pages' => array('portefeuille'),
),
'scripts_greffes' => array(
'list' => array('greffes.js'),
'pages' => array('greffes'),
),
2010-04-26 14:44:24 +00:00
'scripts_moncompte' => array(
2010-05-07 15:48:45 +00:00
'list' => array('moncompte.js', 'telechargement.js'),
2010-04-26 14:44:24 +00:00
'pages' => array('moncompte'),
),
2010-05-07 15:48:45 +00:00
'scripts_administration' => array(
'list' => array('administration.js', 'telechargement.js'),
'pages' => array('administration', 'administration_client'),
),
2010-05-19 15:48:29 +00:00
'scripts_greffescmd' => array(
2010-05-07 15:48:45 +00:00
'list' => array('greffescmd.js'),
'pages' => array('greffescmd'),
),
2010-05-07 12:09:59 +00:00
'scripts_kbis' => array(
'list' => array('jqueryprogressbar.js','kbis.js'),
'pages' => array('kbis2'),
),
2010-05-07 15:48:45 +00:00
'scripts_enquetec' => array(
'list' => array('enquetec.js'),
'pages' => array('enquetec'),
),
);
?>