11 'Participation Confirmation',
16 <!-- Script to view/hide -->
17 <script type=
"text/javascript">
19 function toggle_visibility(
id) {
20 var e = document.getElementById(
id);
21 if(e.style.display ==
'block')
22 e.style.display =
'none';
24 e.style.display =
'block';
34 $conf = mysql_query(
"SELECT name FROM conference WHERE conferenceid=$co");
37 while($row = mysql_fetch_array(
$conf))
49 <div <?php echo $this->any_req(); ?> >
50 <h1> Participation Requests For <?php echo $confname; ?></h1><br>
52 <div <?php echo $this->no_req(); ?> >
53 <h3> There Are No Participation Requests For <?php echo $confname; ?></h3><br>
57 <div <?php echo $this->author_req(); ?> >
58 <h1> Authoring Requests </h1>
61 <a href=
"#" <?php echo $this->author_pending(); ?> style=
"text-decoration: none" onclick=
"toggle_visibility('pending'); return false;">
62 <h3>Pending Requests</h3>
64 <div
id=
"pending" style=
"display:none";>
66 $this->view_pending_authoring_requests();
70 <a href=
"#" <?php echo $this->author_accepted(); ?> style=
"text-decoration: none" onclick=
"toggle_visibility('accepted'); return false;">
71 <h3>Accepted Requests</h3>
73 <div
id=
"accepted" style=
"display:none";>
75 $this->view_accepted_authoring_requests();
79 <a href=
"#" <?php echo $this->author_rejected(); ?> style=
"text-decoration: none" onclick=
"toggle_visibility('rejected'); return false;">
80 <h3>Rejected Requests</h3>
82 <div
id=
"rejected" style=
"display:none";>
84 $this->view_rejected_authoring_requests();
88 <div <?php echo $this->author_req(); ?> >
93 <div <?php echo $this->referee_req(); ?> >
94 <h1> Refereeing Requests </h1>
97 <a href=
"#" <?php echo $this->referee_pending(); ?> style=
"text-decoration: none" onclick=
"toggle_visibility('pending_ref'); return false;">
98 <h3>Pending Requests</h3>
100 <div
id=
"pending_ref" style=
"display:none";>
102 $this->view_pending_refereeing_requests();
106 <a href=
"#" <?php echo $this->referee_accepted(); ?> style=
"text-decoration: none" onclick=
"toggle_visibility('accepted_ref'); return false;">
107 <h3>Accepted Requests</h3>
109 <div
id=
"accepted_ref" style=
"display:none";>
111 $this->view_accepted_refereeing_requests();
115 <a href=
"#" <?php echo $this->referee_rejected(); ?> style=
"text-decoration: none" onclick=
"toggle_visibility('rejected_ref'); return false;">
116 <h3>Rejected Requests</h3>
118 <div
id=
"rejected_ref" style=
"display:none";>
120 $this->view_rejected_refereeing_requests();
124 <div <?php echo $this->referee_req(); ?> >
129 <div <?php echo $this->attend_req(); ?> >
130 <h1> Attendance Requests </h1>
133 <a href=
"#" <?php echo $this->attend_pending(); ?> style=
"text-decoration: none" onclick=
"toggle_visibility('pending_att'); return false;">
134 <h3>Pending Requests</h3>
136 <div
id=
"pending_att" style=
"display:none";>
138 $this->view_pending_attendance_requests();
142 <a href=
"#" <?php echo $this->attend_accepted(); ?> style=
"text-decoration: none" onclick=
"toggle_visibility('accepted_att'); return false;">
143 <h3>Accepted Requests</h3>
145 <div
id=
"accepted_att" style=
"display:none";>
147 $this->view_accepted_attendance_requests();
151 <a href=
"#" <?php echo $this->attend_rejected(); ?> style=
"text-decoration: none" onclick=
"toggle_visibility('rejected_att'); return false;">
152 <h3>Rejected Requests</h3>
154 <div
id=
"rejected_att" style=
"display:none";>
156 $this->view_rejected_attendance_requests();