Last change
on this file since 1439 was
1439,
checked in by roux, 10 years ago
|
legende over sur graphes, laborieeux sur multigraphes donc retiré
|
File size:
1.1 KB
|
Line | |
---|
1 | <div id="overDiv"></div> |
---|
2 | <?php $plotarray = array('parlementaire' => $parlementaire, 'time' => 'lastyear', 'questions' => 'false', 'link' => 'false'); |
---|
3 | if (isset($options['session'])) $plotarray['time'] = $options['session']; |
---|
4 | if (isset($options['questions'])) $plotarray['questions'] = $options['questions']; |
---|
5 | if (isset($options['link'])) $plotarray['link'] = $options['link']; |
---|
6 | |
---|
7 | if ($options['plot'] == 'all' || $options['plot'] == 'total') { |
---|
8 | $plotarray = array_merge($plotarray, array('type' => 'total')); |
---|
9 | echo include_partial('plot/plotParlementaire', $plotarray); |
---|
10 | } |
---|
11 | if ($options['plot'] == 'all' || $options['plot'] == 'hemicycle') { |
---|
12 | if (!isset($plotarray['type'])) |
---|
13 | $plotarray = array_merge($plotarray, array('type' => 'hemicycle')); |
---|
14 | else $plotarray['type'] = 'hemicycle'; |
---|
15 | echo include_partial('plot/plotParlementaire', $plotarray); |
---|
16 | } |
---|
17 | if ($options['plot'] == 'all' || $options['plot'] == 'commission') { |
---|
18 | if (!isset($plotarray['type'])) |
---|
19 | $plotarray = array_merge($plotarray, array('type' => 'commission')); |
---|
20 | else $plotarray['type'] = 'commission'; |
---|
21 | echo include_partial('plot/plotParlementaire', $plotarray); |
---|
22 | } ?> |
---|
Note: See
TracBrowser
for help on using the repository browser.