EliteConf
 All Data Structures Namespaces Files Functions Variables Pages
index.php
Go to the documentation of this file.
1 <?php
2 /* @var $this AnnouncementController */
3 
12 $this->breadcrumbs=array(
13  'Announcement',
14 );
15 ?>
16 
17 <h3>Make An Announcement</h3>
18 
19 
20 <form action="index.php?r=announcementfunction/index" method="post">
21 <label>Title : <br></label>
22 <input type="string" name="title" style="width:300px;">
23 <br/>
24 <label>Content : <br></label>
25 <textarea name="content" style="width:600px; height: 150px;"></textarea>
26 <br/>
27 <?php
28 echo "<input type='checkbox' name='mailall' value=1> Mail This Announcement To All Participants<br>";
29 echo "<input type='checkbox' name='mailauth' value=2> Mail This Announcement To Authors Only<br>";
30 echo "<input type='checkbox' name='mailatt' value=3> Mail This Announcement To Attendees Only<br>";
31 echo "<input type='checkbox' name='mailref' value=4> Mail This Announcement To Referees Only<br>";
32 ?>
33 <input hidden name="confid" value="<?php echo $_GET["confid"];?>"/>
34 <br/>
35 <input type="submit" value="Make Announcement">
36 <br/>
37 
38 </form>