X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=includes%2Fui%2Fui_controls.inc;h=9848761e263ac7e95eed708823810caf85d75d34;hb=dd09f71fabc65963aa0abcab5bca3b2b6d6355ae;hp=559d1751b9eda8fcce0de7037cd1b4507550388b;hpb=5dec41f0d87e407e1c9ffcb8eb63b92e4e471a9b;p=fa-stable.git diff --git a/includes/ui/ui_controls.inc b/includes/ui/ui_controls.inc index 559d1751..9848761e 100644 --- a/includes/ui/ui_controls.inc +++ b/includes/ui/ui_controls.inc @@ -142,7 +142,7 @@ function hyperlink_no_params($target, $label, $center=true) $target = $_SERVER['PHP_SELF']; if ($center) echo "
"; - echo "$pars[0]\n"; + echo "$pars[0]\n"; if ($center) echo "
"; } @@ -196,9 +196,9 @@ function submenu_view($title, $type, $number, $id=null) display_note(get_trans_view_str($type, $number, $title, false, 'menu_option', $id), 0, 1); } -function submenu_print($title, $type, $number, $id=null) +function submenu_print($title, $type, $number, $id=null, $email=0, $extra=0) { - display_note(print_document_link($number, $title, true, $type, false, 'menu_option', $id), 0, 1); + display_note(print_document_link($number, $title, true, $type, false, 'menu_option', $id, $email, $extra), 0, 1); } //----------------------------------------------------------------------------------- @@ -232,7 +232,7 @@ function hyperlink_params_separate($target, $label, $params, $center=false) $pars = access_string($label); if ($center) echo "
"; - echo "$pars[0]\n"; + echo "$pars[0]\n"; if ($center) echo "
"; } @@ -322,6 +322,43 @@ function div_end() } } +/* Table editor interfaces. Key is editor type + 0 => url of editor page + 1 => hotkey code + 2 => context help +*/ +$popup_editors = array( + 'customer' => array('/sales/manage/customers.php?debtor_no=', + 113, _("Customers")), + 'branch' => array('/sales/manage/customer_branches.php?SelectedBranch=', + 114, _("Branches")), + 'supplier' => array('/purchasing/manage/suppliers.php?supplier_id=', + 113, _("Suppliers")), + 'item' => array('/inventory/manage/items.php?stock_id=', + 115, _("Items")) +); +/* + Bind editors for various selectors. + $type - type of editor + $input - name of related input field + $caller - optional function key code (available values F1-F12: 112-123, + true: default) +*/ +function set_editor($type, $input, $caller=true) +{ + global $path_to_root, $Editors, $popup_editors, $Pagehelp; + + $key = $caller===true ? $popup_editors[$type][1] : $caller; + + $Editors[$key] = array( $path_to_root . $popup_editors[$type][0], $input); + + $help = 'F' . ($key - 111) . ' - '; + $help .= $popup_editors[$type][2]; + $Pagehelp[] = $help; +} +//------------------------------------------------------------------------------ +// Procedures below are now obsolete. Preserved for eventual future use. + /* External page call with saving current context. $call - url of external page @@ -388,7 +425,6 @@ function context_reset() { $_SESSION['Context'] = array(); } - /* Context stack initialization */