450 Code cleaning ajax_misc rename files for ajax

This commit is contained in:
Dany De Bontridder 2011-11-15 09:51:13 +00:00
parent 7e74c15f9c
commit 2bed86c6f8
9 changed files with 10 additions and 10 deletions

View file

@ -0,0 +1,103 @@
<?php
/*
* This file is part of PhpCompta.
*
* PhpCompta is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* PhpCompta is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with PhpCompta; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
/* $Revision$ */
// Copyright Author Dany De Bontridder ddebontridder@yahoo.fr
/**
* @file
* @brief
*
*/
// retrieve data
$profile=$cn->get_value("select p_id from profile_menu where pm_id=$1",array($pm_id));
$a_value=$cn->make_array("select me_code,me_code||' '||me_menu||' '||coalesce(me_description,'') from menu_ref",0);
$a_value_null=$cn->make_array("select me_code,me_code||' '||me_menu||' '||coalesce(me_description,'') from menu_ref
where
me_code in (select me_code from profile_menu where p_id=$profile and p_type_display<>'P' and pm_id <> $pm_id)
UNION ALL
select me_code,me_code||' '||me_menu||' '||coalesce(me_description,'') from menu_ref
where
me_code='EXTENSION'",1);
$a_type=$cn->make_array("select pm_type,pm_desc from profile_menu_type",1);
$array=$cn->get_array("select p_id,pm_id,me_code,me_code_dep,p_order,p_type_display,pm_default
from profile_menu
where pm_id=$1",array($pm_id));
if ( empty($array)) {
alert("Code invalide");
exit();
}
echo HtmlInput::title_box($array[0]['me_code'],'divdm'.$pm_id);
$me_code=new ISelect('me_code');
$me_code->value=$a_value;
$me_code->selected=$array[0]['me_code'];
$me_code_dep=new ISelect('me_code_dep');
$me_code_dep->value=$a_value_null;
$me_code_dep->selected=$array[0]['me_code_dep'];
$p_order=new Inum('p_order',$array[0]['p_order']);
$pm_default=new ICheckBox('pm_default','1');
$pm_default->set_check($array[0]['pm_default']);
?>
<form method="POST" onsubmit="return confirm('Vous confirmez ?')">
<?=HtmlInput::hidden('pm_id',$array[0]['pm_id'])?>
<?=HtmlInput::hidden('p_id',$array[0]['p_id'])?>
<table>
<tr>
<td>Code</td>
<td><?=$me_code->input()?></td>
</tr>
<?
if ($array[0]['p_type_display']!='P'):
?>
<tr>
<td>Dépendant de </td>
<td><?=$me_code_dep->input()?></td>
</tr>
<tr>
<td>Ordre d'apparition</td>
<td><?=$p_order->input()?></td>
</tr>
<tr>
<td>Menu par défaut</td>
<td><?=$pm_default->input()?></td>
</tr>
<? endif;?>
</table>
<p>
Cochez cette case si vous souhaitez effacer ce menu ainsi que ceux qui en dépendent
<?
$delete=new ICheckBox('delete',"1");
echo $delete->input();
?>
</p>
<?
echo HtmlInput::submit('mod',"Valider");
echo '</form>';
?>