37 lines
934 B
PHP
37 lines
934 B
PHP
<?php
|
|
if ( hasModeEdition() )
|
|
{
|
|
$href = '/?page=saisieajax&q=annonces';
|
|
|
|
$liensEdit = array(
|
|
'editDialog' => array(
|
|
'class' => 'annonceEdit',
|
|
'title' => 'Edition annonce',
|
|
'img' => '<img src="./img/interface/editer.png"/>',
|
|
),
|
|
'deleteDialog' => array(
|
|
'class' => 'annonceDelete',
|
|
'title' => 'Suppression annonce',
|
|
'img' => '<img src="./img/interface/supprimer.png"/>',
|
|
),
|
|
'copyDialog' => array(
|
|
'class' => 'annonceCopy',
|
|
'title' => 'Dupliquer sur autre Siren',
|
|
'img' => '<img src="./img/save_copy.png"/>',
|
|
),
|
|
);
|
|
|
|
foreach ( $liensEdit as $lienId => $lienItem ){
|
|
?>
|
|
<a class="<?=$lienItem['class']?>" title="<?=$lienItem['title']?>"
|
|
href="<?=$href.'/'.$lienId.'/'.$siret.'/'.$ann['BodaccCode'].'/'.$idan?>" />
|
|
<?=$lienItem['img']?>
|
|
</a>
|
|
<?php
|
|
}
|
|
?>
|
|
<script type="text/javascript" src="js/jquery.form.js"></script>
|
|
<script type="text/javascript" src="js/annonces.js"></script>
|
|
<?php
|
|
}
|