X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=includes%2Fui%2Fui_input.inc;h=f1fb3691c1d6d45914a4b602ac49e6e0f0001e99;hb=0ad69edb5561aac03a5af49286c37b3350307719;hp=2dcd14e14aa23406ca57ecff765b5b6fe18d4c18;hpb=132a27118a73827820a87093ad7e0b8af30ac44d;p=fa-stable.git diff --git a/includes/ui/ui_input.inc b/includes/ui/ui_input.inc index 2dcd14e1..f1fb3691 100644 --- a/includes/ui/ui_input.inc +++ b/includes/ui/ui_input.inc @@ -32,24 +32,60 @@ function find_submit($prefix, $numeric=true) } return $numeric ? -1 : null; } +//------------------------------------------------------------------------------ +// +// Helper function for simple db table editor pages +// +function simple_page_mode($numeric_id = true) +{ + global $Ajax, $Mode, $selected_id; + + $default = $numeric_id ? -1 : ''; + $selected_id = get_post('selected_id', $default); + foreach (array('ADD_ITEM', 'UPDATE_ITEM', 'RESET') as $m) { + if (isset($_POST[$m])) { + $Ajax->activate('_page_body'); + if ($m == 'RESET') + $selected_id = $default; + $Mode = $m; return; + } + } + foreach (array('Edit', 'Delete') as $m) { + foreach ($_POST as $p => $pvar) { + if (strpos($p, $m) === 0) { +// $selected_id = strtr(substr($p, strlen($m)), array('%2E'=>'.')); + unset($_POST['_focus']); // focus on first form entry + $selected_id = quoted_printable_decode(substr($p, strlen($m))); + $Ajax->activate('_page_body'); + $Mode = $m; + return; + } + } + } + $Mode = ''; +} //------------------------------------------------------------------------------ // // Read numeric value from user formatted input // -function input_num($postname=null) +function input_num($postname=null, $dflt=null) { if (!isset($_POST[$postname])) - return null; + return $dflt; return user_numeric($_POST[$postname]); } //--------------------------------------------------------------------------------- -function hidden($name, $value, $echo=true) +function hidden($name, $value=null, $echo=true) { global $Ajax; + + if ($value === null) + $value = get_post($name); + $ret = ""; $Ajax->addUpdate($name, $name, $value); if ($echo) @@ -59,13 +95,23 @@ function hidden($name, $value, $echo=true) } //--------------------------------------------------------------------------------- - +// Submit button. +// $async parameter can have 3 values: +// null - fallback button not visible in js enabled mode +// false - normal submit via form action +// true - when js is on submition via ajax call +// 'process' - ditto with processing indicator in msgbox +// function submit($name, $value, $echo=true, $title=false, $async=false) { + default_focus($name); $submit_str = "\n"; if ($echo) @@ -98,9 +144,11 @@ function submit_center_last($name, $value, $title=false, $async=false) function submit_add_or_update($add=true, $title=false, $async=false) { if ($add) - submit('ADD_ITEM', _("Save"), true, $title, $async); - else + submit('ADD_ITEM', _("Add new"), true, $title, $async); + else { submit('UPDATE_ITEM', _("Update"), true, $title, $async); + submit('RESET', _("Cancel"), true, $title, $async); + } } function submit_add_or_update_center($add=true, $title=false, $async=false) @@ -140,7 +188,7 @@ function submit_row($name, $value, $right=true, $extra="", $title=false, $async= echo ""; if ($right) echo " \n"; - submit_cells($name, $value, $extra, $title); + submit_cells($name, $value, $extra, $title, $async); echo "\n"; } //--------------------------------------------------------------------------------- @@ -169,7 +217,7 @@ function check_value($name) return 1; } -function check($label, $name, $value, $submit_on_change=false, $title=false) +function check($label, $name, $value=null, $submit_on_change=false, $title=false) { global $Ajax; @@ -177,8 +225,8 @@ function check($label, $name, $value, $submit_on_change=false, $title=false) if ($label) echo $label . " "; - if ($value == null) - $value = (!isset($_POST[$name]) ? 0 : $_POST[$name]); + if ($value === null) + $value = get_post($name,0); echo ""; - if ($value == null) - $value = (!isset($_POST[$name]) ? "" : $_POST[$name]); + if ($value === null) + $value = get_post($name); echo ""; @@ -406,7 +454,7 @@ function percent_row($label, $name, $init=null) if (!isset($_POST[$name]) || $_POST[$name]=="") { - $_POST[$name] = $init== null ? '' : $init; + $_POST[$name] = $init == null ? '' : $init; } small_amount_row($label, $name, $_POST[$name], null, "%", user_percent_dec());