45 lines
1.2 KiB
PHP
45 lines
1.2 KiB
PHP
<?php
|
|
//Inclusion des css en fonction de la variable page
|
|
$tabStyles = array(
|
|
'styles' => array(
|
|
'list' => array('jquery-ui.css', 'main.css', 'menu2.css'),
|
|
'pages' => array('all'),
|
|
),
|
|
'styles_saisie' => array(
|
|
'list' => array('saisie.css'),
|
|
'pages' => array('saisie'),
|
|
),
|
|
'styles_international' => array(
|
|
'list' => array('international.css'),
|
|
'pages' => array('international_recherche', 'international_identite'),
|
|
),
|
|
'styles_synthese' => array(
|
|
'list' => array('synthese.css'),
|
|
'pages' => array('synthese', 'rsynthese', 'rsynthesemin'),
|
|
),
|
|
'styles_bilans' => array(
|
|
'list' => array('bilans.css'),
|
|
'pages' => array('bilans', 'rsynthese'),
|
|
),
|
|
'style_ratios' => array(
|
|
'list' => array('ratios.css'),
|
|
'pages' => array('ratios', 'rsynthese'),
|
|
),
|
|
'style_annonces' => array(
|
|
'list' => array('annonces.css'),
|
|
'pages' => array('annonces', 'rsynthese'),
|
|
),
|
|
'style_surveillance' => array(
|
|
'list' => array('surveillance.css'),
|
|
'pages' => array('surveillance', 'portefeuille'),
|
|
),
|
|
'style_bdf' => array(
|
|
'list' => array('bdf.css'),
|
|
'pages' => array('bdf'),
|
|
),
|
|
'style_rsynthese' => array(
|
|
'list' => array('rsynthese.css'),
|
|
'pages' => array('rsynthese', 'giant_rapport'),
|
|
),
|
|
);
|
|
?>
|