-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhome2.php
More file actions
executable file
·102 lines (101 loc) · 4.06 KB
/
Copy pathhome2.php
File metadata and controls
executable file
·102 lines (101 loc) · 4.06 KB
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
<?php
/****************************************************************************
* Middlebury Music United *
* This code is proprietary and property of William S. Potter. *
* It has been licensed for use to Middlebury College in this installation. *
* Use of this code requires consent from William S. Potter *
* will@middpoint.com *
***************************************************************************/
if(isset($_GET['page'])) $page = $_GET['page'];
else $page ="";
?>
<div id="container">
<div id="header">
<div id="logins">
<?php if(isset($_COOKIE['mu_user'])) {
echo '<a href="logout.php">Log Out</a>';
} else {
echo '<a href="?page=login">Log In</a>';
echo '<a href="?page=register">Register</a>';
}?>
</div>
<div id="inner-header">
<div id="nav-bar">
<?php if(isset($_COOKIE['mu_id'])) { ?>
<a href="?page=practice" class="<?php if($page=="practice") echo 'selected '; ?>">Practice</a>
<a href="?page=record" class="<?php if($page=="record") echo 'selected '; ?>">Record</a>
<?php } ?>
<a href="?page=calendar" class="<?php if($page=="calendar") echo 'selected '; ?>">Calendar</a>
<a href="?page=venues" class="<?php if($page=="venues") echo 'selected '; ?>">Venues</a>
<a href="?page=bands" class="<?php if($page=="bands") echo 'selected '; ?>">Bands/DJs</a>
<a href="?page=musicians" class="<?php if($page=="musicians") echo 'selected '; ?>">Musicians</a>
<?php if(isset($_COOKIE['mu_id'])) { ?>
<a href="?page=profile&id=<?php echo $_COOKIE['mu_id']; ?>" class="<?php if($page=="profile") echo 'selected '; ?>">Profile</a>
<a href="/" class="<?php if($page=="") echo 'selected '; ?>">Home</a>
<?php } ?>
</div><!-- Nav-Bar -->
<a id="h-logo" href="/"></a><!-- H-Logo -->
</div><!-- Inner Header -->
</div><!-- Header -->
<div id="main">
<div id="sidebar">
<div style="padding:10px; 0px; font-weight:bold;">
<script src="http://widgets.twimg.com/j/2/widget.js"></script>
<script>
new TWTR.Widget({
version: 2,
type: 'profile',
rpp: 4,
interval: 30000,
width: 'auto',
height: 300,
theme: {
shell: {
background: '#336896',
color: '#ffffff'
},
tweets: {
background: '#eeeeee',
color: '#333333',
links: '#336896'
}
},
features: {
scrollbar: true,
loop: false,
live: true,
behavior: 'all'
}
}).render().setUser('middmusic').start();
</script>
</div>
</div><!-- Sidebar -->
<div id="main-content">
<div id="content" class="home-content">
<div class="large-section-title">Welcome!</div>
<p>Middlebury Music United is an organizations for student musicians at Middlebury College. This website provides profiles for all student musicians, bands and Djs, a calendar of student shows on campus and tools for musicians to network and book time in our practice space and recording studio.</p>
<p>If you’re a musician at midd, please <a href="?page=register">sign up</a>.</p>
<p>Everyone else, feel free to browse performers or see the <a href="?page=calendar">full events calendar</a>.</p>
<p>Thanks for stopping by. Please let us know if you have any questions, comments or ideas.</p>
<div class="large-section-title">Upcoming Events</div>
<?php
$evts = getUpcomingEvents();
if(!empty($evts)) {
foreach($evts as $e) {
$ev = new Event($e['id']);
$v = new Venue($ev->venueid);
//print_r($ev);
echo '<p><a href="?page=profile&event='.$ev->id.'" style="font-weight:bold;">'.$ev->name.'</a> at '.$v->name.', '.date('F j, Y h:m a',$ev->starttime).'. '.$ev->description.'</p>';
}
} else {
echo '<p>No upcoming events!</p>';
}
?>
</div>
</div><!-- Main Content -->
<div class="clear"></div><!-- clear -->
</div><!-- Main -->
<div id="footer">
Middlebury Music United. Copyright © 2011 <a href="//twitter.com/willpots" target="_blank" title="@willpots">Will Potter</a>.
</div>
</div><!-- Container -->