*/
include("session.php");
require_once('class_functions.php');
require_once('class_db.php');
require_once('class_print_list.php');
if(file_exists($_SESSION['config']['lang'].'.php'))
{
include($_SESSION['config']['lang'].'.php');
}
else
{
$_SESSION['error'] = "Language file missing...
";
}
$show = array();
$size = array();
$limit = array();
if ($_SESSION['config']['corporate'] == "true" && $_SESSION['config']['replace_subject_by_society'] == "true")
{
array_push($show, "N GED", _SHIPPER, _SOCIETY_P, _DATE_START_P, _REG_DATE_P, _PROPRITY_P, _STATUS);
array_push($size, 15, 50, 50, 25, 25, 10, 10);
array_push($limit, 6, 35, 35, 12, 12, 12, 7);
}
else
{
array_push($show, "N GED", _PROPRITY_P, _DATE_START_P, _OBJECT, _SHIPPER, _LIMIT_DATE_P, _STATUS);
array_push($size, 15, 10, 25, 50, 50, 25, 10);
array_push($limit, 6, 12, 12, 35, 35, 12, 7);
}
$print = new print_list();
$print->print_result_list($_SESSION['print_list']['current_request'], $show, $size, $limit, _VALID_PROCESS_PRINT." : ".$_SESSION['current_basket']['label']);
?>