X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=includes%2Fui%2Fui_input.inc;h=483a885115df40f7edf9998049ebda9c9937ee27;hb=c2f2b28297b0355051ca2508fc7778438f5c6a3d;hp=6caa0abb3121e1f2911d1e991ead1566a860d71b;hpb=412b79dc32855f813d03a8a6dd9debd45bb308f5;p=fa-stable.git diff --git a/includes/ui/ui_input.inc b/includes/ui/ui_input.inc index 6caa0abb..483a8851 100644 --- a/includes/ui/ui_input.inc +++ b/includes/ui/ui_input.inc @@ -1,9 +1,14 @@ . +***********************************************************************/ // // Sets local POST value and adds Value to ajax posting if needed // @@ -32,24 +37,61 @@ 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', 'CLONE') as $m) { + if (isset($_POST[$m])) { + $Ajax->activate('_page_body'); + if ($m == 'RESET' || $m == 'CLONE') + $selected_id = $default; + unset($_POST['_focus']); + $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; + if (!isset($_POST[$postname]) || $_POST[$postname] == "") + 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) @@ -57,74 +99,120 @@ function hidden($name, $value, $echo=true) else return $ret; } - -//--------------------------------------------------------------------------------- - -function submit($name, $value, $echo=true, $title=false, $async=false) -{ - default_focus($name); - $submit_str = "\n"; + .">" + .($icon ? "" : '') + ."$value" + ."\n"; if ($echo) echo $submit_str; else return $submit_str; } -function submit_center($name, $value, $echo=true, $title=false, $async=false) +function submit_center($name, $value, $echo=true, $title=false, $async=false, $icon=false) { echo "
"; - submit($name, $value, $echo, $title, $async); + submit($name, $value, $echo, $title, $async, $icon); echo "
"; } -function submit_center_first($name, $value, $title=false, $async=false) +function submit_center_first($name, $value, $title=false, $async=false, $icon=false) { echo "
"; - submit($name, $value, true, $title, $async); + submit($name, $value, true, $title, $async, $icon); echo " "; } -function submit_center_last($name, $value, $title=false, $async=false) +function submit_center_last($name, $value, $title=false, $async=false, $icon=false) { echo " "; - submit($name, $value, true, $title, $async); + submit($name, $value, true, $title, $async, $icon); echo "
"; } - -function submit_add_or_update($add=true, $title=false, $async=false) -{ +/* + For following controls: + 'both' - use both Ctrl-Enter and Escape hotkeys + 'cancel' - apply to 'RESET' button +*/ +function submit_add_or_update($add=true, $title=false, $async=false, $clone=false) +{ + $cancel = $async; + + if ($async === 'both') { + $async = 'default'; $cancel = 'cancel'; + } + else if ($async === 'default') + $cancel = true; + else if ($async === 'cancel') + $async = true; + if ($add) - submit('ADD_ITEM', _("Save"), true, $title, $async); - else - submit('UPDATE_ITEM', _("Update"), true, $title, $async); + submit('ADD_ITEM', _("Add new"), true, $title, $async); + else { + submit('UPDATE_ITEM', _("Update"), true, _('Submit changes'), $async); + if ($clone) submit('CLONE', _("Clone"), true, + _('Edit new record with current data'), $async); + submit('RESET', _("Cancel"), true, _('Cancel edition'), $cancel); + } } -function submit_add_or_update_center($add=true, $title=false, $async=false) +function submit_add_or_update_center($add=true, $title=false, $async=false, $clone=false) { echo "
"; - submit_add_or_update($add, $title, $async); + submit_add_or_update($add, $title, $async, $clone); echo "
"; } -/* -function submit_add_or_update_row($add=true) -{ - echo ""; - submit_add_or_update($add); - echo "\n"; -} -*/ -function submit_add_or_update_row($add=true, $right=true, $extra="", $title=false, $async=false) +function submit_add_or_update_row($add=true, $right=true, $extra="", $title=false, $async=false, $clone = false) { echo ""; if ($right) echo " \n"; echo ""; - submit_add_or_update($add, $title, $async); + submit_add_or_update($add, $title, $async, $clone); echo "\n"; } @@ -140,26 +228,80 @@ 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"; } -//--------------------------------------------------------------------------------- -function button($name, $value, $onclick, $title=false) +function submit_return($name, $value, $title=false) { - default_focus($name); - echo "\n"; + if (@$_REQUEST['popup']) { + submit($name, $value, true, $title, 'selector'); + } } -function button_cell($name, $value, $onclick, $title=false) +function submit_js_confirm($name, $msg) { + add_js_source( + "_validate.$name=function(){ return confirm('$msg');};"); +}; +//----------------------------------------------------------------------------------- + +function set_icon($icon, $title=false) { - echo ""; - button($name, $value, $onclick, $title); - echo "\n"; + global $path_to_root; + return "\n"; +} + +function button($name, $value, $title=false, $icon=false, $aspect='') +{ + // php silently changes dots,spaces,'[' and characters 128-159 + // to underscore in POST names, to maintain compatibility with register_globals + $rel = ''; + if ($aspect == 'selector') { + $rel = " rel='$value'"; + $value = _("Select"); + } + if (user_graphic_links() && $icon) + { + if ($value == _("Delete")) // Helper during implementation + $icon = ICON_DELETE; + return "