| 1 | <?php | 
|---|
| 2 | # -- BEGIN LICENSE BLOCK --------------------------------------- | 
|---|
| 3 | # | 
|---|
| 4 | # This file is part of Dotclear 2. | 
|---|
| 5 | # | 
|---|
| 6 | # Copyright (c) 2003-2013 Olivier Meunier & Association Dotclear | 
|---|
| 7 | # Licensed under the GPL version 2.0 license. | 
|---|
| 8 | # See LICENSE file or | 
|---|
| 9 | # http://www.gnu.org/licenses/old-licenses/gpl-2.0.html | 
|---|
| 10 | # | 
|---|
| 11 | # -- END LICENSE BLOCK ----------------------------------------- | 
|---|
| 12 |  | 
|---|
| 13 | /* HTML page | 
|---|
| 14 | -------------------------------------------------------- */ | 
|---|
| 15 | require dirname(__FILE__).'/../inc/admin/prepend.php'; | 
|---|
| 16 |  | 
|---|
| 17 | dcPage::check('media,media_admin'); | 
|---|
| 18 |  | 
|---|
| 19 | $post_id = !empty($_GET['post_id']) ? (integer) $_GET['post_id'] : null; | 
|---|
| 20 | if ($post_id) { | 
|---|
| 21 | $post = $core->blog->getPosts(array('post_id'=>$post_id,'post_type'=>'')); | 
|---|
| 22 | if ($post->isEmpty()) { | 
|---|
| 23 | $post_id = null; | 
|---|
| 24 | } | 
|---|
| 25 | $post_title = $post->post_title; | 
|---|
| 26 | $post_type = $post->post_type; | 
|---|
| 27 | unset($post); | 
|---|
| 28 | } | 
|---|
| 29 | $d = isset($_REQUEST['d']) ? $_REQUEST['d'] : null; | 
|---|
| 30 | $dir = null; | 
|---|
| 31 |  | 
|---|
| 32 | $page = !empty($_GET['page']) ? $_GET['page'] : 1; | 
|---|
| 33 | $nb_per_page =  30; | 
|---|
| 34 |  | 
|---|
| 35 | # We are on home not comming from media manager | 
|---|
| 36 | if ($d === null && isset($_SESSION['media_manager_dir'])) { | 
|---|
| 37 | # We get session information | 
|---|
| 38 | $d = $_SESSION['media_manager_dir']; | 
|---|
| 39 | } | 
|---|
| 40 |  | 
|---|
| 41 | if (!isset($_GET['page']) && isset($_SESSION['media_manager_page'])) { | 
|---|
| 42 | $page = $_SESSION['media_manager_page']; | 
|---|
| 43 | } | 
|---|
| 44 |  | 
|---|
| 45 | # We set session information about directory and page | 
|---|
| 46 | if ($d) { | 
|---|
| 47 | $_SESSION['media_manager_dir'] = $d; | 
|---|
| 48 | } else { | 
|---|
| 49 | unset($_SESSION['media_manager_dir']); | 
|---|
| 50 | } | 
|---|
| 51 | if ($page != 1) { | 
|---|
| 52 | $_SESSION['media_manager_page'] = $page; | 
|---|
| 53 | } else { | 
|---|
| 54 | unset($_SESSION['media_manager_page']); | 
|---|
| 55 | } | 
|---|
| 56 |  | 
|---|
| 57 | # Sort combo | 
|---|
| 58 | $sort_combo = array( | 
|---|
| 59 | __('By names, in ascending order') => 'name-asc', | 
|---|
| 60 | __('By names, in descending order') => 'name-desc', | 
|---|
| 61 | __('By dates, in ascending order') => 'date-asc', | 
|---|
| 62 | __('By dates, in descending order') => 'date-desc' | 
|---|
| 63 | ); | 
|---|
| 64 |  | 
|---|
| 65 | if (!empty($_GET['file_sort']) && in_array($_GET['file_sort'],$sort_combo)) { | 
|---|
| 66 | $_SESSION['media_file_sort'] = $_GET['file_sort']; | 
|---|
| 67 | } | 
|---|
| 68 | $file_sort = !empty($_SESSION['media_file_sort']) ? $_SESSION['media_file_sort'] : null; | 
|---|
| 69 |  | 
|---|
| 70 | $popup = (integer) !empty($_GET['popup']); | 
|---|
| 71 |  | 
|---|
| 72 | $page_url = 'media.php?popup='.$popup.'&post_id='.$post_id; | 
|---|
| 73 |  | 
|---|
| 74 | if ($popup) { | 
|---|
| 75 | $open_f = array('dcPage','openPopup'); | 
|---|
| 76 | $close_f = array('dcPage','closePopup'); | 
|---|
| 77 | } else { | 
|---|
| 78 | $open_f = array('dcPage','open'); | 
|---|
| 79 | $close_f = create_function('',"dcPage::helpBlock('core_media'); dcPage::close();"); | 
|---|
| 80 | } | 
|---|
| 81 |  | 
|---|
| 82 | $core_media_writable = false; | 
|---|
| 83 | try { | 
|---|
| 84 | $core->media = new dcMedia($core); | 
|---|
| 85 | if ($file_sort) { | 
|---|
| 86 | $core->media->setFileSort($file_sort); | 
|---|
| 87 | } | 
|---|
| 88 | $core->media->chdir($d); | 
|---|
| 89 | $core->media->getDir(); | 
|---|
| 90 | $core_media_writable = $core->media->writable(); | 
|---|
| 91 | $dir =& $core->media->dir; | 
|---|
| 92 | if  (!$core_media_writable) { | 
|---|
| 93 | //        throw new Exception('you do not have sufficient permissions to write to this folder: '); | 
|---|
| 94 | } | 
|---|
| 95 | } catch (Exception $e) { | 
|---|
| 96 | $core->error->add($e->getMessage()); | 
|---|
| 97 | } | 
|---|
| 98 |  | 
|---|
| 99 | # Zip download | 
|---|
| 100 | if (!empty($_GET['zipdl']) && $core->auth->check('media_admin',$core->blog->id)) | 
|---|
| 101 | { | 
|---|
| 102 | try | 
|---|
| 103 | { | 
|---|
| 104 | @set_time_limit(300); | 
|---|
| 105 | $fp = fopen('php://output','wb'); | 
|---|
| 106 | $zip = new fileZip($fp); | 
|---|
| 107 | $zip->addExclusion('#(^|/).(.*?)_(m|s|sq|t).jpg$#'); | 
|---|
| 108 | $zip->addDirectory($core->media->root.'/'.$d,'',true); | 
|---|
| 109 |  | 
|---|
| 110 | header('Content-Disposition: attachment;filename='.($d ? $d : 'media').'.zip'); | 
|---|
| 111 | header('Content-Type: application/x-zip'); | 
|---|
| 112 | $zip->write(); | 
|---|
| 113 | unset($zip); | 
|---|
| 114 | exit; | 
|---|
| 115 | } | 
|---|
| 116 | catch (Exception $e) | 
|---|
| 117 | { | 
|---|
| 118 | $core->error->add($e->getMessage()); | 
|---|
| 119 | } | 
|---|
| 120 | } | 
|---|
| 121 |  | 
|---|
| 122 | # New directory | 
|---|
| 123 | if ($dir && !empty($_POST['newdir'])) | 
|---|
| 124 | { | 
|---|
| 125 | try { | 
|---|
| 126 | $core->media->makeDir($_POST['newdir']); | 
|---|
| 127 | http::redirect($page_url.'&d='.rawurlencode($d).'&mkdok=1'); | 
|---|
| 128 | } catch (Exception $e) { | 
|---|
| 129 | $core->error->add($e->getMessage()); | 
|---|
| 130 | } | 
|---|
| 131 | } | 
|---|
| 132 |  | 
|---|
| 133 | # Adding a file | 
|---|
| 134 | if ($dir && !empty($_FILES['upfile'])) { | 
|---|
| 135 | // only one file per request : @see option singleFileUploads in admin/js/jsUpload/jquery.fileupload | 
|---|
| 136 | $upfile = array('name' => $_FILES['upfile']['name'][0], | 
|---|
| 137 | 'type' => $_FILES['upfile']['type'][0], | 
|---|
| 138 | 'tmp_name' => $_FILES['upfile']['tmp_name'][0], | 
|---|
| 139 | 'error' => $_FILES['upfile']['error'][0], | 
|---|
| 140 | 'size' => $_FILES['upfile']['size'][0] | 
|---|
| 141 | ); | 
|---|
| 142 |  | 
|---|
| 143 | if (!empty($_SERVER['HTTP_X_REQUESTED_WITH'])) { | 
|---|
| 144 | header('Content-type: application/json'); | 
|---|
| 145 | $message = array(); | 
|---|
| 146 |  | 
|---|
| 147 | try { | 
|---|
| 148 | files::uploadStatus($upfile); | 
|---|
| 149 | $new_file_id = $core->media->uploadFile($upfile['tmp_name'], $upfile['name']); | 
|---|
| 150 |  | 
|---|
| 151 | $message['files'][] = array('name' => $upfile['name'], | 
|---|
| 152 | 'size' => $upfile['size'], | 
|---|
| 153 | 'html' => mediaItemLine($core->media->getFile($new_file_id), 1) | 
|---|
| 154 | ); | 
|---|
| 155 | } catch (Exception $e) { | 
|---|
| 156 | $message['files'][] = array('name' => $upfile['name'], | 
|---|
| 157 | 'size' => $upfile['size'], | 
|---|
| 158 | 'error' => $e->getMessage() | 
|---|
| 159 | ); | 
|---|
| 160 | } | 
|---|
| 161 | echo json_encode($message); | 
|---|
| 162 | exit(); | 
|---|
| 163 | } else { | 
|---|
| 164 | try { | 
|---|
| 165 | files::uploadStatus($upfile); | 
|---|
| 166 |  | 
|---|
| 167 | $f_title = (isset($_POST['upfiletitle']) ? $_POST['upfiletitle'] : ''); | 
|---|
| 168 | $f_private = (isset($_POST['upfilepriv']) ? $_POST['upfilepriv'] : false); | 
|---|
| 169 |  | 
|---|
| 170 | $core->media->uploadFile($upfile['tmp_name'], $upfile['name'], $f_title, $f_private); | 
|---|
| 171 | http::redirect($page_url.'&d='.rawurlencode($d).'&upok=1'); | 
|---|
| 172 | } catch (Exception $e) { | 
|---|
| 173 | $core->error->add($e->getMessage()); | 
|---|
| 174 | } | 
|---|
| 175 | } | 
|---|
| 176 | } | 
|---|
| 177 |  | 
|---|
| 178 | # Removing item | 
|---|
| 179 | if ($dir && !empty($_POST['rmyes']) && !empty($_POST['remove'])) | 
|---|
| 180 | { | 
|---|
| 181 | $_POST['remove'] = rawurldecode($_POST['remove']); | 
|---|
| 182 |  | 
|---|
| 183 | try { | 
|---|
| 184 | $core->media->removeItem($_POST['remove']); | 
|---|
| 185 | http::redirect($page_url.'&d='.rawurlencode($d).'&rmfok=1'); | 
|---|
| 186 | } catch (Exception $e) { | 
|---|
| 187 | $core->error->add($e->getMessage()); | 
|---|
| 188 | } | 
|---|
| 189 | } | 
|---|
| 190 |  | 
|---|
| 191 | # Rebuild directory | 
|---|
| 192 | if ($dir && $core->auth->isSuperAdmin() && !empty($_POST['rebuild'])) | 
|---|
| 193 | { | 
|---|
| 194 | try { | 
|---|
| 195 | $core->media->rebuild($d); | 
|---|
| 196 | http::redirect($page_url.'&d='.rawurlencode($d).'&rebuildok=1'); | 
|---|
| 197 | } catch (Exception $e) { | 
|---|
| 198 | $core->error->add($e->getMessage()); | 
|---|
| 199 | } | 
|---|
| 200 | } | 
|---|
| 201 |  | 
|---|
| 202 | # DISPLAY confirm page for rmdir & rmfile | 
|---|
| 203 | if ($dir && !empty($_GET['remove']) && empty($_GET['noconfirm'])) | 
|---|
| 204 | { | 
|---|
| 205 | call_user_func($open_f,__('Media manager'),'', | 
|---|
| 206 | dcPage::breadcrumb( | 
|---|
| 207 | array( | 
|---|
| 208 | html::escapeHTML($core->blog->name) => '', | 
|---|
| 209 | __('Media manager') => '', | 
|---|
| 210 | '<span class="page-title">'.__('confirm removal').'</span>' => '' | 
|---|
| 211 | ),!$popup) | 
|---|
| 212 | ); | 
|---|
| 213 |  | 
|---|
| 214 | echo | 
|---|
| 215 | '<form action="'.html::escapeURL($page_url).'" method="post">'. | 
|---|
| 216 | '<p>'.sprintf(__('Are you sure you want to remove %s?'), | 
|---|
| 217 | html::escapeHTML($_GET['remove'])).'</p>'. | 
|---|
| 218 | '<p><input type="submit" value="'.__('Cancel').'" /> '. | 
|---|
| 219 | '   <input type="submit" name="rmyes" value="'.__('Yes').'" />'. | 
|---|
| 220 | form::hidden('d',$d). | 
|---|
| 221 | $core->formNonce(). | 
|---|
| 222 | form::hidden('remove',html::escapeHTML($_GET['remove'])).'</p>'. | 
|---|
| 223 | '</form>'; | 
|---|
| 224 |  | 
|---|
| 225 | call_user_func($close_f); | 
|---|
| 226 | exit; | 
|---|
| 227 | } | 
|---|
| 228 |  | 
|---|
| 229 | /* DISPLAY Main page | 
|---|
| 230 | -------------------------------------------------------- */ | 
|---|
| 231 | $core->auth->user_prefs->addWorkspace('interface'); | 
|---|
| 232 | $user_ui_enhanceduploader = $core->auth->user_prefs->interface->enhanceduploader; | 
|---|
| 233 |  | 
|---|
| 234 | if (!isset($core->media)) { | 
|---|
| 235 | $breadcrumb = dcPage::breadcrumb( | 
|---|
| 236 | array( | 
|---|
| 237 | html::escapeHTML($core->blog->name) => '', | 
|---|
| 238 | '<span class="page-title">'.__('Media manager').'</span>' => '' | 
|---|
| 239 | ),!$popup); | 
|---|
| 240 | } else { | 
|---|
| 241 | $breadcrumb_media = $core->media->breadCrumb(html::escapeURL($page_url).'&d=%s','<span class="page-title">%s</span>'); | 
|---|
| 242 | if ($breadcrumb_media == '') { | 
|---|
| 243 | $breadcrumb = dcPage::breadcrumb( | 
|---|
| 244 | array( | 
|---|
| 245 | html::escapeHTML($core->blog->name) => '', | 
|---|
| 246 | '<span class="page-title">'.__('Media manager').'</span>' => '' | 
|---|
| 247 | ),!$popup); | 
|---|
| 248 | } else { | 
|---|
| 249 | $breadcrumb = dcPage::breadcrumb( | 
|---|
| 250 | array( | 
|---|
| 251 | html::escapeHTML($core->blog->name) => '', | 
|---|
| 252 | __('Media manager') => html::escapeURL($page_url.'&d='), | 
|---|
| 253 | $breadcrumb_media => '' | 
|---|
| 254 | ),!$popup); | 
|---|
| 255 | } | 
|---|
| 256 | } | 
|---|
| 257 |  | 
|---|
| 258 | call_user_func($open_f,__('Media manager'), | 
|---|
| 259 | dcPage::jsLoad('js/_media.js'). | 
|---|
| 260 | ($core_media_writable ? dcPage::jsUpload(array('d='.$d)) : ''), | 
|---|
| 261 | $breadcrumb | 
|---|
| 262 | ); | 
|---|
| 263 |  | 
|---|
| 264 | if (!$core_media_writable) { | 
|---|
| 265 | dcPage::warning(__('You do not have sufficient permissions to write to this folder.')); | 
|---|
| 266 | } | 
|---|
| 267 |  | 
|---|
| 268 | if (!empty($_GET['mkdok'])) { | 
|---|
| 269 | dcPage::success(__('Directory has been successfully created.')); | 
|---|
| 270 | } | 
|---|
| 271 |  | 
|---|
| 272 | if (!empty($_GET['upok'])) { | 
|---|
| 273 | dcPage::success(__('Files have been successfully uploaded.')); | 
|---|
| 274 | } | 
|---|
| 275 |  | 
|---|
| 276 | if (!empty($_GET['rmfok'])) { | 
|---|
| 277 | dcPage::success(__('File has been successfully removed.')); | 
|---|
| 278 | } | 
|---|
| 279 |  | 
|---|
| 280 | if (!empty($_GET['rmdok'])) { | 
|---|
| 281 | dcPage::success(__('Directory has been successfully removed.')); | 
|---|
| 282 | } | 
|---|
| 283 |  | 
|---|
| 284 | if (!empty($_GET['rebuildok'])) { | 
|---|
| 285 | dcPage::success(__('Directory has been successfully rebuilt.')); | 
|---|
| 286 | } | 
|---|
| 287 |  | 
|---|
| 288 | if (!empty($_GET['unzipok'])) { | 
|---|
| 289 | dcPage::success(__('Zip file has been successfully extracted.')); | 
|---|
| 290 | } | 
|---|
| 291 |  | 
|---|
| 292 | if (!$dir) { | 
|---|
| 293 | call_user_func($close_f); | 
|---|
| 294 | exit; | 
|---|
| 295 | } | 
|---|
| 296 |  | 
|---|
| 297 | if ($post_id) { | 
|---|
| 298 | echo '<p class="form-note info">'.sprintf(__('Choose a file to attach to entry %s by clicking on %s.'), | 
|---|
| 299 | '<a href="'.$core->getPostAdminURL($post_type,$post_id).'">'.html::escapeHTML($post_title).'</a>', | 
|---|
| 300 | '<img src="images/plus.png" alt="'.__('Attach this file to entry').'" />').'</p>'; | 
|---|
| 301 | } | 
|---|
| 302 | if ($popup) { | 
|---|
| 303 | echo '<p class="form-note info">'.sprintf(__('Choose a file to insert into entry by clicking on %s.'), | 
|---|
| 304 | '<img src="images/plus.png" alt="'.__('Attach this file to entry').'" />').'</p>'; | 
|---|
| 305 | } | 
|---|
| 306 |  | 
|---|
| 307 |  | 
|---|
| 308 | $items = array_values(array_merge($dir['dirs'],$dir['files'])); | 
|---|
| 309 | echo '<div class="media-list">'; | 
|---|
| 310 | if (count($items) == 0) | 
|---|
| 311 | { | 
|---|
| 312 | echo '<p>'.__('No file.').'</p>'; | 
|---|
| 313 | } | 
|---|
| 314 | else | 
|---|
| 315 | { | 
|---|
| 316 | $pager = new pager($page,count($items),$nb_per_page,10); | 
|---|
| 317 | $pager->html_prev = __($pager->html_prev); | 
|---|
| 318 | $pager->html_next = __($pager->html_next); | 
|---|
| 319 |  | 
|---|
| 320 | echo | 
|---|
| 321 | '<form action="media.php" method="get">'. | 
|---|
| 322 | '<p><label for="file_sort" class="classic">'.__('Sort files:').'</label> '. | 
|---|
| 323 | form::combo('file_sort',$sort_combo,$file_sort). | 
|---|
| 324 | form::hidden(array('popup'),$popup). | 
|---|
| 325 | form::hidden(array('post_id'),$post_id). | 
|---|
| 326 | '<input type="submit" value="'.__('Sort').'" /></p>'. | 
|---|
| 327 | '</form>'. | 
|---|
| 328 |  | 
|---|
| 329 | '<p class="pagination">'.__('Page(s)').' : '.$pager->getLinks().'</p>'; | 
|---|
| 330 |  | 
|---|
| 331 | for ($i=$pager->index_start, $j=0; $i<=$pager->index_end; $i++, $j++) | 
|---|
| 332 | { | 
|---|
| 333 | echo mediaItemLine($items[$i],$j); | 
|---|
| 334 | } | 
|---|
| 335 |  | 
|---|
| 336 | echo | 
|---|
| 337 | '<p class="clear pagination">'.__('Page(s)').' : '.$pager->getLinks().'</p>'; | 
|---|
| 338 | } | 
|---|
| 339 | if (!isset($pager)) { | 
|---|
| 340 | echo | 
|---|
| 341 | '<p class="clear"></p>'; | 
|---|
| 342 | } | 
|---|
| 343 | echo | 
|---|
| 344 | '</div>'; | 
|---|
| 345 |  | 
|---|
| 346 | if ($core_media_writable) | 
|---|
| 347 | { | 
|---|
| 348 | echo | 
|---|
| 349 | '<h3 class="hidden">'.sprintf(__('In %s:'),($d == '' ? '“'.__('Media manager').'”' : '“'.$d.'”')).'</h3>'. | 
|---|
| 350 | '<div class="two-boxes odd fieldset">'; | 
|---|
| 351 |  | 
|---|
| 352 | if ($user_ui_enhanceduploader) { | 
|---|
| 353 | echo | 
|---|
| 354 | '<div class="enhanced_uploader">'; | 
|---|
| 355 | } else { | 
|---|
| 356 | echo | 
|---|
| 357 | '<div>'; | 
|---|
| 358 | } | 
|---|
| 359 |  | 
|---|
| 360 | echo | 
|---|
| 361 | '<h4>'.__('Add files').'</h4>'. | 
|---|
| 362 | '<p>'.__('Please take care to publish media that you own and that are not protected by copyright.').'</p>'. | 
|---|
| 363 | '<p class="max-sizer form-note info"> '.__('Maximum file size allowed:').' '.files::size(DC_MAX_UPLOAD_SIZE).'</p>'. | 
|---|
| 364 | '<form id="fileupload" action="'.html::escapeURL($page_url).'" method="post" enctype="multipart/form-data" aria-disabled="false">'. | 
|---|
| 365 | '<p>'.form::hidden(array('MAX_FILE_SIZE'),DC_MAX_UPLOAD_SIZE). | 
|---|
| 366 | $core->formNonce().'</p>'. | 
|---|
| 367 | '<div class="fileupload-ctrl"><p class="queue-message"></p><ul class="files"></ul></div>'; | 
|---|
| 368 |  | 
|---|
| 369 | echo | 
|---|
| 370 | '<div class="fileupload-buttonbar clear">'; | 
|---|
| 371 |  | 
|---|
| 372 | echo | 
|---|
| 373 | '<p><label for="upfile">'.'<span class="add-label one-file">'.__('Choose file').'</span>'.'</label>'. | 
|---|
| 374 | '<button class="button choose_files">'.__('Choose files').'</button>'. | 
|---|
| 375 | '<input type="file" id="upfile" name="upfile[]"'.($user_ui_enhanceduploader?' multiple="mutiple"':'').' data-url="'.html::escapeURL($page_url).'" /></p>'; | 
|---|
| 376 |  | 
|---|
| 377 | echo | 
|---|
| 378 | '<p class="one-file"><label for="upfiletitle">'.__('Title:').'</label>'.form::field(array('upfiletitle','upfiletitle'),35,255).'</p>'. | 
|---|
| 379 | '<p class="one-file"><label for="upfilepriv" class="classic">'.__('Private').'</label> '. | 
|---|
| 380 | form::checkbox(array('upfilepriv','upfilepriv'),1).'</p>'; | 
|---|
| 381 |  | 
|---|
| 382 | if (!$user_ui_enhanceduploader) { | 
|---|
| 383 | echo | 
|---|
| 384 | '<p class="one-file form-help info">'.__('To send several files at the same time, you can activate the enhanced uploader in'). | 
|---|
| 385 | ' <a href="preferences.php?tab=user-options">'.__('My preferences').'</a></p>'; | 
|---|
| 386 | } | 
|---|
| 387 |  | 
|---|
| 388 | echo | 
|---|
| 389 | '<p class="clear"><button class="button clean">'.__('Refresh').'</button>'. | 
|---|
| 390 | '<input class="button cancel one-file" type="reset" value="'.__('Clear all').'"/>'. | 
|---|
| 391 | '<input class="button start" type="submit" value="'.__('Upload').'"/></p>'. | 
|---|
| 392 | '</div>'; | 
|---|
| 393 |  | 
|---|
| 394 | echo | 
|---|
| 395 | '<p style="clear:both;">'.form::hidden(array('d'),$d).'</p>'. | 
|---|
| 396 | '</form>'. | 
|---|
| 397 | '</div>'. | 
|---|
| 398 | '</div>'; | 
|---|
| 399 | } | 
|---|
| 400 |  | 
|---|
| 401 | $core_media_archivable = $core->auth->check('media_admin',$core->blog->id) && | 
|---|
| 402 | !(count($items) == 0 || (count($items) == 1 && $items[0]->parent)); | 
|---|
| 403 |  | 
|---|
| 404 | if ($core_media_writable || $core_media_archivable) { | 
|---|
| 405 |  | 
|---|
| 406 | echo '<div class="two-boxes even fieldset">'; | 
|---|
| 407 |  | 
|---|
| 408 | # Create directory | 
|---|
| 409 | if ($core_media_writable) | 
|---|
| 410 | { | 
|---|
| 411 | echo | 
|---|
| 412 | '<form action="'.html::escapeURL($page_url).'" method="post">'. | 
|---|
| 413 | '<div id="new-dir-f">'. | 
|---|
| 414 | '<h4>'.__('Create new directory').'</h4>'. | 
|---|
| 415 | $core->formNonce(). | 
|---|
| 416 | '<p><label for="newdir">'.__('Directory Name:').'</label>'. | 
|---|
| 417 | form::field(array('newdir','newdir'),35,255).'</p>'. | 
|---|
| 418 | '<p><input type="submit" value="'.__('Create').'" />'. | 
|---|
| 419 | form::hidden(array('d'),html::escapeHTML($d)).'</p>'. | 
|---|
| 420 | '</div>'. | 
|---|
| 421 | '</form>'; | 
|---|
| 422 | } | 
|---|
| 423 |  | 
|---|
| 424 | # Get zip directory | 
|---|
| 425 | if ($core_media_archivable) | 
|---|
| 426 | { | 
|---|
| 427 | echo | 
|---|
| 428 | '<h4>'.__('Backup content').'</h4>'. | 
|---|
| 429 | '<p>'.__('Compress this directory with its content as a zip file and download it.').'</p>'. | 
|---|
| 430 | '<p><a class="button submit" href="'.html::escapeURL($page_url).'&zipdl=1">'. | 
|---|
| 431 | __('Download').'</a></p>'; | 
|---|
| 432 | } | 
|---|
| 433 |  | 
|---|
| 434 | echo '</div>'; | 
|---|
| 435 | } | 
|---|
| 436 |  | 
|---|
| 437 | # Empty remove form (for javascript actions) | 
|---|
| 438 | echo | 
|---|
| 439 | '<form id="media-remove-hide" action="'.html::escapeURL($page_url).'" method="post" class="hidden">'. | 
|---|
| 440 | '<div>'. | 
|---|
| 441 | form::hidden('rmyes',1).form::hidden('d',html::escapeHTML($d)). | 
|---|
| 442 | form::hidden('remove',''). | 
|---|
| 443 | $core->formNonce(). | 
|---|
| 444 | '</div>'. | 
|---|
| 445 | '</form>'; | 
|---|
| 446 |  | 
|---|
| 447 | call_user_func($close_f); | 
|---|
| 448 |  | 
|---|
| 449 | /* ----------------------------------------------------- */ | 
|---|
| 450 | function mediaItemLine($f,$i) | 
|---|
| 451 | { | 
|---|
| 452 | global $core, $page_url, $popup, $post_id; | 
|---|
| 453 |  | 
|---|
| 454 | $fname = $f->basename; | 
|---|
| 455 |  | 
|---|
| 456 | $class = 'media-item media-col-'.($i%2); | 
|---|
| 457 |  | 
|---|
| 458 | if ($f->d) { | 
|---|
| 459 | $link = html::escapeURL($page_url).'&d='.html::sanitizeURL($f->relname); | 
|---|
| 460 | if ($f->parent) { | 
|---|
| 461 | $fname = '..'; | 
|---|
| 462 | $class .= ' media-folder-up'; | 
|---|
| 463 | } else { | 
|---|
| 464 | $class .= ' media-folder'; | 
|---|
| 465 | } | 
|---|
| 466 | } else { | 
|---|
| 467 | $link = | 
|---|
| 468 | 'media_item.php?id='.$f->media_id.'&popup='.$popup.'&post_id='.$post_id; | 
|---|
| 469 | } | 
|---|
| 470 |  | 
|---|
| 471 | $res = | 
|---|
| 472 | '<div class="'.$class.'"><a class="media-icon media-link" href="'.$link.'">'. | 
|---|
| 473 | '<img src="'.$f->media_icon.'" alt="" /></a>'. | 
|---|
| 474 | '<ul>'. | 
|---|
| 475 | '<li><a class="media-link" href="'.$link.'">'.$fname.'</a></li>'; | 
|---|
| 476 |  | 
|---|
| 477 | if (!$f->d) { | 
|---|
| 478 | $res .= | 
|---|
| 479 | '<li>'.$f->media_title.'</li>'. | 
|---|
| 480 | '<li>'. | 
|---|
| 481 | $f->media_dtstr.' - '. | 
|---|
| 482 | files::size($f->size).' - '. | 
|---|
| 483 | '<a href="'.$f->file_url.'">'.__('open').'</a>'. | 
|---|
| 484 | '</li>'; | 
|---|
| 485 | } | 
|---|
| 486 |  | 
|---|
| 487 | $res .= '<li class="media-action"> '; | 
|---|
| 488 |  | 
|---|
| 489 | if ($post_id && !$f->d) { | 
|---|
| 490 | $res .= '<form action="post_media.php" method="post">'. | 
|---|
| 491 | '<input type="image" src="images/plus.png" alt="'.__('Attach this file to entry').'" '. | 
|---|
| 492 | 'title="'.__('Attach this file to entry').'" /> '. | 
|---|
| 493 | form::hidden('media_id',$f->media_id). | 
|---|
| 494 | form::hidden('post_id',$post_id). | 
|---|
| 495 | form::hidden('attach',1). | 
|---|
| 496 | $core->formNonce(). | 
|---|
| 497 | '</form>'; | 
|---|
| 498 | } | 
|---|
| 499 |  | 
|---|
| 500 | if ($popup && !$f->d) { | 
|---|
| 501 | $res .= '<a href="'.$link.'"><img src="images/plus.png" alt="'.__('Insert this file into entry').'" '. | 
|---|
| 502 | 'title="'.__('Insert this file into entry').'" /></a> '; | 
|---|
| 503 | } | 
|---|
| 504 |  | 
|---|
| 505 | if ($f->del) { | 
|---|
| 506 | $res .= '<a class="media-remove" '. | 
|---|
| 507 | 'href="'.html::escapeURL($page_url).'&d='. | 
|---|
| 508 | rawurlencode($GLOBALS['d']).'&remove='.rawurlencode($f->basename).'">'. | 
|---|
| 509 | '<img src="images/trash.png" alt="'.__('Delete').'" title="'.__('delete').'" /></a>'; | 
|---|
| 510 | } | 
|---|
| 511 |  | 
|---|
| 512 | $res .= '</li>'; | 
|---|
| 513 |  | 
|---|
| 514 | if ($f->type == 'audio/mpeg3') { | 
|---|
| 515 | $res .= '<li>'.dcMedia::mp3player($f->file_url,'index.php?pf=player_mp3.swf').'</li>'; | 
|---|
| 516 | } | 
|---|
| 517 |  | 
|---|
| 518 | $res .= '</ul></div>'; | 
|---|
| 519 |  | 
|---|
| 520 | return $res; | 
|---|
| 521 | } | 
|---|
| 522 | ?> | 
|---|