X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=inventory%2Fmanage%2Fitems.php;h=2cc9e47e1e4394435e8da85f4b85a3b157b78e64;hb=5dc5289c7042dfcf44dfdcdc9321eac86ffd32c6;hp=ac04293321b4b714c559cc374521a942a9c7ead4;hpb=ebc600101ceab69c06eac4b1bd4d1782af45de05;p=fa-stable.git diff --git a/inventory/manage/items.php b/inventory/manage/items.php index ac042933..2cc9e47e 100644 --- a/inventory/manage/items.php +++ b/inventory/manage/items.php @@ -12,8 +12,13 @@ $page_security = 'SA_ITEM'; $path_to_root = "../.."; include($path_to_root . "/includes/session.inc"); - -page(_($help_context = "Items"), @$_REQUEST['popup']); +$js = ""; +if ($use_popup_windows) + $js .= get_js_open_window(900, 500); +if ($use_date_picker) + $js .= get_js_date_picker(); + +page(_($help_context = "Items"), @$_REQUEST['popup'], false, "", $js); include_once($path_to_root . "/includes/date_functions.inc"); include_once($path_to_root . "/includes/ui.inc"); @@ -27,26 +32,22 @@ $new_item = get_post('stock_id')=='' || get_post('cancel') || get_post('clone'); if (isset($_GET['stock_id'])) { - $_POST['stock_id'] = $stock_id = $_GET['stock_id']; -} -elseif (isset($_POST['stock_id'])) -{ - $stock_id = $_POST['stock_id']; + $_POST['stock_id'] = $_GET['stock_id']; } +$stock_id = get_post('stock_id'); if (list_updated('stock_id')) { - $_POST['NewStockID'] = get_post('stock_id'); + $_POST['NewStockID'] = $stock_id = get_post('stock_id'); clear_data(); $Ajax->activate('details'); $Ajax->activate('controls'); } if (get_post('cancel')) { - $_POST['NewStockID'] = $_POST['stock_id'] = ''; + $_POST['NewStockID'] = $stock_id = $_POST['stock_id'] = ''; clear_data(); set_focus('stock_id'); $Ajax->activate('_page_body'); } - if (list_updated('category_id') || list_updated('mb_flag')) { $Ajax->activate('details'); } @@ -56,17 +57,27 @@ if (isset($_FILES['pic']) && $_FILES['pic']['name'] != '') $stock_id = $_POST['NewStockID']; $result = $_FILES['pic']['error']; $upload_file = 'Yes'; //Assume all is well to start off with - $filename = $comp_path . "/$user_comp/images"; + $filename = company_path().'/images'; if (!file_exists($filename)) { mkdir($filename); } $filename .= "/".item_img_name($stock_id).".jpg"; - //But check for the worst - if (strtoupper(substr(trim($_FILES['pic']['name']), strlen($_FILES['pic']['name']) - 3)) != 'JPG') + //But check for the worst + if ((list($width, $height, $type, $attr) = getimagesize($_FILES['pic']['tmp_name'])) !== false) + $imagetype = $type; + else + $imagetype = false; + //$imagetype = exif_imagetype($_FILES['pic']['tmp_name']); + if ($imagetype != IMAGETYPE_GIF && $imagetype != IMAGETYPE_JPEG && $imagetype != IMAGETYPE_PNG) + { //File type Check + display_warning( _('Only graphics files can be uploaded')); + $upload_file ='No'; + } + elseif (!in_array(strtoupper(substr(trim($_FILES['pic']['name']), strlen($_FILES['pic']['name']) - 3)), array('JPG','PNG','GIF'))) { - display_warning(_('Only jpg files are supported - a file extension of .jpg is expected')); + display_warning(_('Only graphics files are supported - a file extension of .jpg, .png or .gif is expected')); $upload_file ='No'; } elseif ( $_FILES['pic']['size'] > ($max_image_size * 1024)) @@ -74,11 +85,6 @@ if (isset($_FILES['pic']) && $_FILES['pic']['name'] != '') display_warning(_('The file size is over the maximum allowed. The maximum size allowed in KB is') . ' ' . $max_image_size); $upload_file ='No'; } - elseif ( $_FILES['pic']['type'] == "text/plain" ) - { //File type Check - display_warning( _('Only graphics files can be uploaded')); - $upload_file ='No'; - } elseif (file_exists($filename)) { $result = unlink($filename); @@ -137,7 +143,7 @@ if (isset($_POST['addupdate'])) } elseif (strstr($_POST['NewStockID'], " ") || strstr($_POST['NewStockID'],"'") || strstr($_POST['NewStockID'], "+") || strstr($_POST['NewStockID'], "\"") || - strstr($_POST['NewStockID'], "&")) + strstr($_POST['NewStockID'], "&") || strstr($_POST['NewStockID'], "\t")) { $input_error = 1; display_error( _('The item code cannot contain any of the following characters - & + OR a space OR quotes')); @@ -155,7 +161,7 @@ if (isset($_POST['addupdate'])) { if (check_value('del_image')) { - $filename = $comp_path . "/$user_comp/images/".item_img_name($_POST['NewStockID']).".jpg"; + $filename = company_path().'/images/'.item_img_name($_POST['NewStockID']).".jpg"; if (file_exists($filename)) unlink($filename); } @@ -169,7 +175,7 @@ if (isset($_POST['addupdate'])) $_POST['inventory_account'], $_POST['cogs_account'], $_POST['adjustment_account'], $_POST['assembly_account'], $_POST['dimension_id'], $_POST['dimension2_id'], - check_value('no_sale')); + check_value('no_sale'), check_value('editable')); update_record_status($_POST['NewStockID'], $_POST['inactive'], 'stock_master', 'stock_id'); update_record_status($_POST['NewStockID'], $_POST['inactive'], @@ -187,12 +193,12 @@ if (isset($_POST['addupdate'])) $_POST['inventory_account'], $_POST['cogs_account'], $_POST['adjustment_account'], $_POST['assembly_account'], $_POST['dimension_id'], $_POST['dimension2_id'], - check_value('no_sale')); + check_value('no_sale'), check_value('editable')); display_notification(_("A new item has been added.")); $_POST['stock_id'] = $_POST['NewStockID'] = $_POST['description'] = $_POST['long_description'] = ''; - $_POST['no_sale'] = 0; + $_POST['no_sale'] = $_POST['editable'] = 0; set_focus('NewStockID'); } $Ajax->activate('_page_body'); @@ -201,6 +207,7 @@ if (isset($_POST['addupdate'])) if (get_post('clone')) { unset($_POST['stock_id']); + $stock_id = ''; unset($_POST['inactive']); set_focus('NewStockID'); $Ajax->activate('_page_body'); @@ -210,50 +217,8 @@ if (get_post('clone')) { function check_usage($stock_id, $dispmsg=true) { - $sqls= array( - "SELECT COUNT(*) FROM " - .TB_PREF."stock_moves WHERE stock_id=".db_escape($stock_id) => - _('Cannot delete this item because there are stock movements that refer to this item.'), - "SELECT COUNT(*) FROM " - .TB_PREF."bom WHERE component=".db_escape($stock_id)=> - _('Cannot delete this item record because there are bills of material that require this part as a component.'), - "SELECT COUNT(*) FROM " - .TB_PREF."sales_order_details WHERE stk_code=".db_escape($stock_id) => - _('Cannot delete this item because there are existing purchase order items for it.'), - "SELECT COUNT(*) FROM " - .TB_PREF."purch_order_details WHERE item_code=".db_escape($stock_id)=> - _('Cannot delete this item because there are existing purchase order items for it.') - ); - - $msg = ''; - - foreach($sqls as $sql=>$err) { - $result = db_query($sql, "could not query stock usage"); - $myrow = db_fetch_row($result); - if ($myrow[0] > 0) - { - $msg = $err; break; - } - } + $msg = item_in_foreign_codes($stock_id); - if ($msg == '') { - - $kits = get_where_used($stock_id); - $num_kits = db_num_rows($kits); - if ($num_kits) { - $msg = _("This item cannot be deleted because some code aliases - or foreign codes was entered for it, or there are kits defined - using this item as component") - .':
'; - - while($num_kits--) { - $kit = db_fetch($kits); - $msg .= "'".$kit[0]."'"; - if ($num_kits) $msg .= ','; - } - - } - } if ($msg != '') { if($dispmsg) display_error($msg); return false; @@ -270,7 +235,7 @@ if (isset($_POST['delete']) && strlen($_POST['delete']) > 1) $stock_id = $_POST['NewStockID']; delete_item($stock_id); - $filename = $comp_path . "/$user_comp/images/".item_img_name($stock_id).".jpg"; + $filename = company_path().'/images/'.item_img_name($stock_id).".jpg"; if (file_exists($filename)) unlink($filename); display_notification(_("Selected item has been deleted.")); @@ -281,190 +246,276 @@ if (isset($_POST['delete']) && strlen($_POST['delete']) > 1) $Ajax->activate('_page_body'); } } -//-------------------------------------------------------------------------------------------- -start_form(true); - -if (db_has_stock_items()) +function item_settings(&$stock_id) { - start_table("class='tablestyle_noborder'"); - start_row(); - stock_items_list_cells(_("Select an item:"), 'stock_id', null, - _('New item'), true, check_value('show_inactive')); - $new_item = get_post('stock_id')==''; - check_cells(_("Show inactive:"), 'show_inactive', null, true); - end_row(); - end_table(); + global $SysPrefs, $path_to_root, $new_item, $pic_height; - if (get_post('_show_inactive_update')) { - $Ajax->activate('stock_id'); - set_focus('stock_id'); - } -} + start_outer_table(TABLESTYLE2); -div_start('details'); -start_outer_table($table_style2, 5); + table_section(1); -table_section(1); + table_section_title(_("Item")); -table_section_title(_("Item")); + //------------------------------------------------------------------------------------ + if ($new_item) + { + text_row(_("Item Code:"), 'NewStockID', null, 21, 20); -//------------------------------------------------------------------------------------ -if ($new_item) -{ - text_row(_("Item Code:"), 'NewStockID', null, 21, 20); - - $_POST['inactive'] = 0; -} -else -{ // Must be modifying an existing item - $_POST['NewStockID'] = $_POST['stock_id']; - - $myrow = get_item($_POST['NewStockID']); - - $_POST['long_description'] = $myrow["long_description"]; - $_POST['description'] = $myrow["description"]; - $_POST['category_id'] = $myrow["category_id"]; - $_POST['tax_type_id'] = $myrow["tax_type_id"]; - $_POST['units'] = $myrow["units"]; - $_POST['mb_flag'] = $myrow["mb_flag"]; - - $_POST['sales_account'] = $myrow['sales_account']; - $_POST['inventory_account'] = $myrow['inventory_account']; - $_POST['cogs_account'] = $myrow['cogs_account']; - $_POST['adjustment_account'] = $myrow['adjustment_account']; - $_POST['assembly_account'] = $myrow['assembly_account']; - $_POST['dimension_id'] = $myrow['dimension_id']; - $_POST['dimension2_id'] = $myrow['dimension2_id']; - $_POST['no_sale'] = $myrow['no_sale']; - $_POST['del_image'] = 0; - $_POST['inactive'] = $myrow["inactive"]; + $_POST['inactive'] = 0; + } + else + { // Must be modifying an existing item + if (get_post('NewStockID') != get_post('stock_id') || get_post('addupdate')) { // first item display + + $_POST['NewStockID'] = $_POST['stock_id']; + + $myrow = get_item($_POST['NewStockID']); + + $_POST['long_description'] = $myrow["long_description"]; + $_POST['description'] = $myrow["description"]; + $_POST['category_id'] = $myrow["category_id"]; + $_POST['tax_type_id'] = $myrow["tax_type_id"]; + $_POST['units'] = $myrow["units"]; + $_POST['mb_flag'] = $myrow["mb_flag"]; + + $_POST['sales_account'] = $myrow['sales_account']; + $_POST['inventory_account'] = $myrow['inventory_account']; + $_POST['cogs_account'] = $myrow['cogs_account']; + $_POST['adjustment_account'] = $myrow['adjustment_account']; + $_POST['assembly_account'] = $myrow['assembly_account']; + $_POST['dimension_id'] = $myrow['dimension_id']; + $_POST['dimension2_id'] = $myrow['dimension2_id']; + $_POST['no_sale'] = $myrow['no_sale']; + $_POST['del_image'] = 0; + $_POST['inactive'] = $myrow["inactive"]; + $_POST['editable'] = $myrow["editable"]; + } label_row(_("Item Code:"),$_POST['NewStockID']); hidden('NewStockID', $_POST['NewStockID']); set_focus('description'); -} + } -text_row(_("Name:"), 'description', null, 52, 50); + text_row(_("Name:"), 'description', null, 52, 200); -textarea_row(_('Description:'), 'long_description', null, 42, 3); + textarea_row(_('Description:'), 'long_description', null, 42, 3); -stock_categories_list_row(_("Category:"), 'category_id', null, false, $new_item); + stock_categories_list_row(_("Category:"), 'category_id', null, false, $new_item); -if ($new_item && (list_updated('category_id') || !isset($_POST['units']))) { + if ($new_item && (list_updated('category_id') || !isset($_POST['units']))) { - $category_record = get_item_category($_POST['category_id']); + $category_record = get_item_category($_POST['category_id']); - $_POST['tax_type_id'] = $category_record["dflt_tax_type"]; - $_POST['units'] = $category_record["dflt_units"]; - $_POST['mb_flag'] = $category_record["dflt_mb_flag"]; - $_POST['inventory_account'] = $category_record["dflt_inventory_act"]; - $_POST['cogs_account'] = $category_record["dflt_cogs_act"]; - $_POST['sales_account'] = $category_record["dflt_sales_act"]; - $_POST['adjustment_account'] = $category_record["dflt_adjustment_act"]; - $_POST['assembly_account'] = $category_record["dflt_assembly_act"]; - $_POST['dimension_id'] = $category_record["dflt_dim1"]; - $_POST['dimension2_id'] = $category_record["dflt_dim2"]; - $_POST['no_sale'] = $category_record["dflt_no_sale"]; -} -$fresh_item = !isset($_POST['NewStockID']) || $new_item - || check_usage($_POST['stock_id'],false); + $_POST['tax_type_id'] = $category_record["dflt_tax_type"]; + $_POST['units'] = $category_record["dflt_units"]; + $_POST['mb_flag'] = $category_record["dflt_mb_flag"]; + $_POST['inventory_account'] = $category_record["dflt_inventory_act"]; + $_POST['cogs_account'] = $category_record["dflt_cogs_act"]; + $_POST['sales_account'] = $category_record["dflt_sales_act"]; + $_POST['adjustment_account'] = $category_record["dflt_adjustment_act"]; + $_POST['assembly_account'] = $category_record["dflt_assembly_act"]; + $_POST['dimension_id'] = $category_record["dflt_dim1"]; + $_POST['dimension2_id'] = $category_record["dflt_dim2"]; + $_POST['no_sale'] = $category_record["dflt_no_sale"]; + $_POST['editable'] = 0; -item_tax_types_list_row(_("Item Tax Type:"), 'tax_type_id', null); + } + $fresh_item = !isset($_POST['NewStockID']) || $new_item + || check_usage($_POST['stock_id'],false); -stock_item_types_list_row(_("Item Type:"), 'mb_flag', null, $fresh_item); + item_tax_types_list_row(_("Item Tax Type:"), 'tax_type_id', null); -stock_units_list_row(_('Units of Measure:'), 'units', null, $fresh_item); + stock_item_types_list_row(_("Item Type:"), 'mb_flag', null, $fresh_item); -$dim = get_company_pref('use_dimension'); -if ($dim >= 1) -{ - table_section_title(_("Dimensions")); + stock_units_list_row(_('Units of Measure:'), 'units', null, $fresh_item); - dimensions_list_row(_("Dimension")." 1", 'dimension_id', null, true, " ", false, 1); - if ($dim > 1) - dimensions_list_row(_("Dimension")." 2", 'dimension2_id', null, true, " ", false, 2); -} -if ($dim < 1) - hidden('dimension_id', 0); -if ($dim < 2) - hidden('dimension2_id', 0); + check_row(_("Editable description:"), 'editable'); -table_section(2); + check_row(_("Exclude from sales:"), 'no_sale'); -table_section_title(_("GL Accounts")); + table_section(2); -gl_all_accounts_list_row(_("Sales Account:"), 'sales_account', $_POST['sales_account']); + $dim = get_company_pref('use_dimension'); + if ($dim >= 1) + { + table_section_title(_("Dimensions")); -if (!is_service($_POST['mb_flag'])) -{ - gl_all_accounts_list_row(_("Inventory Account:"), 'inventory_account', $_POST['inventory_account']); - gl_all_accounts_list_row(_("C.O.G.S. Account:"), 'cogs_account', $_POST['cogs_account']); - gl_all_accounts_list_row(_("Inventory Adjustments Account:"), 'adjustment_account', $_POST['adjustment_account']); -} -else -{ - gl_all_accounts_list_row(_("C.O.G.S. Account:"), 'cogs_account', $_POST['cogs_account']); - hidden('inventory_account', $_POST['inventory_account']); - hidden('adjustment_account', $_POST['adjustment_account']); -} + dimensions_list_row(_("Dimension")." 1", 'dimension_id', null, true, " ", false, 1); + if ($dim > 1) + dimensions_list_row(_("Dimension")." 2", 'dimension2_id', null, true, " ", false, 2); + } + if ($dim < 1) + hidden('dimension_id', 0); + if ($dim < 2) + hidden('dimension2_id', 0); + table_section_title(_("GL Accounts")); -if (is_manufactured($_POST['mb_flag'])) - gl_all_accounts_list_row(_("Item Assembly Costs Account:"), 'assembly_account', $_POST['assembly_account']); -else - hidden('assembly_account', $_POST['assembly_account']); + gl_all_accounts_list_row(_("Sales Account:"), 'sales_account', $_POST['sales_account']); -table_section_title(_("Other")); + if (!is_service($_POST['mb_flag'])) + { + gl_all_accounts_list_row(_("Inventory Account:"), 'inventory_account', $_POST['inventory_account']); + gl_all_accounts_list_row(_("C.O.G.S. Account:"), 'cogs_account', $_POST['cogs_account']); + gl_all_accounts_list_row(_("Inventory Adjustments Account:"), 'adjustment_account', $_POST['adjustment_account']); + } + else + { + gl_all_accounts_list_row(_("C.O.G.S. Account:"), 'cogs_account', $_POST['cogs_account']); + hidden('inventory_account', $_POST['inventory_account']); + hidden('adjustment_account', $_POST['adjustment_account']); + } -// Add image upload for New Item - by Joe -label_row(_("Image File (.jpg)") . ":", ""); -// Add Image upload for New Item - by Joe -$stock_img_link = ""; -$check_remove_image = false; -if (isset($_POST['NewStockID']) && file_exists("$comp_path/$user_comp/images/" - .item_img_name($_POST['NewStockID']).".jpg")) -{ - // 31/08/08 - rand() call is necessary here to avoid caching problems. Thanks to Peter D. - $stock_img_link .= "[".$_POST["; - $check_remove_image = true; -} -else -{ - $stock_img_link .= _("No image"); + + if (is_manufactured($_POST['mb_flag'])) + gl_all_accounts_list_row(_("Item Assembly Costs Account:"), 'assembly_account', $_POST['assembly_account']); + else + hidden('assembly_account', $_POST['assembly_account']); + + table_section_title(_("Other")); + + // Add image upload for New Item - by Joe + file_row(_("Image File (.jpg)") . ":", 'pic', 'pic'); + // Add Image upload for New Item - by Joe + $stock_img_link = ""; + $check_remove_image = false; + if (isset($_POST['NewStockID']) && file_exists(company_path().'/images/' + .item_img_name($_POST['NewStockID']).".jpg")) + { + // 31/08/08 - rand() call is necessary here to avoid caching problems. Thanks to Peter D. + $stock_img_link .= "[".$_POST["; + $check_remove_image = true; + } + else + { + $stock_img_link .= _("No image"); + } + + label_row(" ", $stock_img_link); + if ($check_remove_image) + check_row(_("Delete Image:"), 'del_image'); + + record_status_list_row(_("Item status:"), 'inactive'); + end_outer_table(1); + + div_start('controls'); + if (!isset($_POST['NewStockID']) || $new_item) + { + submit_center('addupdate', _("Insert New Item"), true, '', 'default'); + } + else + { + submit_center_first('addupdate', _("Update Item"), '', + @$_REQUEST['popup'] ? true : 'default'); + submit_return('select', get_post('stock_id'), + _("Select this items and return to document entry."), 'default'); + submit('clone', _("Clone This Item"), true, '', true); + submit('delete', _("Delete This Item"), true, '', true); + submit_center_last('cancel', _("Cancel"), _("Cancel Edition"), 'cancel'); + } + + div_end(); } -label_row(" ", $stock_img_link); -if ($check_remove_image) - check_row(_("Delete Image:"), 'del_image'); - -check_row(_("Exclude from sales:"), 'no_sale'); +//-------------------------------------------------------------------------------------------- -record_status_list_row(_("Item status:"), 'inactive'); -end_outer_table(1); -div_end(); -div_start('controls'); -if (!isset($_POST['NewStockID']) || $new_item) +start_form(true); + +if (db_has_stock_items()) { - submit_center('addupdate', _("Insert New Item"), true, '', 'default'); -} -else + start_table(TABLESTYLE_NOBORDER); + start_row(); + stock_items_list_cells(_("Select an item:"), 'stock_id', null, + _('New item'), true, check_value('show_inactive')); + $new_item = get_post('stock_id')==''; + check_cells(_("Show inactive:"), 'show_inactive', null, true); + end_row(); + end_table(); + + if (get_post('_show_inactive_update')) { + $Ajax->activate('stock_id'); + set_focus('stock_id'); + } +} +else { - submit_center_first('addupdate', _("Update Item"), '', - @$_REQUEST['popup'] ? true : 'default'); - submit_return('select', get_post('stock_id'), - _("Select this items and return to document entry."), 'default'); - submit('clone', _("Clone This Item"), true, '', true); - submit('delete', _("Delete This Item"), true, '', true); - submit_center_last('cancel', _("Cancel"), _("Cancel Edition"), 'cancel'); + hidden('stock_id', get_post('stock_id')); } +div_start('details'); + +$stock_id = get_post('stock_id'); +if (!$stock_id) + unset($_POST['_tabs_sel']); // force settings tab for new customer + +tabbed_content_start('tabs', array( + 'settings' => array(_('&General settings'), $stock_id), + 'sales_pricing' => array(_('S&ales Pricing'), + ($_SESSION["wa_current_user"]->can_access_page('SA_SALESPRICE') ? $stock_id : null)), + 'purchase_pricing' => array(_('&Purchasing Pricing'), + ($_SESSION["wa_current_user"]->can_access_page('SA_PURCHASEPRICING') ? $stock_id : null)), + 'standard_cost' => array(_('Standard &Costs'), + ($_SESSION["wa_current_user"]->can_access_page('SA_STANDARDCOST') ? $stock_id : null)), + 'reorder_level' => array(_('&Reorder Levels'), (is_inventory_item($stock_id) && + $_SESSION["wa_current_user"]->can_access_page('SA_REORDER') ? $stock_id : null)), + 'movement' => array(_('&Transactions'), + ($_SESSION["wa_current_user"]->can_access_page('SA_ITEMSTRANSVIEW') ? $stock_id : null)), + 'status' => array(_('&Status'), + ($_SESSION["wa_current_user"]->can_access_page('SA_ITEMSSTATVIEW') ? $stock_id : null)), + )); + + switch (get_post('_tabs_sel')) { + default: + case 'settings': + item_settings($stock_id); + break; + case 'sales_pricing': + $_GET['stock_id'] = $stock_id; + $_GET['popup'] = 1; + include_once($path_to_root."/inventory/prices.php"); + break; + case 'purchase_pricing': + $_GET['stock_id'] = $stock_id; + $_GET['popup'] = 1; + include_once($path_to_root."/inventory/purchasing_data.php"); + break; + case 'standard_cost': + $_GET['stock_id'] = $stock_id; + $_GET['popup'] = 1; + include_once($path_to_root."/inventory/cost_update.php"); + break; + case 'reorder_level': + if (!is_inventory_item($stock_id)) + { + break; + } + $_GET['stock_id'] = $stock_id; + $_GET['popup'] = 1; + include_once($path_to_root."/inventory/reorder_level.php"); + break; + case 'movement': + $_GET['stock_id'] = $stock_id; + $_GET['popup'] = 1; + include_once($path_to_root."/inventory/inquiry/stock_movements.php"); + break; + case 'status': + $_GET['stock_id'] = $stock_id; + $_GET['popup'] = 1; + include_once($path_to_root."/inventory/inquiry/stock_status.php"); + break; + }; +br(); +tabbed_content_end(); + div_end(); + + hidden('popup', @$_REQUEST['popup']); end_form(); //------------------------------------------------------------------------------------ -end_page(); +end_page(@$_REQUEST['popup']); ?>