EliteConf
 All Data Structures Namespaces Files Functions Variables Pages
index.php
Go to the documentation of this file.
1 <?php
2 /* @var $this MymessagesController */
3 
11 $this->breadcrumbs=array(
12  'Mymessages',
13 );
14 ?>
15 
16 
17 
18 <script type="text/javascript">
19 <!--
20  function toggle_visibility(id) {
21  var e = document.getElementById(id);
22  if(e.style.display === 'block')
23  e.style.display = 'none';
24  else
25  e.style.display = 'block';
26  }
27 //-->
28 </script>
29 
30 <h1>My Messages</b></h1>
31 You can view received and sent messages on this page.
32 <br><br>
33 
34 
35 <a href="#" style="text-decoration: none" onclick=" toggle_visibility('received'); return false;">
36 <h3>Received Messages</h3>
37 </a>
38 <div id="received" style="display:none";>
39 <?php
40 //view administering conferences
41 
42 $this->viewreceivedmessages();
43 
44 ?>
45 </div>
46 
47 <br>
48 
49 <a href="#" style="text-decoration: none" onclick=" toggle_visibility('sent'); return false;">
50 <h3>Sent Messages</h3>
51 </a>
52 <div id="sent" style="display:none";>
53 <?php
54 //view administering conferences
55 
56 $this->viewsentmessages();
57 
58 ?>
59 </div>
60 
61 <br>