Subversion Repositories cheapmusic

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
103 - 1
<?php
2
echo showSectionHead($spTextPanel["Alerts"]);
3
 
4
$alertUrl = "";
5
if (!empty($listInfo['alert_url'])) {
6
    $alertUrl = stristr($listInfo['alert_url'], 'http') ? $listInfo['alert_url'] : Spider::addTrailingSlash(SP_WEBPATH) . $listInfo['alert_url'];
7
}
8
?>
9
<table id="cust_tab">
10
	<tr class="form_head">
11
		<th width='30%'><?php echo $spTextPanel["Alerts"]?></th>
12
		<th>&nbsp;</th>
13
	</tr>
14
	<tr class="form_data table-<?php echo $listInfo['alert_type']?>">
15
		<td><?php echo $spText['label']['Subject']?>:</td>
16
		<td><?php echo $listInfo['alert_subject']?>
17
	</tr>
18
	<tr class="form_data table-<?php echo $listInfo['alert_type']?>">
19
		<td><?php echo $spText['common']['Details']?>:</td>
20
		<td><?php echo $listInfo['alert_message']?>
21
	</tr>
22
	<tr class="form_data">
23
		<td><?php echo $spText['common']['Url']?>:</td>
24
		<td><a target="_blank" href="<?php echo $alertUrl?>"><?php echo $alertUrl?></a></td>
25
	</tr>
26
	<tr class="form_data">
27
		<td><?php echo $spText['common']['Category']?>:</td>
28
		<td><?php echo $alertCategory[$listInfo['alert_category']]?>
29
	</tr>
30
	<tr class="form_data">
31
		<td><?php echo $spText['label']['Updated']?>:</td>
32
		<td><?php echo $listInfo['alert_time']?>
33
	</tr>
34
</table>