class active/noactive > archives

Bonjour,

est-ce que l'attribut active/no-active des archives dans la sidebar fonctionne ?
j'ai pourtant rien touché sur ce point ...

Cordialement,
_____
D.San

Réponses

  • Je pense, il suffit de faire entrer la variable #archives_status dans le code appelé :

    http://devzone.pluxml.org/?plxShow/function/archList
  • danielsandanielsan Member
    novembre 2011 modifié
    la méthode est bien appelée de la sorte:
    <h3><?php $plxShow->lang('ARCHIVES') ?></h3>
    		<ul>
    			<?php $plxShow->archList('<li id="#archives_id" class="#archives_status"><a href="#archives_url" title="#archives_name">#archives_name</a> (#archives_nbart)</li>'); ?>
    		</ul>
    
    d'ailleurs dans le template par déafut c'est
    <h3><?php $plxShow->lang('ARCHIVES') ?></h3>
            <ul>
                <?php $plxShow->archList('<li id="#archives_id" class="#archives_status"><a href="#archives_url" title="#archives_name">#archives_name</a> (#archives_nbart)</li>'); ?>
            </ul>
    
    et dans la méthode:
    public function archList($format='<li id="#archives_id"><a class="#archives_status" href="#archives_url" title="#archives_name">#archives_name</a></li>')
    
    le statut est un coup pour l'élément de liste et l'autre pour le lien ...
Connectez-vous ou Inscrivez-vous pour répondre.