2012-11-09 11:33:00 +00:00

19 lines
496 B
PHTML

<?php if ( $this->error ) {?>
<p><?=$this->error?></p>
<?php } else {?>
<?php if( $this->mode=='edit' || $this->mode=='delete' ) {?>
<p>Lien modifié.</p>
<?php } else {?>
<p>Lien crée (id=<?=$this->id?>).</p>
<?php }?>
<p>Quitter la boite de dialogue pour rafraichir la page.</p>
<?php }?>
<script>
$('#dialog').dialog({ buttons: [ {
text: "Quitter",
click: function() {
$(this).dialog("close");
window.location.href = window.location.href;
}
} ] });
</script>