remove old readme
[atutor.git] / mods / _standard / reading_list / new_reading_file.php
1 <?php
2 /****************************************************************/
3 /* ATutor                                                                                                               */
4 /****************************************************************/
5 /* Copyright (c) 2002-2008                                      */
6 /* Written by Greg Gay, Joel Kronenberg & Chris Ridpath         */
7 /* Inclusive Design Institute                                   */
8 /* http://atutor.ca                                                                                             */
9 /*                                                              */
10 /* This program is free software. You can redistribute it and/or*/
11 /* modify it under the terms of the GNU General Public License  */
12 /* as published by the Free Software Foundation.                                */
13 /****************************************************************/
14 // $Id$
15 define('AT_INCLUDE_PATH', '../../../include/');
16 require (AT_INCLUDE_PATH.'vitals.inc.php');
17 authenticate(AT_PRIV_READING_LIST);
18
19 $existing = -1;
20
21 if (isset($_POST['cancel'])) {
22         $msg->addFeedback('CANCELLED');
23         header('Location: index_instructor.php');
24         exit;
25 } else if (isset($_POST['submit'])) {
26
27         $_POST['existing'] = intval($_POST['existing']);
28         $existing = $_POST['existing'];
29         $_POST['hasdate'] = $addslashes($_POST['hasdate']);
30         $_POST['readstatus'] = $addslashes($_POST['readstatus']);
31         $_POST['comment'] = $addslashes($_POST['comment']);
32         $_POST['startday'] = intval($_POST['startday']);
33         $_POST['startmonth'] = intval($_POST['startmonth']);
34         $_POST['startyear'] = intval($_POST['startyear']);
35         $_POST['endday'] = intval($_POST['endday']);
36         $_POST['endmonth'] = intval($_POST['endmonth']);
37         $_POST['endyear'] = intval($_POST['endyear']);
38
39         $date_start = '0000-00-00';
40         $date_end = '0000-00-00';
41         if ($_POST['hasdate'] == 'true'){
42                 $date_start = $_POST['startyear']. '-' .str_pad ($_POST['startmonth'], 2, "0", STR_PAD_LEFT). '-' .str_pad ($_POST['startday'], 2, "0", STR_PAD_LEFT);
43                 $date_end = $_POST['endyear']. '-' .str_pad ($_POST['endmonth'], 2, "0", STR_PAD_LEFT). '-' .str_pad ($_POST['endday'], 2, "0", STR_PAD_LEFT);
44         }
45
46         $sql = "INSERT INTO ".TABLE_PREFIX."reading_list VALUES (NULL, $_SESSION[course_id],
47                 '$_POST[existing]',
48                 '$_POST[readstatus]',
49                 '$date_start',
50                 '$date_end',
51                 '$_POST[comment]'
52                 )";
53         $result = mysql_query($sql,$db);
54
55         $msg->addFeedback('ACTION_COMPLETED_SUCCESSFULLY');
56         header('Location: index_instructor.php');
57         exit;
58 }
59
60 if (isset($_GET['existing'])){
61         $existing = intval ($_GET['existing']);
62 }
63
64 $today = getdate();
65
66 $sql = "SELECT title, resource_id FROM ".TABLE_PREFIX."external_resources WHERE course_id=$_SESSION[course_id] AND type=".RL_TYPE_FILE." ORDER BY title";
67 $files_result = mysql_query($sql, $db);
68
69 if (!mysql_num_rows($files_result)) {
70         header('Location: add_resource_file.php?page_return=new_reading_file.php');
71         exit;
72 }
73
74 $onload = 'document.form.name.focus();';
75
76 require(AT_INCLUDE_PATH.'header.inc.php');
77 ?>
78 <form action="<?php echo $_SERVER['PHP_SELF']; ?>" method="post" name="form">
79 <div class="input-form">        
80         <fieldset class="group_form"><legend class="group_form"><?php echo _AT('file_to_read'); ?></legend>
81
82         <div class="row">
83                 <label for="title"><?php  echo _AT('rl_select_file'); ?>:</label>
84                 <select name="existing" id="title">
85
86                         <?php while ($row = mysql_fetch_assoc($files_result)): ?>
87                                 <option value="<?php echo $row['resource_id']; ?>"<?php if ($row['resource_id'] == $existing) { echo ' selected="selected"'; } ?>><?php echo htmlspecialchars($row['title']); ?></option>
88                         <?php endwhile; ?>
89                 
90                 </select>
91
92                 <?php  echo _AT('rl_or'); ?> <a href="mods/_standard/reading_list/add_resource_file.php"><?php  echo _AT('rl_create_new_file'); ?></a>
93         </div>
94
95         <div class="row">
96                 <input type="radio" name="readstatus" value="required" id="required" <?php
97                 if (isset($_POST['readstatus'])){
98                         if ($_POST['readstatus'] == 'required'){
99                                 echo 'checked="checked"';
100                         }
101                 }
102                 else {
103                         echo 'checked="checked"';
104                 }?>/>
105                 <label for="required"><?php  echo _AT('required'); ?></label>
106                 <input type="radio" name="readstatus" value="optional" id="optional" <?php if (isset($_POST['readstatus']) && ($_POST['readstatus'] == 'optional')) { echo ' checked="checked"'; } ?>/>
107                 <label for="optional"><?php  echo _AT('optional'); ?></label>
108         </div>  
109         
110         <div class="row">
111         <label for="comment"><?php  echo _AT('comment'); ?>:</label><input type="text" id="comment" size="75" name="comment" value="<?php if (isset($_POST['comment'])) echo $stripslashes($_POST['comment']);  ?>" />
112         </div>
113
114 <h3><?php echo _AT('rl_read_by_date'); ?></h3>
115
116         <div class="row">
117                 <input type="radio" id="nodate" name="hasdate" value="false" <?php
118                 if (isset($_POST['hasdate'])){
119                         if ($_POST['hasdate'] != 'true'){
120                                 echo ' checked="checked"';
121                         }
122                 }
123                 else {
124                         echo ' checked="checked"';
125                 }?>/>
126                 <label for="nodate"><?php  echo _AT('rl_no_read_by_date'); ?></label>
127         </div>
128
129         <div class="row">
130                 <input type="radio" id="hasdate" name="hasdate" value="true" <?php if (isset($_POST['hasdate']) && ($_POST['hasdate'] == 'true')) { echo ' checked="checked"'; } ?>/>
131                 <label for="hasdate"><?php  echo _AT('rl_reading_date'); ?></label><br/>
132
133                 <label for="startdate"><?php  echo _AT('start_date'); ?>:</label>
134
135                 <select name="startday" id="startdate">
136                 <?php for ($i = 1; $i <= 31; $i++){ ?>
137                         <option value="<?php echo $i ?>" <?php if ($i == $today['mday']) { echo ' selected="selected"'; } ?>><?php echo $i ?></option>
138                 <?php } ?>
139                 </select>
140                 
141                 <select name="startmonth">
142                 <?php for ($i = 1; $i <= 12; $i++){ ?>
143                         <option value="<?php echo $i ?>" <?php if ($i == $today['mon']) { echo ' selected="selected"'; } ?>><?php echo AT_Date('%M', $i, AT_DATE_INDEX_VALUE) ?></option>
144                 <?php } ?>
145                 </select>
146
147                 <select name="startyear">
148                 <?php for ($i = ($today['year'] - 1); $i <= ($today['year'] + 4); $i++){ ?>
149                         <option value="<?php echo $i ?>" <?php if ($i == $today['year']) { echo ' selected="selected"'; } ?>><?php echo $i ?></option>
150                 <?php } ?>
151                 </select>
152         
153         
154                 <br/><label for="enddate"><?php  echo _AT('end_date'); ?>:</label>
155
156                 <select name="endday" id="enddate">
157                 <?php for ($i = 1; $i <= 31; $i++){ ?>
158                         <option value="<?php echo $i ?>" <?php if ($i == $today['mday']) { echo ' selected="selected"'; } ?>><?php echo $i ?></option>
159                 <?php } ?>
160                 </select>
161         
162                 <select name="endmonth">
163                 <?php for ($i = 1; $i <= 12; $i++){ ?>
164                         <option value="<?php echo $i ?>" <?php if ($i == $today['mon']) { echo ' selected="selected"'; } ?>><?php echo AT_Date('%M', $i, AT_DATE_INDEX_VALUE) ?></option>
165                 <?php } ?>
166                 </select>
167         
168                 <select name="endyear">
169                 <?php for ($i = ($today['year'] - 1); $i <= ($today['year'] + 4); $i++){ ?>
170                         <option value="<?php echo $i ?>" <?php if ($i == $today['year']) { echo ' selected="selected"'; } ?>><?php echo $i ?></option>
171                 <?php } ?>
172                 </select>       
173         </div>
174
175         <div class="row buttons">
176                 <input type="submit" name="submit" value="<?php echo _AT('save'); ?>" accesskey="s" />
177                 <input type="submit" name="cancel" value="<?php echo _AT('cancel'); ?>" />
178         </div>
179         </fieldset>
180 </div>
181 </form>
182
183 <?php require(AT_INCLUDE_PATH.'footer.inc.php'); ?>