InsertAttribut($_REQUEST['ad_id']); echo $fiche_def->input_detail(); echo $retour; return; } /*******************************************************************************************/ // Remove an attribut /*******************************************************************************************/ if ( $action == 'remove_line' ) { $fiche_def=new Fiche_Def($cn,$_REQUEST['fd_id']); $fiche_def=new Fiche_Def($cn,$_REQUEST['fd_id']); $fiche_def->RemoveAttribut($_REQUEST['chk_remove']); echo $fiche_def->input_detail(); echo $retour; return; } /*******************************************************************************************/ // Try to remove a category /*******************************************************************************************/ if ( $action == 'remove_cat' ) { $post_id=HtmlInput::default_value_post('fd_id', 0); if ($post_id == 0 || $post_id >= 500000) { alert(_('Impossible d\'enlever cette catégorie')); } else { $fd_id=new Fiche_Def($cn,$post_id); $remains=$fd_id->remove(); if ( $remains != 0 ) { /* some card are not removed because it is used */ alert(_('Impossible d\'enlever cette catégorie, certaines fiches sont encore utilisées'."\n". 'Les fiches non utilisées ont cependant été effacées')); } } } /*******************************************************************************************/ // Change some basis info /*******************************************************************************************/ if ( isset ($_POST['change_name'])) { if (isset ($_REQUEST['label']) ) { $fiche_def=new Fiche_Def($cn,$_REQUEST['fd_id']); $fiche_def->SaveLabel($_REQUEST['label']); if ( isset($_REQUEST['create'])) { $fiche_def->set_autocreate(true); } else { $fiche_def->set_autocreate(false); } $fiche_def->save_class_base($_REQUEST['class_base']); $fiche_def->save_description($_REQUEST['fd_description']); } echo $fiche_def->input_detail(); echo $retour; return; } /*******************************************************************************************/ // Save order of the attributes /*******************************************************************************************/ if ( $action == 'save_line' ) { $fiche_def=new Fiche_Def($cn,$_REQUEST['fd_id']); $fiche_def->save_order($_POST); echo $fiche_def->input_detail(); echo $retour; return; } /*******************************************************************************************/ // Save a new category of card /*******************************************************************************************/ if ( isset($_POST['add_modele'])) { $single=new Tool_Uos("dup"); if ($single->get_count()==0) { $single->save(); $fiche_def=new Fiche_Def($cn); /** * Check if we have all needed information */ if ( $fiche_def->Add($_POST) == 0 ) { echo $fiche_def->input_detail(); echo $retour; return; } else { $fiche_def->input_new(); echo $retour; return; } } else { alert(_('Doublon')); } } $fiche_def=new Fiche_def($cn); $fiche_def->Display(); $dossier=Dossier::id(); ?>