move code up one directory
[atutor.git] / themes / default / admin / courses / edit_course.tmpl.php
1
2 <?php 
3 global $languageManager,  $_config, $MaxCourseSize, $MaxFileSize;
4
5 ?>
6 <?php //echo _AT('available_immediately'); ?>
7 <form method="post" action="<?php echo $_SERVER['PHP_SELF'];  ?>" name="course_form" enctype="multipart/form-data">
8         <input type="hidden" name="form_course" value="true" />
9         <input type="hidden" name="MAX_FILE_SIZE" value="<?php echo $_config['prof_pic_max_file_size']; ?>" />
10         <input type="hidden" name="course" value="<?php echo $this->course; ?>" />
11         <input type="hidden" name="old_access" value="<?php echo $this->row['access']; ?>" />
12         <input type="hidden" name="created_date" value="<?php echo $this->row['created_date']; ?>" />
13         <input type="hidden" name="show_courses" value="<?php echo $_GET['show_courses']; ?>" />
14         <input type="hidden" name="current_cat" value="<?php echo $_GET['current_cat']; ?>" />
15         <input type="submit" name="submit" style="display:none;"/>
16
17 <div class="input-form">
18         <fieldset class="group_form"><legend class="group_form"><?php echo _AT('properties'); ?></legend>
19 <?php if ($this->isadmin): ?>
20         <div class="row">
21                 <span class="required" title="<?php echo _AT('required_field'); ?>">*</span><label for="inst"><?php echo  _AT('instructor'); ?></label><br />
22                         <?php 
23                         
24                         
25                         if ($instructor_row = mysql_fetch_assoc($this->result)) {
26                                 echo '<select name="instructor" id="inst">';
27                                 do {
28                                         if ($instructor_row['member_id'] == $this->row['member_id']) {
29                                                 echo '<option value="'.$instructor_row['member_id'].'" selected="selected">'.$instructor_row['login'].'</option>';
30                                         } else {
31                                                 echo '<option value="'.$instructor_row['member_id'].'">'.$instructor_row['login'].'</option>';
32                                         }
33                                 } while($instructor_row = mysql_fetch_assoc($this->result));
34                                 echo '</select>';
35                         } else {
36                                 echo '<span id="inst">'._AT('none_found').'</span>';
37                         }
38                         ?>
39         </div>
40 <?php endif; ?>
41
42         <div class="row">
43                 <span class="required" title="<?php echo _AT('required_field'); ?>">*</span><label for="title"><?php echo _AT('title'); ?></label><br />
44                 <input type="text" id="title" name="title" size="40" value="<?php echo htmlspecialchars($this->row['title']); ?>" />
45         </div>
46
47         <div class="row">
48                 <label for="pri_lang"><?php  echo _AT('primary_language'); ?></label><br />
49                 <?php $languageManager->printDropdown($this->row['primary_language'], 'pri_lang', 'pri_lang'); ?>
50         </div>
51
52         <div class="row">
53                 <label for="description"><?php echo _AT('description'); ?></label><br />
54                 <textarea id="description" cols="45" rows="2" name="description"><?php echo $this->row['description']; ?></textarea>
55         </div>
56         <?php if ($_config['course_dir_name']): ?>
57         <div class="row">
58                 <label for="course_dir_name"><?php echo _AT('course_dir_name'); ?></label><br />
59                 <input type="text" id="course_dir_name" name="course_dir_name" size="40" value="<?php echo htmlspecialchars($this->row['course_dir_name']); ?>" />
60         </div>
61         <?php endif; ?>
62
63         <?php $categories = get_categories(); ?>
64         <?php if (is_array($categories)): ?>
65                 <div class="row">
66                 <label for="cat"><?php echo _AT('category'); ?></label><br />
67                         <select name="category_parent" id="cat">
68                                 <option value="0">&nbsp;&nbsp;&nbsp;[&nbsp;&nbsp;<?php echo _AT('cats_uncategorized'); ?>&nbsp;&nbsp;]&nbsp;&nbsp;&nbsp;</option>
69                                 <?php select_categories($categories, 0, $this->row['cat_id'], false); ?>
70
71                         </select>
72                 </div>
73         <?php endif; ?>
74
75         <div class="row">
76                 <?php  echo _AT('export_content'); ?><br />
77                 <?php
78                         switch ($this->row['content_packaging']) {
79                                 case 'none':
80                                                 $none = ' checked="checked"';
81                                                 break;
82
83                                 case 'top':
84                                                 $top     = ' checked="checked"';
85                                                 break;
86
87                                 case 'all':
88                                                 $all    = ' checked="checked"';
89                                                 break;
90                         }
91                         ?>
92                 <label for="none" ><input type="radio" name="content_packaging" value="none" id="none" <?php echo $none; ?> /><?php echo _AT('content_packaging_none'); ?></label><br />
93                 <label for="ctop"><input type="radio" name="content_packaging" value="top" id="ctop"  <?php echo $top; ?> /><?php  echo _AT('content_packaging_top'); ?></label><br />
94                 <label for="all"><input type="radio" name="content_packaging" value="all" id="all" <?php echo $all; ?> /><?php  echo _AT('content_packaging_all'); ?></label>
95         </div>
96
97         <div class="row">
98                 <?php echo _AT('syndicate_announcements'); ?><br />
99                 <?php
100                                 $rss_no = $rss_yes = '';
101
102                                 if ($this->row['rss']) {
103                                         $rss_yes = ' checked="checked"';
104                                 } else {
105                                         $rss_no = ' checked="checked"';
106                                 }
107                 ?>
108                 <label for="rss_y"><input type="radio" name="rss" value="1" id="rss_y" <?php echo $rss_yes; ?> /><?php echo _AT('enable_syndicate'); ?></label><br />
109                 <label for="rss_n"><input type="radio" name="rss" value="0" id="rss_n"  <?php echo $rss_no; ?> /><?php  echo _AT('disable_syndicate'); ?></label>
110         </div>
111
112         <div class="row">
113                 <?php echo _AT('access'); ?><br />
114                 <?php
115                                 switch ($this->row['access']) {
116                                         case 'public':
117                                                         $pub = ' checked="checked"';
118                                                         $disable = 'disabled="disabled"'; // disable the nofity box
119                                                         break;
120
121                                         case 'protected':
122                                                         $prot    = ' checked="checked"';
123                                                         $disable = 'disabled="disabled"'; // disable the nofity box
124                                                         break;
125
126                                         case 'private':
127                                                         $priv   = ' checked="checked"';
128                                                         break;
129                                 }
130
131                                 if ($this->row['notify']) {
132                                         $notify = ' checked="checked"';
133                                 }
134
135                                 if ($this->row['hide']) {
136                                         $hide = ' checked="checked"';
137                                 }
138                 ?>
139                 <input type="radio" name="access" value="public" id="pub" onclick="disableNotify();" <?php echo $pub; ?> /><label for="pub"><strong> <?php echo  _AT('public'); ?>: </strong></label><?php echo  _AT('about_public'); ?><br /><br />
140
141                 <input type="radio" name="access" value="protected" id="prot" onclick="disableNotify();" <?php echo $prot; ?> /><label for="prot"><strong><?php echo  _AT('protected'); ?>:</strong></label> <?php echo _AT('about_protected'); ?><br /><br />
142
143                 <input type="radio" name="access" value="private" id="priv" onclick="enableNotify();" <?php echo $priv; ?> /><label for="priv"><strong><?php echo  _AT('private'); ?>:</strong></label> <?php echo  _AT('about_private'); ?><br />
144                 <input type="checkbox" name="notify" id="notify" value="1" <?php
145                         echo $disable;
146                         echo $notify; ?> /><label for="notify"><?php echo  _AT('email_approvals'); ?></label>
147                 <br />
148                 <input type="checkbox" name="hide" id="hide" value="1" <?php
149                 echo $disable;
150                 echo $hide; ?> /><label for="hide"><?php echo  _AT('hide_course'); ?></label>.
151         </div>
152
153         <div class="row">
154                 <?php echo _AT('release_date'); ?><br />
155                 <?php
156                         $rel_no = $rel_yes = '';
157
158                         if (intval($this->row['release_date'])) {
159                                 $rel_yes = ' checked="checked"';
160
161                                 $today_day   = substr($this->row['release_date'], 8, 2);
162                                 $today_mon   = substr($this->row['release_date'], 5, 2);
163                                 $today_year  = substr($this->row['release_date'], 0, 4);
164
165                                 $today_hour  = substr($this->row['release_date'], 11, 2);
166                                 $today_min   = substr($this->row['release_date'], 14, 2);
167                         } else {
168                                 $rel_no = ' checked="checked"'; 
169                                 $today_year  = date('Y');
170                         }
171
172                 ?>
173
174                 <input type="radio" name="release_date" value="0" id="release_now" <?php echo $rel_no; ?> /> <label for="release_now"><?php echo _AT('available_immediately'); ?></label><br />
175
176
177                 <input type="radio" name="release_date" value="1" id="release_later" <?php echo $rel_yes; ?> /> <label for="release_later"><?php echo _AT('release_on'); ?></label> 
178                 <?php
179                         $name = '_release';
180                         require(AT_INCLUDE_PATH.'html/release_date.inc.php');
181                 ?>
182         </div>
183
184         <div class="row">
185                 <?php echo _AT('end_date'); ?><br />
186                 <?php
187                         $end_no = $end_yes = '';
188
189                         if (intval($this->row['end_date'])) {
190                                 $end_yes = ' checked="checked"';
191
192                                 $today_day   = substr($this->row['end_date'], 8, 2);
193                                 $today_mon   = substr($this->row['end_date'], 5, 2);
194                                 $today_year  = substr($this->row['end_date'], 0, 4);
195
196                                 $today_hour  = substr($this->row['end_date'], 11, 2);
197                                 $today_min   = substr($this->row['end_date'], 14, 2);
198                         } else {
199                                 $end_no = ' checked="checked"'; 
200                                 $today_year  = date('Y')+1;
201                         }
202
203                 ?>
204
205                 <input type="radio" name="end_date" value="0" id="end_now" <?php echo $end_no; ?> /> <label for="end_now"><?php echo _AT('no_end_date'); ?></label><br />
206
207                 <input type="radio" name="end_date" value="1" id="end_later" <?php echo $end_yes; ?> /> <label for="end_later"><?php echo _AT('end_on'); ?></label> 
208                 <?php
209                         $name = '_end';
210                         require(AT_INCLUDE_PATH.'html/release_date.inc.php');
211                 ?>
212         </div>
213
214         <div class="row">
215                 <?php
216                         if (($_POST['setvisual'] && !$_POST['settext']) || $_GET['setvisual']){
217                                 echo '<input type="hidden" name="setvisual" value="'.$_POST['setvisual'].'" />';
218                                 echo '<input type="submit" name="settext" value="'._AT('switch_text').'"  class="button"/>';
219                         } else {
220                                 echo '<input type="submit" name="setvisual" value="'._AT('switch_visual').'" class="button"/>';
221                         }
222                 ?>
223         </div>
224         <div class="row">
225
226                 <label for="banner"><?php echo _AT('banner'); ?></label><br />
227                 <textarea id="banner" cols="45" rows="15" name="banner"><?php echo $this->row['banner']; ?></textarea>
228         </div>
229 <!-- FIX  -->
230 <?php if (!$this->course) : ?>
231         <div class="row">
232                 <label for="initial_content"><?php echo _AT('initial_content'); ?></label><br />
233                 <select name="initial_content" id="initial_content" size="5">
234                         <option value="0"><?php echo _AT('empty'); ?></option>
235                         <option value="1" selected="selected"><?php echo _AT('create_basic'); ?></option>
236                         <?php 
237                         
238                         if ($course_row = mysql_fetch_assoc($result)) {
239                                 do {
240                                         $Backup->setCourseID($course_row['course_id']);
241                                         $list = $Backup->getAvailableList();
242
243                                         if (!empty($list)) { 
244                                                 echo '<optgroup label="'. _AT('restore').': '.$course_row['title'].'">';
245                                                 foreach ($list as $list_item) {
246                                                         echo '<option value="'.$list_item['backup_id'].'_'.$list_item['course_id'].'">'.$list_item['file_name'].' - '.get_human_size($list_item['file_size']).'</option>';
247                                                 }
248                                                 echo '</optgroup>';
249                                         }
250                                 } while ($course_row = mysql_fetch_assoc($result));
251                         }
252                         ?>
253                         </select>
254         </div>
255 <?php endif; // !$course_id ?>
256
257 <?php if ($this->isadmin) : ?>
258         <div class="row">
259                 <?php  echo _AT('course_quota'); ?><br />
260                 <?php 
261                         if ($this->row['max_quota'] == AT_COURSESIZE_UNLIMITED) { 
262                                 $c_unlim = ' checked="checked" ';
263                                 $c_oth2 = ' disabled="disabled" ';
264                         } elseif ($this->row['max_quota'] == AT_COURSESIZE_DEFAULT) {
265                                 $c_def = ' checked="checked" ';
266                                 $c_oth2 = ' disabled="disabled" ';
267                         } else {
268                                 $c_oth = ' checked="checked" ';
269                                 $c_oth2 = '';
270                         }
271
272                         if ($this->course > 0) {
273                                 $course_size = dirsize(AT_CONTENT_DIR . $this->course.'/');
274                         } else {
275                                 $course_size = 0;
276                         }
277
278                         if ($this->course) {
279                                 echo _AT('current_course_size') .': '.get_human_size($course_size).'<br />'; 
280                         }
281                 ?>
282
283                 <input type="radio" id="c_default" name="quota" value="<?php echo AT_COURSESIZE_DEFAULT; ?>" onclick="disableOther();" <?php echo $c_def;?> /><label for="c_default"> <?php echo _AT('default') . ' ('.get_human_size($MaxCourseSize).')'; ?></label> <br />
284                 <input type="radio" id="c_unlim" name="quota" value="<?php echo AT_COURSESIZE_UNLIMITED; ?>" onclick="disableOther();" <?php echo $c_unlim;?>/><label for="c_unlim"> <?php echo _AT('unlimited'); ?></label> <br />
285                 <input type="radio" id="c_other" name="quota" value="2" onclick="enableOther();" <?php echo $c_oth;?>/><label for="c_other"> <?php echo _AT('other'); ?> </label> - 
286                 <label for="quota_entered">Quota Entered</label>
287                 <input type="text" id="quota_entered" name="quota_entered" <?php echo $c_oth2?> value="<?php if ($this->row['max_quota']!=AT_COURSESIZE_UNLIMITED && $this->row['max_quota']!=AT_COURSESIZE_DEFAULT) { echo bytes_to_megabytes($this->row['max_quota']); } ?>" size="4" /> <?php echo _AT('mb'); ?>
288         </div>
289
290         <div class="row">
291                 <?php  echo _AT('max_file_size'); ?><br />
292                 <?php 
293                         $max_allowed = megabytes_to_bytes(substr(ini_get('upload_max_filesize'), 0, -1));
294
295                         if ($this->row['max_file_size'] == AT_FILESIZE_DEFAULT) { 
296                                 $f_def = ' checked="checked" ';
297                                 $f_oth2 = ' disabled="disabled" ';
298                         } elseif ($this->row['max_file_size'] == AT_FILESIZE_SYSTEM_MAX) {
299                                 $f_max = ' checked="checked" ';
300                                 $f_oth2 = ' disabled="disabled" ';
301                         } else {
302                                 $f_oth = ' checked="checked" ';
303                                 $f_oth2 = '';
304                         }
305                 ?>
306                 <input type="radio" id="f_default" name="filesize" value="<?php echo AT_FILESIZE_DEFAULT; ?>" onclick="disableOther2();" <?php echo $f_def;?> /><label for="f_default"> <?php echo _AT('default') . ' ('.get_human_size($MaxFileSize).')'; ?></label> <br />
307                 <input type="radio" id="f_maxallowed" name="filesize" value="<?php echo AT_FILESIZE_SYSTEM_MAX; ?>" onclick="disableOther2();" <?php echo $f_max;?>/><label for="f_maxallowed"> <?php echo _AT('max_file_size_system') . ' ('.get_human_size($max_allowed).')'; ?></label> <br />
308                 <input type="radio" id="f_other" name="filesize" value="2" onclick="enableOther2();" <?php echo $f_oth;?>/><label for="f_other"> <?php echo _AT('other'); ?> </label> - 
309                 <label for="filesize_entered">Filesize entered</label>
310                 <input type="text" id="filesize_entered" name="filesize_entered" <?php echo $f_oth2?> value="<?php if ($this->row['max_file_size']!=AT_FILESIZE_DEFAULT && $this->row['max_file_size']!=AT_FILESIZE_SYSTEM_MAX) { echo bytes_to_megabytes($this->row['max_file_size']); } ?>" size="4" /> <?php echo _AT('mb'); ?>
311         </div>
312
313 <?php else: ?>
314         <input type="hidden" name="quota" value="<?php echo $this->row['max_quota']; ?>" />
315         <input type="hidden" name="filesize" value="<?php echo $this->row['max_file_size']; ?>" />
316         <input type="hidden" name="tracking" value="<?php echo $this->row['tracking']; ?>" />
317 <?php endif; ?>
318
319         <div class="row">
320                 <label for="copyright"><?php echo _AT('course_copyright'); ?></label><br />
321                 <textarea name="copyright" rows="2" cols="65" id="copyright"><?php echo $this->row['copyright']; ?></textarea>
322         </div>
323         <div class="row">
324                 <?php 
325             if ($this->row['icon'] != ''): 
326                 $path = AT_CONTENT_DIR.$this->row['course_id']."/custom_icons/";
327                 if (file_exists($path.$this->row['icon'])) {
328                     if (defined('AT_FORCE_GET_FILE') && AT_FORCE_GET_FILE) {
329                         $custom_icon_path = 'get_course_icon.php/?id='.$this->row['course_id'];
330                     } else {
331                         $_base_href = 'content/' . $this->row['course_id'] . '/';
332                     }
333                 } else {
334                     $_base_href = "images/courses/";    //$_base_href = 'get_course_icon.php/?id='.$row['course_id'];
335                 }
336
337             $force_get = (defined('AT_FORCE_GET_FILE') && AT_FORCE_GET_FILE) ? true : false;
338             echo "<input type='hidden' name='boolForce' id='boolForce' value='$force_get' />";
339         
340        //include(AT_INCLUDE_PATH.'html/course_icon.inc.php');        
341         ?>
342                 <img id="i0" src="<?php echo ($custom_icon_path=='')?$_base_href.$this->row['icon']:$custom_icon_path; ?>" alt="<?php echo $this->row['icon']; ?>" border="1" height="79" width="79"  style="float: left; margin: 2px;" />
343
344                 <?php else: ?>
345                         <img id="i0" src="images/clr.gif" alt="" style="float: left; margin: 2px;" border="1" height="79" width="79"  />
346                         <input type='hidden' name='boolForce' id='boolForce' value='' />
347                 <?php endif; ?>
348                 <div style="width:40%; float:left;">
349                 <label for="icons"><?php echo _AT('icon'); ?></label><br />
350                 <select name="icon" id="icons" onchange="SelectImg()">
351                         <option value=""><?php echo _AT('no_icon'); ?></option>
352             <?php // ------------- custom course icons
353                 $path = AT_CONTENT_DIR.$this->row['course_id']."/custom_icons/";
354                 $boolCustom = false;
355                 $optCount = 0;
356
357                 if (is_dir($path)) {
358                     $boolCustom = true;  // true if custom icons are uploaded, otherwise false
359                     
360                     /*$files = scandir($path);  //SCANDIR STOPS ATUTOR WHEN RUN AS INSTRUCTOR, BUT NOT AS ADMIN. WHY? -Gorzan */
361                     
362                     /* PHP 4 REPLACEMENT FOR SCANDIR */
363                                         $dh  = opendir($path);
364                                         while (false !== ($filename = readdir($dh))) {
365                                                 $files[] = $filename;
366                                         }
367
368                                         /*END PHP 4 REPLACEMENT FOR SCANDIR*/
369                     echo "<optgroup label='"._AT('custom_icons')."'>";
370                     foreach($files as $val) {
371                                                 $file_ext = substr(strtolower($val), -3);
372                         if ($file_ext == "jpg" || $file_ext == "png" || $file_ext == "gif") {
373                             $optCount++;
374                             echo "<option value='".$val."'";
375                             if ($val == $this->row['icon']) {
376                                 echo 'selected="selected"';
377                             }
378                             echo ">".$val."</option>";
379                         }
380                     }
381                     echo "</optgroup>";
382                 }
383                 
384             ?>
385                         <?php // ------------- other icons
386
387                                 $course_imgs = array();
388                                 if ($dir = opendir(AT_INCLUDE_PATH.'../images/courses/')) {
389                                         while (false !== ($file = readdir($dir)) ) {
390                                                 if( ($file == '.') || ($file == '..')) { 
391                                                         continue;
392                                                 }
393                                                 $course_imgs[] = $file;
394                                         }               
395                                         closedir($dir); 
396                                 }
397                                 sort($course_imgs);
398                 if ($boolCustom == true) {
399                     echo "<optgroup label='"._AT('builtin_icons')."'>";
400                 }
401                                 foreach ($course_imgs as $file) {
402                                         echo '<option value="' . $file . '" ';
403                                         if ($file == $this->row['icon']) { 
404                                                 echo 'selected="selected"'; 
405                                         }
406                                         echo ' >' . $file . '</option>';        
407                                 }
408                 if ($boolCustom == true) {
409                     echo "</optgroup>";
410                 }
411                         ?>
412                 </select><?php echo "&nbsp;&nbsp;&nbsp; "._AT('or'); ?>
413         </div>
414             <!-- div class="row" style="float:right;width:40%;">
415             <?php echo _AT('upload_icon'); ?><br />
416                 <label for="customicon"><input type="file" name="customicon" title="custom icon" id="customicon" value="<?php echo $_POST['customicon']; ?>"/></label><br />
417                 <small><?php echo _AT('upload_icon_text'); ?></small>
418             </div -->
419
420         <?php  require_once(AT_INCLUDE_PATH.'../mods/_core/courses/html/course_icon.inc.php'); ?>
421
422         <br style="clear: left;" />
423
424         </div>
425
426     <div style="clear: both;"></div>
427
428     
429
430         <div class="buttons">
431                 <?php
432             echo "<input type='hidden' name='custOptCount' id='custOptCount' value='".$optCount."' />";
433             echo "<input type='hidden' name='courseId' id='courseId' value='".$this->row['course_id']."' />";
434                 ?>
435
436                 <input type="submit" name="submit" value="<?php echo _AT('save'); ?>" accesskey="s" /> 
437                 <input type="submit" name="cancel" value="<?php echo _AT('cancel');?>" />
438         </div>
439     </fieldset>
440 </div>
441
442 </form>