EliteConf
 All Data Structures Namespaces Files Functions Variables Pages
index.php
Go to the documentation of this file.
1 <?php
2 /* @var $this MyconferencesController */
3 
9 //$this->myConferences();
10 
11 $this->breadcrumbs=array(
12  'Myconferences',
13 );
14 ?>
15 
16 <script type="text/javascript">
17 <!--
18  function toggle_visibility(id) {
19  var e = document.getElementById(id);
20  if(e.style.display === 'block')
21  e.style.display = 'none';
22  else
23  e.style.display = 'block';
24  }
25 //-->
26 </script>
27 
28 
29 
30 <h1><b> MY CONFERENCES </b></h1>
31 
32 All conferences that you are associated with are listed :
33 
34 <br><br>
35 
36  <?php
37 
38  echo CHtml::link("Request New Conference",array('site/request_conference'));
39 
40  ?>
41 
42 <br><br><br>
43 
44 
45 <a href="#" style="text-decoration: none" onclick=" toggle_visibility('administering'); return false;">
46 <h3>Administering</h3>
47 </a>
48 <div id="administering" style="display:none";>
49 <?php
50 //view administering conferences
51 
52 $this->administering();
53 
54 ?>
55 </div>
56 
57 <br>
58 
59 <a href="#" style="text-decoration: none" onclick="toggle_visibility('authoring');return false;">
60 <h3>Authoring</h3>
61 </a>
62 <div id="authoring" style="display:none";>
63 <?php
64 //view authoring conferences
65 
66 $this->authoring();
67 
68 ?>
69 </div>
70 
71 <br>
72 
73 <a href="#" style="text-decoration: none" onclick="toggle_visibility('refereeing');return false;">
74 <h3>Refereeing</h3>
75 </a>
76 <div id="refereeing" style="display:none";>
77 <?php
78 //view refereeing conferences
79 
80 $this->refereeing();
81 
82 ?>
83 </div>
84 
85 <br>
86 
87 <a href="#" style="text-decoration: none" onclick="toggle_visibility('attending');return false;">
88 <h3>Attending</h3>
89 </a>
90 <div id="attending" style="display:none";>
91 <?php
92 //view attending conferences
93 
94 $this->attending();
95 
96 ?>
97 </div>