EliteConf
 All Data Structures Namespaces Files Functions Variables Pages
index.php
Go to the documentation of this file.
1 <?php
2 /* @var $this MyInvitationsController */
3 
12 $this->breadcrumbs=array(
13  'My Invitations',
14 );
15 ?>
16 
17 
18 <!-- Script to view/hide -->
19 <script type="text/javascript">
20 <!--
21  function toggle_visibility(id) {
22  var e = document.getElementById(id);
23  if(e.style.display == 'block')
24  e.style.display = 'none';
25  else
26  e.style.display = 'block';
27  }
28 //-->
29 </script>
30 
31 
32 <div <?php echo $this->any_inv(); ?> >
33  <br>
34 <h3> You Have No Invitations </h3>
35 </div>
36 
37 <div <?php echo $this->author_inv(); ?> >
38 <h1> Authoring Invitations </h1>
39 </div>
40 
41 <a href="#" <?php echo $this->author_pending(); ?> style="text-decoration: none" onclick="toggle_visibility('pending'); return false;">
42 <h3>Pending Invitations</h3>
43 </a>
44 <div id="pending" style="display:none";>
45 <?php
46 $this->view_pending_authoring_invitations();
47 ?>
48 </div>
49 
50 <a href="#" <?php echo $this->author_accepted(); ?> style="text-decoration: none" onclick="toggle_visibility('accepted'); return false;">
51 <h3>Accepted Invitations</h3>
52 </a>
53 <div id="accepted" style="display:none";>
54 <?php
55 $this->view_accepted_authoring_invitations();
56 ?>
57 </div>
58 
59 <a href="#" <?php echo $this->author_rejected(); ?> style="text-decoration: none" onclick="toggle_visibility('rejected'); return false;">
60 <h3>Rejected Invitations</h3>
61 </a>
62 <div id="rejected" style="display:none";>
63 <?php
64 $this->view_rejected_authoring_invitations();
65 ?>
66 </div>
67 
68 <div <?php echo $this->author_inv(); ?> >
69 <br>
70 <br>
71 </div>
72 
73 <div <?php echo $this->referee_inv(); ?> >
74 <h1> Refereeing Invitations </h1>
75 </div>
76 
77 <a href="#" <?php echo $this->referee_pending(); ?> style="text-decoration: none" onclick="toggle_visibility('pending_ref'); return false;">
78 <h3>Pending Invitations</h3>
79 </a>
80 <div id="pending_ref" style="display:none";>
81 <?php
82 $this->view_pending_refereeing_invitations();
83 ?>
84 </div>
85 
86 <a href="#" <?php echo $this->referee_accepted(); ?> style="text-decoration: none" onclick="toggle_visibility('accepted_ref'); return false;">
87 <h3>Accepted Invitations</h3>
88 </a>
89 <div id="accepted_ref" style="display:none";>
90 <?php
91 $this->view_accepted_refereeing_invitations();
92 ?>
93 </div>
94 
95 <a href="#" <?php echo $this->referee_rejected(); ?> style="text-decoration: none" onclick="toggle_visibility('rejected_ref'); return false;">
96 <h3>Rejected Invitations</h3>
97 </a>
98 <div id="rejected_ref" style="display:none";>
99 <?php
100 $this->view_rejected_refereeing_invitations();
101 ?>
102 </div>
103 
104 <div <?php echo $this->referee_inv(); ?> >
105 <br>
106 <br>
107 </div>
108 
109 <div <?php echo $this->attend_inv(); ?> >
110 <h1> Attendance Invitations </h1>
111 </div>
112 
113 <a href="#" <?php echo $this->attend_pending(); ?> style="text-decoration: none" onclick="toggle_visibility('pending_att'); return false;">
114 <h3>Pending Invitations</h3>
115 </a>
116 <div id="pending_att" style="display:none;">
117 <?php
118 $this->view_pending_attendance_invitations();
119 ?>
120 </div>
121 
122 <a href="#" <?php echo $this->attend_accepted(); ?> style="text-decoration: none" onclick="toggle_visibility('accepted_att'); return false;">
123 <h3>Accepted Invitations</h3>
124 </a>
125 <div id="accepted_att" style="display:none";>
126 <?php
127 $this->view_accepted_attendance_invitations();
128 ?>
129 </div>
130 
131 <a href="#" <?php echo $this->attend_rejected(); ?> style="text-decoration: none" onclick="toggle_visibility('rejected_att'); return false;">
132 <h3>Rejected Invitations</h3>
133 </a>
134 <div id="rejected_att" style="display:none;">
135 <?php
136 $this->view_rejected_attendance_invitations();
137 ?>
138 </div>