blob: 75e2ad0255196ace3010bbe9a46e5f7243179020 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
 | <?php
	$guid = $vars['entity_guid'];
	$type = $vars['type'];
	$subtype = $vars['subtype'];
	$full = $vars['full'];
	
?>
<div id="guid-<?php echo $guid; ?>">
	<span onClick="showhide('guid-<?php echo $guid; ?>-full')">
		<table width="100%">
			<tr>
				<td width="50"><b><?php echo $guid; ?></b></td>
				<td><?php echo "$type / $subtype"; ?></td>
				
			</tr>
		</table>
	</span>
	<div id="guid-<?php echo $guid; ?>-full" style="display:none">
		<?php echo $full; ?>
	</div>
</div>
 |