Changeset 50164 in spip-zone
- Timestamp:
- Aug 2, 2011, 7:42:12 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
_plugins_/Association/Associaspip/exec/action_plan.php
r46893 r50164 3 3 * Associaspip, extension de SPIP pour gestion d'associations * 4 4 * * 5 * Copyright (c) 2007 Bernard Blazin & Fran çois de Montlivault (V1) *5 * Copyright (c) 2007 Bernard Blazin & Fran�ois de Montlivault (V1) * 6 6 * Copyright (c) 2010-2011 Emmanuel Saint-James & Jeannot Lapin (V2) * 7 7 * * … … 25 25 26 26 $id_plan=intval(_request('id')); 27 $code=$_POST['code']; 28 $intitule=$_POST['intitule']; 29 $classe=$_POST['classe']; 30 $reference=$_POST['reference']; 31 $solde_anterieur=$_POST['solde_anterieur']; 32 $date_anterieure=$_POST['date_anterieure']; 33 $actif=$_POST['actif']; 34 $commentaire=$_POST['commentaire']; 35 27 36 28 $commencer_page = charger_fonction('commencer_page', 'inc'); 37 29 echo $commencer_page(_T('asso:titre_gestion_pour_association')) ; … … 46 38 echo association_retour(); 47 39 echo debut_droite('',true); 40 41 $code = sql_getfetsel('code', 'spip_asso_plan', "id_plan=$id_plan"); 42 $intitule = sql_getfetsel('intitule', 'spip_asso_plan', "id_plan=$id_plan"); 48 43 49 44 debut_cadre_relief( "", false, "", $titre = _T('asso:suppression_de_compte')); 50 echo '<p><strong>' . _T('asso:vous_vous_appretez_a_effacer_le_compte'). $id_plan.'</strong></p>';45 echo '<p><strong>' . _T('asso:vous_vous_appretez_a_effacer_le_compte').' : '.$code.' -> '.$intitule.'</strong></p>'; 51 46 52 47 $res .= '<p style="float:right;"><input type="submit" value="'._T('asso:bouton_confirmer').'" class="fondo" /></p>';
Note: See TracChangeset
for help on using the changeset viewer.