EliteConf
 All Data Structures Namespaces Files Functions Variables Pages
index.php
Go to the documentation of this file.
1 <?php
2 /* @var $this MypapersController */
3 
9 $this->breadcrumbs=array(
10  'Mypapers',
11 );
12 ?>
13 
14 <script type="text/javascript">
15 <!--
16  function toggle_visibility(id) {
17  var e = document.getElementById(id);
18  if(e.style.display === 'block')
19  e.style.display = 'none';
20  else
21  e.style.display = 'block';
22  }
23 //-->
24 </script>
25 
26 
27 <h1><b> MY PAPERS </b></h1>
28 
29 All papers that you are associated with are listed :
30 
31 <br><br><br>
32 
33 
34 <a href="#" style="text-decoration: none" onclick="toggle_visibility('administering');return false;">
35 <h3>Administering</h3>
36 </a>
37 <div id="administering" style="display:none";>
38 <?php
39 //view administering papers
40 
41 $this->administering();
42 
43 ?>
44 </div>
45 
46 <br>
47 
48 <a href="#" style="text-decoration: none" onclick="toggle_visibility('authoring');return false;">
49 <h3>Authoring</h3>
50 </a>
51 <div id="authoring" style="display:none";>
52 <?php
53 //view authoring papers
54 
55 $this->authoring();
56 
57 ?>
58 </div>
59 
60 <br>
61 
62 <a href="#" style="text-decoration: none" onclick="toggle_visibility('refereeing');return false;">
63 <h3>Refereeing</h3>
64 </a>
65 <div id="refereeing" style="display:none";>
66 <?php
67 //view refereeing papers
68 
69 $this->refereeing();
70 
71 
72 
73 ?>
74 </div>
75 
76 <br>
77