Skip to content
Snippets Groups Projects
Commit 8c7cb7c0 authored by Ghislain Loas's avatar Ghislain Loas
Browse files

hotline #46627 remove unused code

parent ca907d2c
Branches
Tags
4 merge requests!1797Master,!1746Master,!1745Hotline master,!1742Hotline#46627 fix selection edition
<?php
echo $this->renderForm($this->form);
return;
?>
<form class="edit_panier" method="post" action="<?php
echo $this->url(['controller'=>'panier',
'action'=>'edit',
'id_panier'=>$this->panier->getId()],null,true) ?>">
<?php
$domaine_select = '';
if(Class_Users::getIdentity()->hasRightAccessDomaines()) {
$domaine_select = '<fieldset><legend>'.$this->_('Ranger le panier dans des domaines').'</legend>'
.$this->domaineSelect($this->panier)
.'</fieldset>';
}
echo '<fieldset><legend>'.$this->_('Généralités').'</legend>';
echo '<label for="new_libelle">'.$this->_('Titre du panier').'</label>';
echo '<input type="text" size="40" maxlength="40" id="new_libelle" name="new_libelle" value="'.htmlspecialchars($this->panier->getLibelle()).'">';
echo '</fieldset>';
echo $domaine_select;
echo $this->formSubmit('edit_submit','Valider',['class' => 'bouton']);
?>
</form>
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment