@@ -274,7 +274,7 @@ |
||
274 | 274 | } |
275 | 275 | break; |
276 | 276 | case "delete": |
277 | - if (!(api_is_course_coach() && !api_is_element_in_the_session(TOOL_AGENDA, $eventId) )) { |
|
277 | + if (!(api_is_course_coach() && !api_is_element_in_the_session(TOOL_AGENDA, $eventId))) { |
|
278 | 278 | // a coach can only delete an element belonging to his session |
279 | 279 | $content = $agenda->deleteEvent($eventId); |
280 | 280 | } |
@@ -99,7 +99,7 @@ discard block |
||
99 | 99 | $renderer->setHeaderTemplate('<legend>{header}</legend>'); |
100 | 100 | |
101 | 101 | //Set required field template |
102 | - $this->setRequiredNote('<span class="form_required">*</span> <small>' . get_lang('ThisFieldIsRequired') . '</small>'); |
|
102 | + $this->setRequiredNote('<span class="form_required">*</span> <small>'.get_lang('ThisFieldIsRequired').'</small>'); |
|
103 | 103 | $noteTemplate = <<<EOT |
104 | 104 | <div class="form-group"> |
105 | 105 | <div class="col-sm-offset-2 col-sm-10">{requiredNote}</div> |
@@ -851,9 +851,9 @@ discard block |
||
851 | 851 | $label = get_lang('PleaseStandBy'); |
852 | 852 | } |
853 | 853 | $this->with_progress_bar = true; |
854 | - $this->updateAttributes("onsubmit=\"javascript: myUpload.start('dynamic_div','".Display::returnIconPath('progress_bar.gif')."','" . $label . "','" . $this->getAttribute('id') . "')\""); |
|
855 | - $this->addElement('html', '<script language="javascript" src="' . api_get_path(WEB_LIBRARY_PATH) . 'javascript/upload.js" type="text/javascript"></script>'); |
|
856 | - $this->addElement('html', '<script type="text/javascript">var myUpload = new upload(' . (abs(intval($delay)) * 1000) . ');</script>'); |
|
854 | + $this->updateAttributes("onsubmit=\"javascript: myUpload.start('dynamic_div','".Display::returnIconPath('progress_bar.gif')."','".$label."','".$this->getAttribute('id')."')\""); |
|
855 | + $this->addElement('html', '<script language="javascript" src="'.api_get_path(WEB_LIBRARY_PATH).'javascript/upload.js" type="text/javascript"></script>'); |
|
856 | + $this->addElement('html', '<script type="text/javascript">var myUpload = new upload('.(abs(intval($delay)) * 1000).');</script>'); |
|
857 | 857 | } |
858 | 858 | |
859 | 859 | /** |
@@ -870,11 +870,11 @@ discard block |
||
870 | 870 | return; |
871 | 871 | } |
872 | 872 | |
873 | - $xajax_upload = new xajax(api_get_path(WEB_LIBRARY_PATH) . 'upload.xajax.php'); |
|
873 | + $xajax_upload = new xajax(api_get_path(WEB_LIBRARY_PATH).'upload.xajax.php'); |
|
874 | 874 | |
875 | 875 | $xajax_upload->registerFunction('updateProgress'); |
876 | 876 | // IMPORTANT : must be the first element of the form |
877 | - $el = $this->insertElementBefore(FormValidator::createElement('html', '<input type="hidden" name="UPLOAD_IDENTIFIER" value="' . $upload_id . '" />'), $element_after); |
|
877 | + $el = $this->insertElementBefore(FormValidator::createElement('html', '<input type="hidden" name="UPLOAD_IDENTIFIER" value="'.$upload_id.'" />'), $element_after); |
|
878 | 878 | |
879 | 879 | $this->addElement('html', '<br />'); |
880 | 880 | |
@@ -882,7 +882,7 @@ discard block |
||
882 | 882 | $this->addElement( |
883 | 883 | 'html', |
884 | 884 | '<div id="dynamic_div_container" style="display:none"> |
885 | - <div id="dynamic_div_label">' . get_lang('UploadFile') . '</div> |
|
885 | + <div id="dynamic_div_label">' . get_lang('UploadFile').'</div> |
|
886 | 886 | <div id="dynamic_div_frame" style="width:214px; height:12px; border:1px solid grey; background-image:url(' . Display::returnIconPath('real_upload_frame.gif').');"> |
887 | 887 | <div id="dynamic_div_filled" style="width:0%;height:100%;background-image:url(' . Display::returnIconPath('real_upload_step.gif').');background-repeat:repeat-x;background-position:center;"></div> |
888 | 888 | </div> |
@@ -893,7 +893,7 @@ discard block |
||
893 | 893 | $this->addElement('html', ' |
894 | 894 | <div id="dynamic_div_waiter_container" style="display:none"> |
895 | 895 | <div id="dynamic_div_waiter_label"> |
896 | - ' . get_lang('SlideshowConversion') . ' |
|
896 | + ' . get_lang('SlideshowConversion').' |
|
897 | 897 | </div> |
898 | 898 | <div id="dynamic_div_waiter_frame"> |
899 | 899 | '.Display::return_icon('real_upload_frame.gif').' |
@@ -903,18 +903,18 @@ discard block |
||
903 | 903 | } |
904 | 904 | |
905 | 905 | // Get the xajax code |
906 | - $this->addElement('html', $xajax_upload->getJavascript(api_get_path(WEB_LIBRARY_PATH) . 'xajax')); |
|
906 | + $this->addElement('html', $xajax_upload->getJavascript(api_get_path(WEB_LIBRARY_PATH).'xajax')); |
|
907 | 907 | |
908 | 908 | // Get the upload code |
909 | - $this->addElement('html', '<script language="javascript" src="' . api_get_path(WEB_LIBRARY_PATH) . 'javascript/upload.js" type="text/javascript"></script>'); |
|
910 | - $this->addElement('html', '<script type="text/javascript">var myUpload = new upload(' . (abs(intval($delay)) * 1000) . ');</script>'); |
|
909 | + $this->addElement('html', '<script language="javascript" src="'.api_get_path(WEB_LIBRARY_PATH).'javascript/upload.js" type="text/javascript"></script>'); |
|
910 | + $this->addElement('html', '<script type="text/javascript">var myUpload = new upload('.(abs(intval($delay)) * 1000).');</script>'); |
|
911 | 911 | |
912 | 912 | if (!$wait_after_upload) { |
913 | 913 | $wait_after_upload = 0; |
914 | 914 | } |
915 | 915 | |
916 | 916 | // Add the upload event |
917 | - $this->updateAttributes("onsubmit=\"javascript: myUpload.startRealUpload('dynamic_div','" . $upload_id . "','" . $this->getAttribute('id') . "'," . $wait_after_upload . ")\""); |
|
917 | + $this->updateAttributes("onsubmit=\"javascript: myUpload.startRealUpload('dynamic_div','".$upload_id."','".$this->getAttribute('id')."',".$wait_after_upload.")\""); |
|
918 | 918 | } |
919 | 919 | |
920 | 920 | /** |
@@ -54,12 +54,12 @@ discard block |
||
54 | 54 | |
55 | 55 | /* Breadcrumbs */ |
56 | 56 | |
57 | -if (isset($_SESSION['gradebook'])){ |
|
57 | +if (isset($_SESSION['gradebook'])) { |
|
58 | 58 | $gradebook = Security::remove_XSS($_SESSION['gradebook']); |
59 | 59 | } |
60 | 60 | |
61 | 61 | if (!empty($gradebook) && $gradebook == 'view') { |
62 | - $interbreadcrumb[] = array ( |
|
62 | + $interbreadcrumb[] = array( |
|
63 | 63 | 'url' => '../gradebook/'.Security::remove_XSS($_SESSION['gradebook_dest']), |
64 | 64 | 'name' => get_lang('ToolGradebook') |
65 | 65 | ); |
@@ -117,7 +117,7 @@ discard block |
||
117 | 117 | $interbreadcrumb[] = array('url' => api_get_path(WEB_CODE_PATH).'group/group.php?'.$cidreq, 'name' => get_lang('Groups')); |
118 | 118 | $interbreadcrumb[] = array('url' => api_get_path(WEB_CODE_PATH).'group/group_space.php?'.$cidreq, 'name' => get_lang('GroupSpace').' '.$groupProperties['name']); |
119 | 119 | $interbreadcrumb[] = array('url' => api_get_path(WEB_CODE_PATH).'forum/viewforum.php?'.$cidreq.'&forum='.intval($_GET['forum']), 'name' => $current_forum['forum_title']); |
120 | - $interbreadcrumb[] = array('url' => api_get_path(WEB_CODE_PATH).'forum/newthread.php?'.$cidreq.'&forum='.intval($_GET['forum']),'name' => get_lang('NewTopic')); |
|
120 | + $interbreadcrumb[] = array('url' => api_get_path(WEB_CODE_PATH).'forum/newthread.php?'.$cidreq.'&forum='.intval($_GET['forum']), 'name' => get_lang('NewTopic')); |
|
121 | 121 | } else { |
122 | 122 | $interbreadcrumb[] = array('url' => api_get_path(WEB_CODE_PATH).'forum/index.php?'.$cidreq, 'name' => $nameTools); |
123 | 123 | $interbreadcrumb[] = array('url' => api_get_path(WEB_CODE_PATH).'forum/viewforumcategory.php?'.$cidreq.'&forumcategory='.$current_forum_category['cat_id'], 'name' => $current_forum_category['cat_title']); |
@@ -127,9 +127,9 @@ discard block |
||
127 | 127 | |
128 | 128 | /* Resource Linker */ |
129 | 129 | if (isset($_POST['add_resources']) AND $_POST['add_resources'] == get_lang('Resources')) { |
130 | - $_SESSION['formelements'] = $_POST; |
|
131 | - $_SESSION['origin'] = $_SERVER['REQUEST_URI']; |
|
132 | - $_SESSION['breadcrumbs'] = $interbreadcrumb; |
|
130 | + $_SESSION['formelements'] = $_POST; |
|
131 | + $_SESSION['origin'] = $_SERVER['REQUEST_URI']; |
|
132 | + $_SESSION['breadcrumbs'] = $interbreadcrumb; |
|
133 | 133 | header('Location: ../resourcelinker/resourcelinker.php'); |
134 | 134 | exit; |
135 | 135 | } |
@@ -45,7 +45,7 @@ discard block |
||
45 | 45 | } |
46 | 46 | |
47 | 47 | if (!empty($gradebook) && $gradebook == 'view') { |
48 | - $interbreadcrumb[] = array ( |
|
48 | + $interbreadcrumb[] = array( |
|
49 | 49 | 'url' => '../gradebook/'.Security::remove_XSS($_SESSION['gradebook_dest']), |
50 | 50 | 'name' => get_lang('ToolGradebook') |
51 | 51 | ); |
@@ -107,7 +107,7 @@ discard block |
||
107 | 107 | $interbreadcrumb[] = array('url' => api_get_path(WEB_CODE_PATH).'group/group.php?'.$cidreq, 'name' => get_lang('Groups')); |
108 | 108 | $interbreadcrumb[] = array('url' => api_get_path(WEB_CODE_PATH).'group/group_space.php?'.$cidreq, 'name' => get_lang('GroupSpace').' '.$groupProperties['name']); |
109 | 109 | $interbreadcrumb[] = array('url' => api_get_path(WEB_CODE_PATH).'forum/viewforum.php?'.$cidreq.'&forum='.intval($_GET['forum']), 'name' => $currentForum['forum_title']); |
110 | - $interbreadcrumb[] = array('url' => api_get_path(WEB_CODE_PATH).'forum/newthread.php?'.$cidreq.'&forum='.intval($_GET['forum']),'name' => get_lang('EditThread')); |
|
110 | + $interbreadcrumb[] = array('url' => api_get_path(WEB_CODE_PATH).'forum/newthread.php?'.$cidreq.'&forum='.intval($_GET['forum']), 'name' => get_lang('EditThread')); |
|
111 | 111 | } else { |
112 | 112 | $interbreadcrumb[] = array('url' => api_get_path(WEB_CODE_PATH).'forum/index.php?'.$cidreq, 'name' => $nameTools); |
113 | 113 | $interbreadcrumb[] = array('url' => api_get_path(WEB_CODE_PATH).'forum/viewforumcategory.php?'.$cidreq.'&forumcategory='.$currentForumCategory['cat_id'], 'name' => $currentForumCategory['cat_title']); |
@@ -156,7 +156,7 @@ discard block |
||
156 | 156 | echo '<div class="actions">'; |
157 | 157 | echo '<span style="float:right;">'.search_link().'</span>'; |
158 | 158 | echo '<a href="viewforum.php?forum='.intval($_GET['forum']).'&'.$cidreq.'">'. |
159 | - Display::return_icon('back.png',get_lang('BackToForum'),'',ICON_SIZE_MEDIUM).'</a>'; |
|
159 | + Display::return_icon('back.png', get_lang('BackToForum'), '', ICON_SIZE_MEDIUM).'</a>'; |
|
160 | 160 | echo '</div>'; |
161 | 161 | |
162 | 162 | $threadData = getThreadInfo($threadId, $cId); |
@@ -40,7 +40,7 @@ discard block |
||
40 | 40 | // Are we in a lp ? |
41 | 41 | $origin = ''; |
42 | 42 | if (isset($_GET['origin'])) { |
43 | - $origin = Security::remove_XSS($_GET['origin']); |
|
43 | + $origin = Security::remove_XSS($_GET['origin']); |
|
44 | 44 | } |
45 | 45 | |
46 | 46 | // Name of the tool |
@@ -48,12 +48,12 @@ discard block |
||
48 | 48 | |
49 | 49 | // Breadcrumbs |
50 | 50 | |
51 | -if (isset($_SESSION['gradebook'])){ |
|
51 | +if (isset($_SESSION['gradebook'])) { |
|
52 | 52 | $gradebook = $_SESSION['gradebook']; |
53 | 53 | } |
54 | 54 | |
55 | 55 | if (!empty($gradebook) && $gradebook == 'view') { |
56 | - $interbreadcrumb[] = array ( |
|
56 | + $interbreadcrumb[] = array( |
|
57 | 57 | 'url' => '../gradebook/'.$_SESSION['gradebook_dest'], |
58 | 58 | 'name' => get_lang('ToolGradebook') |
59 | 59 | ); |
@@ -66,7 +66,7 @@ discard block |
||
66 | 66 | $interbreadcrumb[] = array('url' => api_get_path(WEB_CODE_PATH).'group/group.php?'.api_get_cidreq(), 'name' => get_lang('Groups')); |
67 | 67 | $interbreadcrumb[] = array('url' => api_get_path(WEB_CODE_PATH).'group/group_space.php?'.api_get_cidreq(), 'name' => get_lang('GroupSpace').' ('.$group_properties['name'].')'); |
68 | 68 | $interbreadcrumb[] = array('url' => api_get_path(WEB_CODE_PATH).'forum/viewforum.php?origin='.$origin.'&forum='.intval($_GET['forum']).'&'.api_get_cidreq(), 'name' => prepare4display($current_forum['forum_title'])); |
69 | - $interbreadcrumb[] = array('url' => api_get_path(WEB_CODE_PATH).'forum/forumsearch.php?'.api_get_cidreq(),'name' => get_lang('ForumSearch')); |
|
69 | + $interbreadcrumb[] = array('url' => api_get_path(WEB_CODE_PATH).'forum/forumsearch.php?'.api_get_cidreq(), 'name' => get_lang('ForumSearch')); |
|
70 | 70 | } else { |
71 | 71 | $interbreadcrumb[] = array('url' => api_get_path(WEB_CODE_PATH).'forum/index.php?'.api_get_cidreq(), 'name' => $nameTools); |
72 | 72 | $nameTools = get_lang('ForumSearch'); |
@@ -64,7 +64,7 @@ discard block |
||
64 | 64 | if ($slide_id != 'all') { |
65 | 65 | $image = null; |
66 | 66 | if (isset($image_files_only[$slide])) { |
67 | - $image = $sys_course_path . $_course['path'] . '/document' . $folder . $image_files_only[$slide]; |
|
67 | + $image = $sys_course_path.$_course['path'].'/document'.$folder.$image_files_only[$slide]; |
|
68 | 68 | } |
69 | 69 | if (file_exists($image)) { |
70 | 70 | echo '<div class="actions-pagination">'; |
@@ -105,7 +105,7 @@ discard block |
||
105 | 105 | $last = Display::return_icon('action_last_na.png', get_lang('LastSlide')); |
106 | 106 | } else { |
107 | 107 | $imgn = 'action_next.png'; |
108 | - $last = '<a href="slideshow.php?slide_id='.($total_slides-1).'&curdirpath='.$pathurl.'"> |
|
108 | + $last = '<a href="slideshow.php?slide_id='.($total_slides - 1).'&curdirpath='.$pathurl.'"> |
|
109 | 109 | '.Display::return_icon('action_last.png', get_lang('LastSlide')).' |
110 | 110 | </a>'; |
111 | 111 | } |
@@ -122,18 +122,18 @@ discard block |
||
122 | 122 | |
123 | 123 | // Exit the slideshow |
124 | 124 | echo '<a href="document.php?action=exit_slideshow&curdirpath='.$pathurl.'&'.api_get_cidreq().'">'. |
125 | - Display::return_icon('back.png',get_lang('BackTo').' '.get_lang('DocumentsOverview'),'',ICON_SIZE_MEDIUM).'</a>'; |
|
125 | + Display::return_icon('back.png', get_lang('BackTo').' '.get_lang('DocumentsOverview'), '', ICON_SIZE_MEDIUM).'</a>'; |
|
126 | 126 | |
127 | 127 | // Show thumbnails |
128 | 128 | if ($slide_id != 'all') { |
129 | 129 | echo '<a href="slideshow.php?slide_id=all&curdirpath='.$pathurl.'&'.api_get_cidreq().'">'. |
130 | - Display::return_icon('thumbnails.png',get_lang('ShowThumbnails'),'',ICON_SIZE_MEDIUM).'</a>'; |
|
130 | + Display::return_icon('thumbnails.png', get_lang('ShowThumbnails'), '', ICON_SIZE_MEDIUM).'</a>'; |
|
131 | 131 | } else { |
132 | - echo Display::return_icon('thumbnails_na.png',get_lang('ShowThumbnails'),'',ICON_SIZE_MEDIUM); |
|
132 | + echo Display::return_icon('thumbnails_na.png', get_lang('ShowThumbnails'), '', ICON_SIZE_MEDIUM); |
|
133 | 133 | } |
134 | 134 | // Slideshow options |
135 | 135 | echo '<a href="slideshowoptions.php?curdirpath='.$pathurl.'&'.api_get_cidreq().'">'. |
136 | - Display::return_icon('settings.png', get_lang('SetSlideshowOptions'),'',ICON_SIZE_MEDIUM).'</a>'; |
|
136 | + Display::return_icon('settings.png', get_lang('SetSlideshowOptions'), '', ICON_SIZE_MEDIUM).'</a>'; |
|
137 | 137 | |
138 | 138 | echo '</div>'; |
139 | 139 | echo '<br />'; |
@@ -157,7 +157,7 @@ discard block |
||
157 | 157 | } |
158 | 158 | $target_width = $target_height = null; |
159 | 159 | // The target height and width depends if we choose resizing or no resizing |
160 | -if (isset($_SESSION["image_resizing"]) && $_SESSION["image_resizing"] == "resizing") { |
|
160 | +if (isset($_SESSION["image_resizing"]) && $_SESSION["image_resizing"] == "resizing") { |
|
161 | 161 | $target_width = $_SESSION["image_resizing_width"]; |
162 | 162 | $target_height = $_SESSION["image_resizing_height"]; |
163 | 163 | } |
@@ -165,7 +165,7 @@ discard block |
||
165 | 165 | /* THUMBNAIL VIEW */ |
166 | 166 | |
167 | 167 | // This is for viewing all the images in the slideshow as thumbnails. |
168 | -$image_tag = array (); |
|
168 | +$image_tag = array(); |
|
169 | 169 | $html = ''; |
170 | 170 | if ($slide_id == 'all') { |
171 | 171 | |
@@ -173,16 +173,16 @@ discard block |
||
173 | 173 | $allowed_thumbnail_types = array('jpg', 'jpeg', 'gif', 'png'); |
174 | 174 | $max_thumbnail_width = 250; |
175 | 175 | $max_thumbnail_height = 250; |
176 | - $png_compression = 0;//0(none)-9 |
|
177 | - $jpg_quality = 75;//from 0 to 100 (default is 75). More quality less compression |
|
176 | + $png_compression = 0; //0(none)-9 |
|
177 | + $jpg_quality = 75; //from 0 to 100 (default is 75). More quality less compression |
|
178 | 178 | |
179 | 179 | $directory_thumbnails = $sys_course_path.$_course['path'].'/document'.$folder.'.thumbs/'; |
180 | 180 | |
181 | 181 | //Other parameters only for show tumbnails |
182 | - $row_items = 4;//only in slideshow.php |
|
183 | - $number_image = 7;//num icons cols to show |
|
184 | - $thumbnail_width_frame=$max_thumbnail_width;//optional $max_thumbnail_width+x |
|
185 | - $thumbnail_height_frame=$max_thumbnail_height; |
|
182 | + $row_items = 4; //only in slideshow.php |
|
183 | + $number_image = 7; //num icons cols to show |
|
184 | + $thumbnail_width_frame = $max_thumbnail_width; //optional $max_thumbnail_width+x |
|
185 | + $thumbnail_height_frame = $max_thumbnail_height; |
|
186 | 186 | |
187 | 187 | // Create the template_thumbnails folder (if no exist) |
188 | 188 | |
@@ -195,20 +195,20 @@ discard block |
||
195 | 195 | |
196 | 196 | foreach ($image_files_only as $one_image_file) { |
197 | 197 | $image = $sys_course_path.$_course['path'].'/document'.$folder.$one_image_file; |
198 | - $image_thumbnail= $directory_thumbnails.'.'.$one_image_file; |
|
198 | + $image_thumbnail = $directory_thumbnails.'.'.$one_image_file; |
|
199 | 199 | |
200 | 200 | if (file_exists($image)) { |
201 | 201 | //check thumbnail |
202 | 202 | $imagetype = explode(".", $image); |
203 | 203 | //or check $imagetype = image_type_to_extension(exif_imagetype($image), false); |
204 | - $imagetype = strtolower($imagetype[count($imagetype)-1]); |
|
204 | + $imagetype = strtolower($imagetype[count($imagetype) - 1]); |
|
205 | 205 | |
206 | - if(in_array($imagetype,$allowed_thumbnail_types)) { |
|
207 | - if (!file_exists($image_thumbnail)){ |
|
206 | + if (in_array($imagetype, $allowed_thumbnail_types)) { |
|
207 | + if (!file_exists($image_thumbnail)) { |
|
208 | 208 | //run each once we view thumbnails is too heavy, then need move into !file_exists($image_thumbnail, and only run when haven't the thumbnail |
209 | 209 | $original_image_size = api_getimagesize($image); |
210 | 210 | |
211 | - switch($imagetype) { |
|
211 | + switch ($imagetype) { |
|
212 | 212 | case 'gif': |
213 | 213 | $source_img = imagecreatefromgif($image); |
214 | 214 | break; |
@@ -230,17 +230,17 @@ discard block |
||
230 | 230 | $max_thumbnail_height |
231 | 231 | ); |
232 | 232 | |
233 | - if($max_thumbnail_width>$original_image_size['width'] && $max_thumbnail_height>$original_image_size['height']){ |
|
234 | - $new_thumbnail_size['width']=$original_image_size['width']; |
|
235 | - $new_thumbnail_size['height']=$original_image_size['height']; |
|
233 | + if ($max_thumbnail_width > $original_image_size['width'] && $max_thumbnail_height > $original_image_size['height']) { |
|
234 | + $new_thumbnail_size['width'] = $original_image_size['width']; |
|
235 | + $new_thumbnail_size['height'] = $original_image_size['height']; |
|
236 | 236 | } |
237 | 237 | |
238 | 238 | $crop = imagecreatetruecolor($new_thumbnail_size['width'], $new_thumbnail_size['height']); |
239 | 239 | |
240 | 240 | // preserve transparency |
241 | - if($imagetype == "png"){ |
|
241 | + if ($imagetype == "png") { |
|
242 | 242 | imagesavealpha($crop, true); |
243 | - $color = imagecolorallocatealpha($crop,0x00,0x00,0x00,127); |
|
243 | + $color = imagecolorallocatealpha($crop, 0x00, 0x00, 0x00, 127); |
|
244 | 244 | imagefill($crop, 0, 0, $color); |
245 | 245 | } |
246 | 246 | |
@@ -248,7 +248,7 @@ discard block |
||
248 | 248 | $transindex = imagecolortransparent($source_img); |
249 | 249 | $palletsize = imagecolorstotal($source_img); |
250 | 250 | //GIF89a for transparent and anim (first clip), either GIF87a |
251 | - if ($transindex >= 0 && $transindex < $palletsize){ |
|
251 | + if ($transindex >= 0 && $transindex < $palletsize) { |
|
252 | 252 | $transcol = imagecolorsforindex($source_img, $transindex); |
253 | 253 | $transindex = imagecolorallocatealpha($crop, $transcol['red'], $transcol['green'], $transcol['blue'], 127); |
254 | 254 | imagefill($crop, 0, 0, $transindex); |
@@ -272,16 +272,16 @@ discard block |
||
272 | 272 | |
273 | 273 | switch ($imagetype) { |
274 | 274 | case 'gif': |
275 | - imagegif($crop,$image_thumbnail); |
|
275 | + imagegif($crop, $image_thumbnail); |
|
276 | 276 | break; |
277 | 277 | case 'jpg': |
278 | - imagejpeg($crop,$image_thumbnail,$jpg_quality); |
|
278 | + imagejpeg($crop, $image_thumbnail, $jpg_quality); |
|
279 | 279 | break; |
280 | 280 | case 'jpeg': |
281 | - imagejpeg($crop,$image_thumbnail,$jpg_quality); |
|
281 | + imagejpeg($crop, $image_thumbnail, $jpg_quality); |
|
282 | 282 | break; |
283 | 283 | case 'png': |
284 | - imagepng($crop,$image_thumbnail,$png_compression); |
|
284 | + imagepng($crop, $image_thumbnail, $png_compression); |
|
285 | 285 | break; |
286 | 286 | } |
287 | 287 | |
@@ -291,26 +291,26 @@ discard block |
||
291 | 291 | |
292 | 292 | //show thumbnail and link |
293 | 293 | |
294 | - $one_image_thumbnail_file='.thumbs/.'.$one_image_file;//get path thumbnail |
|
294 | + $one_image_thumbnail_file = '.thumbs/.'.$one_image_file; //get path thumbnail |
|
295 | 295 | $doc_url = ($path && $path !== '/') ? $path.'/'.$one_image_thumbnail_file : $path.$one_image_thumbnail_file; |
296 | 296 | $image_tag[] = '<img class="img-gallery" src="download.php?doc_url='.$doc_url.'" border="0" title="'.$one_image_file.'">'; |
297 | 297 | } else { |
298 | 298 | //if images aren't support by gd (not gif, jpg, jpeg, png) |
299 | - if ($imagetype=="bmp") { |
|
299 | + if ($imagetype == "bmp") { |
|
300 | 300 | // use getimagesize instead api_getimagesize($image); becasuse api_getimagesize doesn't support bmp files. Put here for each show, only for a few bmp files isn't heavy |
301 | 301 | $original_image_size = getimagesize($image); |
302 | - if ($max_thumbnail_width<$original_image_size[0] || $max_thumbnail_height<$original_image_size[1]){ |
|
303 | - $thumbnail_size=api_calculate_image_size($original_image_size[0], $original_image_size[1], $max_thumbnail_width, $max_thumbnail_height);//don't use resize_image because doesn't run with bmp files |
|
302 | + if ($max_thumbnail_width < $original_image_size[0] || $max_thumbnail_height < $original_image_size[1]) { |
|
303 | + $thumbnail_size = api_calculate_image_size($original_image_size[0], $original_image_size[1], $max_thumbnail_width, $max_thumbnail_height); //don't use resize_image because doesn't run with bmp files |
|
304 | 304 | $image_height = $thumbnail_size['height']; |
305 | 305 | $image_width = $thumbnail_size['width']; |
306 | 306 | } else { |
307 | - $image_height=$original_image_size[0]; |
|
308 | - $image_width=$original_image_size[1]; |
|
307 | + $image_height = $original_image_size[0]; |
|
308 | + $image_width = $original_image_size[1]; |
|
309 | 309 | } |
310 | 310 | } else { |
311 | 311 | //example for svg files,... |
312 | - $image_width=$max_thumbnail_width; |
|
313 | - $image_height=$max_thumbnail_height; |
|
312 | + $image_width = $max_thumbnail_width; |
|
313 | + $image_height = $max_thumbnail_height; |
|
314 | 314 | } |
315 | 315 | |
316 | 316 | $doc_url = ($path && $path !== '/') ? $path.'/'.$one_image_file : $path.$one_image_file; |
@@ -326,7 +326,7 @@ discard block |
||
326 | 326 | |
327 | 327 | $i = 0; |
328 | 328 | $count_image = count($image_tag); |
329 | - $number_iteration = ceil($count_image/$number_image); |
|
329 | + $number_iteration = ceil($count_image / $number_image); |
|
330 | 330 | $p = 0; |
331 | 331 | $html = ''; |
332 | 332 | $html .= '<div class="gallery">'; |
@@ -338,7 +338,7 @@ discard block |
||
338 | 338 | $html .= '<a class="canvas-two" href="slideshow.php?slide_id='.$p.'&curdirpath='.$pathurl.'">'; |
339 | 339 | $html .= '<div class="frame">'; |
340 | 340 | $html .= '<div class="photo">'; |
341 | - $html .= $image_tag[$p]; |
|
341 | + $html .= $image_tag[$p]; |
|
342 | 342 | $html .= '</div>'; |
343 | 343 | $html .= '</div>'; |
344 | 344 | $html .= '</a>'; |
@@ -393,7 +393,7 @@ discard block |
||
393 | 393 | |
394 | 394 | list($width, $height) = getimagesize($image); |
395 | 395 | // Auto resize |
396 | - if (isset($_SESSION["image_resizing"]) && $_SESSION["image_resizing"] == 'resizing') { |
|
396 | + if (isset($_SESSION["image_resizing"]) && $_SESSION["image_resizing"] == 'resizing') { |
|
397 | 397 | ?> |
398 | 398 | |
399 | 399 | <script type="text/javascript"> |
@@ -410,7 +410,7 @@ discard block |
||
410 | 410 | start_height=initial_height; |
411 | 411 | } |
412 | 412 | |
413 | - document.write('<img id="image" src="<?php echo 'download.php?doc_url='.$path.'/'.$image_files_only[$slide]; ?>" width="'+start_width+'" height="'+start_height+'" border="0" alt="<?php echo $image_files_only[$slide] ;?>">'); |
|
413 | + document.write('<img id="image" src="<?php echo 'download.php?doc_url='.$path.'/'.$image_files_only[$slide]; ?>" width="'+start_width+'" height="'+start_height+'" border="0" alt="<?php echo $image_files_only[$slide]; ?>">'); |
|
414 | 414 | |
415 | 415 | function resizeImage() { |
416 | 416 | |
@@ -454,7 +454,7 @@ discard block |
||
454 | 454 | echo '</a>'; |
455 | 455 | echo '<div class="caption text-center">'; |
456 | 456 | echo Display::tag('h3', $row['title']); |
457 | - echo '<p>' . $row['comment'] . '</p>'; |
|
457 | + echo '<p>'.$row['comment'].'</p>'; |
|
458 | 458 | echo '</div>'; |
459 | 459 | echo '</div>'; |
460 | 460 | |
@@ -467,7 +467,7 @@ discard block |
||
467 | 467 | $resize_info = get_lang('Resizing').'<br />'; |
468 | 468 | $resize_width = $_SESSION["image_resizing_width"].' x '; |
469 | 469 | $resize_height = $_SESSION['image_resizing_height']; |
470 | - } elseif (isset($_SESSION['image_resizing']) && $_SESSION['image_resizing'] != 'noresizing'){ |
|
470 | + } elseif (isset($_SESSION['image_resizing']) && $_SESSION['image_resizing'] != 'noresizing') { |
|
471 | 471 | $resize_info = get_lang('Resizing').'<br />'; |
472 | 472 | $resize_width = get_lang('Auto').' x '; |
473 | 473 | $resize_height = get_lang('Auto'); |
@@ -478,10 +478,10 @@ discard block |
||
478 | 478 | } |
479 | 479 | |
480 | 480 | echo '<li class="text-center">'; |
481 | - echo $image_files_only[$slide] . ' '; |
|
481 | + echo $image_files_only[$slide].' '; |
|
482 | 482 | echo Display::toolbarButton( |
483 | 483 | get_lang('Modify'), |
484 | - 'edit_document.php?' . api_get_cidreq() . '&' . http_build_query([ |
|
484 | + 'edit_document.php?'.api_get_cidreq().'&'.http_build_query([ |
|
485 | 485 | 'id' => $row['id'], |
486 | 486 | 'origin' => 'slideshow', |
487 | 487 | 'origin_opt' => $edit_slide_id, |
@@ -493,11 +493,11 @@ discard block |
||
493 | 493 | false |
494 | 494 | ); |
495 | 495 | echo '</li>'; |
496 | - echo '<li class="text-center">' . $width.' x '.$height . '</li>'; |
|
497 | - echo '<li class="text-center">' . round((filesize($image) / 1024), 2) . ' KB - ' . $ext . '</li>'; |
|
498 | - echo '<li class="text-center">' . $resize_info . '</li>'; |
|
499 | - echo '<li class="text-center">' . $resize_width . '</li>'; |
|
500 | - echo '<li class="text-center">' . $resize_height . '</li>'; |
|
496 | + echo '<li class="text-center">'.$width.' x '.$height.'</li>'; |
|
497 | + echo '<li class="text-center">'.round((filesize($image) / 1024), 2).' KB - '.$ext.'</li>'; |
|
498 | + echo '<li class="text-center">'.$resize_info.'</li>'; |
|
499 | + echo '<li class="text-center">'.$resize_width.'</li>'; |
|
500 | + echo '<li class="text-center">'.$resize_height.'</li>'; |
|
501 | 501 | echo '</ul>'; |
502 | 502 | } |
503 | 503 |
@@ -9,7 +9,7 @@ discard block |
||
9 | 9 | */ |
10 | 10 | |
11 | 11 | require_once '../inc/global.inc.php'; |
12 | -$current_course_tool = TOOL_COURSE_DESCRIPTION; |
|
12 | +$current_course_tool = TOOL_COURSE_DESCRIPTION; |
|
13 | 13 | |
14 | 14 | // defining constants |
15 | 15 | define('ADD_BLOCK', 8); |
@@ -23,7 +23,7 @@ discard block |
||
23 | 23 | // get actions |
24 | 24 | $actions = array('listing', 'add', 'edit', 'delete', 'history'); |
25 | 25 | $action = 'listing'; |
26 | -if (isset($_GET['action']) && in_array($_GET['action'],$actions)) { |
|
26 | +if (isset($_GET['action']) && in_array($_GET['action'], $actions)) { |
|
27 | 27 | $action = $_GET['action']; |
28 | 28 | } |
29 | 29 | |
@@ -42,7 +42,7 @@ discard block |
||
42 | 42 | } |
43 | 43 | |
44 | 44 | // interbreadcrumb |
45 | -$interbreadcrumb[] = array ("url" => "index.php?".api_get_cidreq(), "name" => get_lang('CourseProgram')); |
|
45 | +$interbreadcrumb[] = array("url" => "index.php?".api_get_cidreq(), "name" => get_lang('CourseProgram')); |
|
46 | 46 | if ($description_type == 1) { |
47 | 47 | $interbreadcrumb[] = array("url" => "#", "name" => get_lang('GeneralDescription')); |
48 | 48 | } |
@@ -11,26 +11,26 @@ |
||
11 | 11 | api_protect_course_script(true); |
12 | 12 | |
13 | 13 | // display categories |
14 | -$categories = array (); |
|
14 | +$categories = array(); |
|
15 | 15 | foreach ($default_description_titles as $id => $title) { |
16 | 16 | $categories[$id] = $title; |
17 | 17 | } |
18 | 18 | $categories[ADD_BLOCK] = get_lang('NewBloc'); |
19 | 19 | |
20 | -$i=1; |
|
20 | +$i = 1; |
|
21 | 21 | echo '<div class="actions" style="margin-bottom:30px">'; |
22 | 22 | echo '<a href="index.php?'.api_get_cidreq().'">'. |
23 | - Display::return_icon('back.png',get_lang('BackTo').' '.get_lang('ToolCourseDescription'),'',ICON_SIZE_MEDIUM). |
|
23 | + Display::return_icon('back.png', get_lang('BackTo').' '.get_lang('ToolCourseDescription'), '', ICON_SIZE_MEDIUM). |
|
24 | 24 | '</a>'; |
25 | 25 | ksort($categories); |
26 | 26 | foreach ($categories as $id => $title) { |
27 | 27 | if ($i == ADD_BLOCK) { |
28 | 28 | echo '<a href="index.php?'.api_get_cidreq().'&action=add">'. |
29 | - Display::return_icon($default_description_icon[$id], $title, '',ICON_SIZE_MEDIUM).'</a>'; |
|
29 | + Display::return_icon($default_description_icon[$id], $title, '', ICON_SIZE_MEDIUM).'</a>'; |
|
30 | 30 | break; |
31 | 31 | } else { |
32 | 32 | echo '<a href="index.php?action=edit&'.api_get_cidreq().'&description_type='.$id.'">'. |
33 | - Display::return_icon($default_description_icon[$id], $title,'',ICON_SIZE_MEDIUM).'</a>'; |
|
33 | + Display::return_icon($default_description_icon[$id], $title, '', ICON_SIZE_MEDIUM).'</a>'; |
|
34 | 34 | $i++; |
35 | 35 | } |
36 | 36 | } |
@@ -15,7 +15,7 @@ |
||
15 | 15 | chdir($cwdir); |
16 | 16 | |
17 | 17 | if (api_get_setting('search.search_enabled') == 'true') { |
18 | - require_once api_get_path(LIBRARY_PATH) . 'specific_fields_manager.lib.php'; |
|
18 | + require_once api_get_path(LIBRARY_PATH).'specific_fields_manager.lib.php'; |
|
19 | 19 | $specific_fields = get_specific_field_list(); |
20 | 20 | |
21 | 21 | foreach ($specific_fields as $specific_field) { |