EliteConf
 All Data Structures Namespaces Files Functions Variables Pages
index.php
Go to the documentation of this file.
1 <?php
2 /* @var $this Interests_confirmationController */
3 
11 $this->breadcrumbs=array(
12  'Interests Confirmation',
13 );
14 ?>
15 
16 <h1>Confirm New Interest Requests</h1>
17 You can confirm interests from the list or add new ones manually.
18 <br><br>
19 
20 
21 <script type="text/javascript">
22 <!--
23  function toggle_visibility(id) {
24  var e = document.getElementById(id);
25  if(e.style.display == 'block')
26  e.style.display = 'none';
27  else
28  e.style.display = 'block';
29  }
30 //-->
31 </script>
32 
33 <br>
34 <a href="#" style="text-decoration: none" onclick="toggle_visibility('newtopic'); return false;">
35 <h3>NEW TOPIC REQUESTS</h3>
36 </a>
37 <div id="newtopic" style="display:none";>
38 <?php
39 // VIEW CONFERENCE USERS
40 
41 $this->view_topics();
42 
43 ?>
44 </div>
45 <br>
46 
47 <a href="#" style="text-decoration: none" onclick="toggle_visibility('existingtopic'); return false;">
48 <h3>EXISTING TOPIC REQUESTS</h3>
49 </a>
50 <div id="existingtopic" style="display:none";>
51 <?php
52 // VIEW CONFERENCE USERS
53 
54 $this->existing_interests();
55 
56 ?>
57 </div>