Exemplo n.º 1
0
<div id='export_content'>
<link rel='stylesheet' type='text/css' href='css/table_print.css' />
<?php 
# Site name and location
echo "<b>";
echo LangUtil::$generalTerms['FACILITY'] . ": " . $lab_config->getSiteName();
echo "<br>";
echo LangUtil::$generalTerms['G_DATE'] . ": " . DateLib::mysqlToString(date("Y-m-d"));
echo "</b>";
echo "<br><br>";
echo "<hr>";
# Summary
echo "<b>" . $LANG_ARRAY['lab_config_home']['MENU_CUSTOM'] . "</b>";
echo "<br><br>";
$page_elems->getLabConfigInfo($lab_config->id);
echo "<hr>";
echo "<br><br>";
/*
# Specimen types
echo "<b>".LangUtil::$generalTerms['SPECIMEN_TYPES']."</b>";
echo "<br><br>";
$specimen_id_list = get_lab_config_specimen_types($lab_config->id);
var_dump($specimen_id_list);
foreach($specimen_id_list as $specimen_id)
{
	$specimen = Specimen::getById($specimen_id);
	//echo $specimen->getName();
	echo "<br>";
}
echo "<hr>";