-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfooter.inc
66 lines (63 loc) · 2.22 KB
/
footer.inc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<!-- Example row of columns -->
<div class="row">
<div class="col-md-4">
<h2>My Lists</h2>
<?php
// Show all of the customer's lists here in a block.
$barcode = 20080104020258;
if (isset($_SESSION['barcode'])) {
$barcode = $_SESSION['barcode'];
}
if (is_numeric($barcode)) {
$lists = PolarisAPI::PatronAccountGetTitleLists($barcode); // Find the patron's list of lists.
if (!empty($lists->PatronAccountTitleListsRows)) {
print '<ul>';
foreach ($lists->PatronAccountTitleListsRows as $list) {
//$list_items = PolarisAPI::PatronTitleListGetTitles($barcode, $list->RecordStoreID); // Find the items on each list.
print '<li><a href="view-list.php?RecordStoreID=' . $list->RecordStoreID . '">' . $list->RecordStoreName . '</a></li>';
}
print '</ul>';
}
}
?>
</div>
<div class="col-md-4">
<h2>Create a New List</h2>
<form action="add-list.php" method="post">
<div class="form-group">
<input type="text" class="form-control" id="list_name" name="list_name" placeholder="Your list name">
</div>
<div class="form-group">
<button type="submit" class="btn btn-default">Create »</button>
</div>
</form>
</div>
<div class="col-md-4">
<h2>Contributors</h2>
<p><b>Mark W. Jarrell</b><br>
Online Applications Developer<br>
Richland Library</p>
<p><b>Brian LaRue</b><br>
Software Support Administrator<br>
Salt Lake City Public Library</p>
</div>
</div>
<hr>
<footer>
<div class="col-xs-12 col-md-2 vcenter">
© IUG 2016.<br>
A special hackathon project in cooperation with:
</div>
<div class="col-xs-12 col-md-2 col-md-offset-1 vcenter text-center">
<img class="logo" src="images/iii-logo.png" alt="Innovative Interfaces logo">
</div>
<div class="col-xs-12 col-md-2 vcenter text-center">
<img class="logo" src="images/polaris-logo.png" alt="Polaris logo">
</div>
<div class="col-xs-12 col-md-2 vcenter text-center">
<img class="logo" src="images/logo-print.png" alt="Richland Library logo">
</div>
<div class="col-xs-12 col-md-2 vcenter text-center">
<img class="logo" src="images/slc-logo.png" alt="Salt Lake City logo">
</div>
</footer>