extranet/www/includecss.php

33 lines
987 B
PHP
Raw Normal View History

<?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(
2009-07-21 08:49:41 +00:00
'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'),
2009-10-15 09:39:11 +00:00
'pages' => array('synthese', 'rsynthese', 'rsynthesemin'),
),
'styles_bilans' => array(
'list' => array('bilans.css'),
2009-09-23 14:37:18 +00:00
'pages' => array('bilans', 'rsynthese'),
),
2009-09-23 07:38:25 +00:00
'style_ratios' => array(
'list' => array('ratios.css'),
2009-09-23 14:37:18 +00:00
'pages' => array('ratios', 'rsynthese'),
),
'style_annonces' => array(
'list' => array('annonces.css'),
'pages' => array('annonces', 'rsynthese'),
2009-09-23 07:38:25 +00:00
),
);
?>