X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=includes%2Fui%2Fui_controls.inc;h=b237889d745c2ee2fe69727375b1bbd884487fb3;hb=cc36638b65572da4867b7622723d6ed0135525b8;hp=2fc434be64bc2ab95b2609c2ec58374ee0bf5659;hpb=6918bb5a9e5505ebdeb1abd93127a68db5ece8b6;p=fa-stable.git diff --git a/includes/ui/ui_controls.inc b/includes/ui/ui_controls.inc index 2fc434be..b237889d 100644 --- a/includes/ui/ui_controls.inc +++ b/includes/ui/ui_controls.inc @@ -1,20 +1,29 @@ . +***********************************************************************/ +function get_post($name, $dflt='') +{ + return ((!isset($_POST[$name]) || $_POST[$name] === '') ? $dflt : $_POST[$name]); +} //--------------------------------------------------------------------------------- -function start_form($multi=false, $sid=false, $action="", $name="") +function start_form($multi=false, $dummy=false, $action="", $name="") { + // $dummy - leaved for compatibility with 2.0 API + if ($name != "") $name = "name='$name'"; if ($action == "") $action = $_SERVER['PHP_SELF']; - if ($sid) - { - if (strpos($action, "?")) - $action .= "&" . SID; - else - $action .= "?" . SID; - } + if ($multi) echo "
\n"; else @@ -28,7 +37,7 @@ function end_form($breaks=0) { if ($breaks) br($breaks); - echo "\n"; + echo "\n"; echo "
\n"; } @@ -47,23 +56,78 @@ function end_table($breaks=0) br($breaks); } +function start_outer_table($extra="", $padding='2', $spacing='0', $br=false) +{ + if ($br) + br(); + start_table($extra, $padding, $spacing); + echo "\n"; // outer table +} + +function table_section($number=1, $width=false) +{ + if ($number > 1) + { + echo "\n"; + $width = ($width ? "width=$width" : ""); + echo "\n"; // outer table + } + echo "\n"; +} + +function end_outer_table($breaks=0, $close_table=true) +{ + if ($close_table) + echo "
\n"; + echo "\n"; + end_table($breaks); +} +// +// outer table spacer +// +function vertical_space($params='') +{ + echo ""; +} + function meta_forward($forward_to, $params="") { global $Ajax; echo "\n"; echo "

" . _("You should automatically be forwarded."); - echo " " . _("If this does not happen") . " " . "" . _("click here") . " " . _("to continue") . ".

\n"; - $Ajax->redirect($forward_to.'?'.$params); + echo " " . _("If this does not happen") . " " . "" . _("click here") . " " . _("to continue") . ".

\n"; + if ($params !='') $params = '?'.$params; + $Ajax->redirect($forward_to.$params); exit; } //----------------------------------------------------------------------------------- +// Find and replace hotkey marker. +// if $clean == true marker is removed and clean label is returned +// (for use in wiki help system), otherwise result is array of label +// with underlined hotkey letter and access property string. +// +function access_string($label, $clean=false) +{ + $access = ''; + $slices = array(); + + if (preg_match('/(.*)&([a-zA-Z0-9])(.*)/', $label, $slices)) + { + $label = $clean ? $slices[1].$slices[2].$slices[3] : + $slices[1].''.$slices[2].''.$slices[3]; + $access = " accesskey='".strtoupper($slices[2])."'"; + } + + $label = str_replace( '&&', '&', $label); + + return $clean ? $label : array($label, $access); +} function hyperlink_back($center=true) { if ($center) echo "
"; - //echo ""._("Back")."\n"; echo "

"._("Back")."

\n"; if ($center) echo "
"; @@ -72,9 +136,13 @@ function hyperlink_back($center=true) function hyperlink_no_params($target, $label, $center=true) { + $id = default_focus(); + $pars = access_string($label); + if ($target == '') + $target = $_SERVER['PHP_SELF']; if ($center) echo "
"; - echo "$label\n"; + echo "$pars[0]\n"; if ($center) echo "
"; } @@ -86,13 +154,64 @@ function hyperlink_no_params_td($target, $label) echo "\n"; } +function viewer_link($label, $url='', $class='', $id='', $icon=null) +{ + global $path_to_root; + + if ($class != '') + $class = " class='$class'"; + + if ($id != '') + $class = " id='$id'"; + + if ($url != "") + { + $pars = access_string($label); + if (user_graphic_links() && $icon) + $pars[0] = set_icon($icon, $pars[0]); + $preview_str = "$pars[0]"; + } + else + $preview_str = $label; + + return $preview_str; +} + +function menu_link($url, $label, $id=null) +{ + + $id = default_focus($id); + $pars = access_string($label); + return "$pars[0]"; +} + +function submenu_option($title, $url, $id=null) +{ + global $path_to_root; + display_note(menu_link($path_to_root . $url, $title, $id), 0, 1); +} + +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, $email=0) +{ + display_note(print_document_link($number, $title, true, $type, false, 'menu_option', $id, $email), 0, 1); +} //----------------------------------------------------------------------------------- function hyperlink_params($target, $label, $params, $center=true) { + $id = default_focus(); + + $pars = access_string($label); + if ($target == '') + $target = $_SERVER['PHP_SELF']; if ($center) echo "
"; - echo "$label\n"; + echo "$pars[0]\n"; if ($center) echo "
"; } @@ -108,9 +227,12 @@ function hyperlink_params_td($target, $label, $params) function hyperlink_params_separate($target, $label, $params, $center=false) { + $id = default_focus(); + + $pars = access_string($label); if ($center) echo "
"; - echo "$label\n"; + echo "$pars[0]\n"; if ($center) echo "
"; } @@ -138,37 +260,18 @@ function alt_table_row_color(&$k) } } -function table_section_title($msg) +function table_section_title($msg, $colspan=2) { - echo "$msg\n"; + echo "$msg\n"; } -function table_header($labels) +function table_header($labels, $params='') { start_row(); foreach ($labels as $label) - labelheader_cell($label); + labelheader_cell($label, $params); end_row(); } - -function edit_link_cell($param, $title=false) -{ - label_cell("" . _("Edit") . "", "nowrap"); -} - -function delete_link_cell($param, $title=false) -{ - label_cell("" . _("Delete") . "", "nowrap"); -} - -function edit_button_cell($name, $value, $title=false) -{ - label_cell("\n"); -} - //----------------------------------------------------------------------------------- function start_row($param="") @@ -192,13 +295,18 @@ function br($num=1) $ajax_divs = array(); -function div_start($id='', $trigger=null) +function div_start($id='', $trigger=null, $non_ajax=false) { global $ajax_divs; - array_push($ajax_divs, array($id, $trigger===null ? $id : $trigger)); - echo "
"; - ob_start(); + if ($non_ajax) { // div for non-ajax elements + array_push($ajax_divs, array($id, null)); + echo "