33 lines
971 B
PHP
33 lines
971 B
PHP
<?php
|
|
//Inclusion des css en fonction de la variable page
|
|
$tabStyles = array(
|
|
'styles' => array(
|
|
'list' => array('infogreffe_base.css', 'infogreffe.css', 'main.css', 'menu.css', 'jquery.autocomplete.css'),
|
|
'pages' => array('all'),
|
|
),
|
|
'styles_saisie' => array(
|
|
'list' => array('saisie.css', 'thickbox.css'),
|
|
'pages' => array('saisie'),
|
|
),
|
|
'styles_international' => array(
|
|
'list' => array('international.css'),
|
|
'pages' => array('international_recherche', 'international_identite', 'international_identitec'),
|
|
),
|
|
'styles_synthese' => array(
|
|
'list' => array('synthese.css'),
|
|
'pages' => array('synthese', 'rsynthese'),
|
|
),
|
|
'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'),
|
|
),
|
|
);
|
|
?>
|