Skip to content
Snippets Groups Projects

Dev#13138

Merged Ghislain Loas requested to merge dev#13138 into WIP
Compare and
+ 1112
121
Preferences
Compare changes
Files
@@ -68,21 +68,30 @@
<td class="droite">Mode d'affichage des évènements</td>
<td class="gauche">
<?php
echo $this->formRadioButtons("mode-affichage",
$this->preferences["mode-affichage"],
["simple" => "mode liste simple",
"article" => "mode résumé d'article",
"none"=> "Ne pas afficher"]);
echo $this->formSelect('mode-affichage',
$this->preferences['mode-affichage'],
'',
['simple' => $this->_('mode liste simple'),
'article' => $this->_('mode résumé d\'article'),
'diaporama_navigation' => $this->_('Diaporama avec navigation'),
'none' => $this->_('Ne pas afficher')]);
echo (new ZendAfi_View_Helper_Admin_PropertiesReader())
->setView($this)
->propertiesReader($this->preferences['mode-affichage'],
$this->preferences);
?>
</td>
</tr>
<tr>
<td class="droite">Mode d'affichage des titres</td>
<td class="gauche">
<?php
echo $this->formRadioButtons("display_event_info",
$this->preferences["display_event_info"],
["bib" => "Nom de la bibliothèque",
"cat" => "Catégorie de l'article",
"none"=> "Titre seulement"]);
echo $this->formSelect('display_event_info',
$this->preferences['display_event_info'],
'',
['bib' => $this->_('Nom de la bibliothèque'),
'cat' => $this->_('Catégorie de l\'article'),
'none' => $this->_('Titre seulement')]);
?>
</td>
</tr>