[0] | 1 | <?php |
---|
| 2 | # -- BEGIN LICENSE BLOCK --------------------------------------- |
---|
| 3 | # |
---|
| 4 | # This file is part of Dotclear 2. |
---|
| 5 | # |
---|
[1179] | 6 | # Copyright (c) 2003-2013 Olivier Meunier & Association Dotclear |
---|
[0] | 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) { |
---|
[408] | 21 | $post = $core->blog->getPosts(array('post_id'=>$post_id,'post_type'=>'')); |
---|
[0] | 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 | |
---|
[1912] | 32 | $page = !empty($_GET['page']) ? max(1,(integer) $_GET['page']) : 1; |
---|
[0] | 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' |
---|
[1161] | 63 | ); |
---|
[0] | 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) { |
---|
[1725] | 93 | // throw new Exception('you do not have sufficient permissions to write to this folder: '); |
---|
[0] | 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 |
---|
[1159] | 134 | if ($dir && !empty($_FILES['upfile'])) { |
---|
| 135 | // only one file per request : @see option singleFileUploads in admin/js/jsUpload/jquery.fileupload |
---|
[1161] | 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 | ); |
---|
[1144] | 142 | |
---|
[1161] | 143 | if (!empty($_SERVER['HTTP_X_REQUESTED_WITH'])) { |
---|
| 144 | header('Content-type: application/json'); |
---|
| 145 | $message = array(); |
---|
[1144] | 146 | |
---|
[1161] | 147 | try { |
---|
| 148 | files::uploadStatus($upfile); |
---|
| 149 | $new_file_id = $core->media->uploadFile($upfile['tmp_name'], $upfile['name']); |
---|
[1144] | 150 | |
---|
[1161] | 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'], |
---|
[1162] | 157 | 'size' => $upfile['size'], |
---|
[1161] | 158 | 'error' => $e->getMessage() |
---|
| 159 | ); |
---|
| 160 | } |
---|
| 161 | echo json_encode($message); |
---|
| 162 | exit(); |
---|
| 163 | } else { |
---|
| 164 | try { |
---|
| 165 | files::uploadStatus($upfile); |
---|
[1159] | 166 | |
---|
[1161] | 167 | $f_title = (isset($_POST['upfiletitle']) ? $_POST['upfiletitle'] : ''); |
---|
| 168 | $f_private = (isset($_POST['upfilepriv']) ? $_POST['upfilepriv'] : false); |
---|
[1159] | 169 | |
---|
[1161] | 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 | } |
---|
[0] | 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 |
---|
[947] | 203 | if ($dir && !empty($_GET['remove']) && empty($_GET['noconfirm'])) |
---|
[0] | 204 | { |
---|
[1358] | 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 | ); |
---|
[0] | 213 | |
---|
| 214 | echo |
---|
| 215 | '<form action="'.html::escapeURL($page_url).'" method="post">'. |
---|
| 216 | '<p>'.sprintf(__('Are you sure you want to remove %s?'), |
---|
[1161] | 217 | html::escapeHTML($_GET['remove'])).'</p>'. |
---|
[557] | 218 | '<p><input type="submit" value="'.__('Cancel').'" /> '. |
---|
| 219 | ' <input type="submit" name="rmyes" value="'.__('Yes').'" />'. |
---|
[0] | 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 | -------------------------------------------------------- */ |
---|
[240] | 231 | $core->auth->user_prefs->addWorkspace('interface'); |
---|
| 232 | $user_ui_enhanceduploader = $core->auth->user_prefs->interface->enhanceduploader; |
---|
| 233 | |
---|
[1358] | 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 | |
---|
[0] | 258 | call_user_func($open_f,__('Media manager'), |
---|
| 259 | dcPage::jsLoad('js/_media.js'). |
---|
[1358] | 260 | ($core_media_writable ? dcPage::jsUpload(array('d='.$d)) : ''), |
---|
| 261 | $breadcrumb |
---|
[240] | 262 | ); |
---|
[0] | 263 | |
---|
[1725] | 264 | if (!$core_media_writable) { |
---|
| 265 | dcPage::warning(__('You do not have sufficient permissions to write to this folder.')); |
---|
| 266 | } |
---|
| 267 | |
---|
[0] | 268 | if (!empty($_GET['mkdok'])) { |
---|
[1553] | 269 | dcPage::success(__('Directory has been successfully created.')); |
---|
[0] | 270 | } |
---|
| 271 | |
---|
| 272 | if (!empty($_GET['upok'])) { |
---|
[1553] | 273 | dcPage::success(__('Files have been successfully uploaded.')); |
---|
[0] | 274 | } |
---|
| 275 | |
---|
| 276 | if (!empty($_GET['rmfok'])) { |
---|
[1553] | 277 | dcPage::success(__('File has been successfully removed.')); |
---|
[0] | 278 | } |
---|
| 279 | |
---|
| 280 | if (!empty($_GET['rmdok'])) { |
---|
[1553] | 281 | dcPage::success(__('Directory has been successfully removed.')); |
---|
[0] | 282 | } |
---|
| 283 | |
---|
| 284 | if (!empty($_GET['rebuildok'])) { |
---|
[1553] | 285 | dcPage::success(__('Directory has been successfully rebuilt.')); |
---|
[0] | 286 | } |
---|
| 287 | |
---|
| 288 | if (!empty($_GET['unzipok'])) { |
---|
[1553] | 289 | dcPage::success(__('Zip file has been successfully extracted.')); |
---|
[0] | 290 | } |
---|
| 291 | |
---|
| 292 | if (!$dir) { |
---|
| 293 | call_user_func($close_f); |
---|
| 294 | exit; |
---|
| 295 | } |
---|
| 296 | |
---|
| 297 | if ($post_id) { |
---|
[1605] | 298 | echo '<p class="form-note info">'.sprintf(__('Choose a file to attach to entry %s by clicking on %s.'), |
---|
[1161] | 299 | '<a href="'.$core->getPostAdminURL($post_type,$post_id).'">'.html::escapeHTML($post_title).'</a>', |
---|
[1605] | 300 | '<img src="images/plus.png" alt="'.__('Attach this file to entry').'" />').'</p>'; |
---|
[0] | 301 | } |
---|
| 302 | if ($popup) { |
---|
[2006] | 303 | echo '<div class="info"><p>'.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></div>'; |
---|
[0] | 305 | } |
---|
| 306 | |
---|
| 307 | |
---|
| 308 | $items = array_values(array_merge($dir['dirs'],$dir['files'])); |
---|
[1160] | 309 | echo '<div class="media-list">'; |
---|
[0] | 310 | if (count($items) == 0) |
---|
| 311 | { |
---|
[1982] | 312 | echo |
---|
| 313 | '<p>'.__('No file.').'</p>'. |
---|
| 314 | '<div class="files-group"></div>'; // need for jsUpload to append new media |
---|
[0] | 315 | } |
---|
| 316 | else |
---|
| 317 | { |
---|
[1926] | 318 | $pager = new dcPager($page,count($items),$nb_per_page,10); |
---|
[0] | 319 | |
---|
| 320 | echo |
---|
| 321 | '<form action="media.php" method="get">'. |
---|
[1399] | 322 | '<p><label for="file_sort" class="classic">'.__('Sort files:').'</label> '. |
---|
| 323 | form::combo('file_sort',$sort_combo,$file_sort). |
---|
[0] | 324 | form::hidden(array('popup'),$popup). |
---|
| 325 | form::hidden(array('post_id'),$post_id). |
---|
[557] | 326 | '<input type="submit" value="'.__('Sort').'" /></p>'. |
---|
[0] | 327 | '</form>'. |
---|
[1926] | 328 | $pager->getLinks(); |
---|
[1855] | 329 | |
---|
| 330 | $dgroup = ''; |
---|
| 331 | $fgroup = ''; |
---|
| 332 | for ($i=$pager->index_start, $j=0; $i<=$pager->index_end; $i++,$j++) |
---|
[0] | 333 | { |
---|
[1855] | 334 | if ($items[$i]->d) { |
---|
| 335 | $dgroup .= mediaItemLine($items[$i],$j); |
---|
| 336 | } else { |
---|
| 337 | $fgroup .= mediaItemLine($items[$i],$j); |
---|
| 338 | } |
---|
[0] | 339 | } |
---|
[1855] | 340 | echo |
---|
| 341 | ($dgroup != '' ? '<div class="folders-group">'.$dgroup.'</div>' : ''). |
---|
[1952] | 342 | '<div class="files-group">'.$fgroup.'</div>'; |
---|
[0] | 343 | |
---|
[1926] | 344 | echo $pager->getLinks(); |
---|
[0] | 345 | } |
---|
[1162] | 346 | if (!isset($pager)) { |
---|
| 347 | echo |
---|
| 348 | '<p class="clear"></p>'; |
---|
| 349 | } |
---|
[1160] | 350 | echo |
---|
[1161] | 351 | '</div>'; |
---|
[1144] | 352 | |
---|
[1979] | 353 | echo |
---|
| 354 | '<div class="clearfix"><p class="info">'.sprintf(__('Current settings for medias and images are defined in %s'), |
---|
| 355 | '<a href="blog_pref.php#medias-settings">'.__('Blog parameters').'</a>').'</p></div>'; |
---|
| 356 | |
---|
| 357 | if ($core_media_writable || $core_media_archivable) { |
---|
| 358 | echo |
---|
| 359 | '<div class="vertical-separator">'. |
---|
| 360 | '<h3 class="out-of-screen-if-js">'.sprintf(__('In %s:'),($d == '' ? '“'.__('Media manager').'”' : '“'.$d.'”')).'</h3>'; |
---|
| 361 | } |
---|
| 362 | |
---|
| 363 | $core_media_archivable = $core->auth->check('media_admin',$core->blog->id) && |
---|
| 364 | !(count($items) == 0 || (count($items) == 1 && $items[0]->parent)); |
---|
| 365 | |
---|
| 366 | if ($core_media_writable || $core_media_archivable) { |
---|
| 367 | echo |
---|
| 368 | '<div class="two-boxes odd">'; |
---|
| 369 | |
---|
| 370 | # Create directory |
---|
| 371 | if ($core_media_writable) |
---|
| 372 | { |
---|
| 373 | echo |
---|
| 374 | '<form action="'.html::escapeURL($page_url).'" method="post" class="fieldset">'. |
---|
| 375 | '<div id="new-dir-f">'. |
---|
| 376 | '<h4 class="pretty-title">'.__('Create new directory').'</h4>'. |
---|
| 377 | $core->formNonce(). |
---|
| 378 | '<p><label for="newdir">'.__('Directory Name:').'</label>'. |
---|
| 379 | form::field(array('newdir','newdir'),35,255).'</p>'. |
---|
| 380 | '<p><input type="submit" value="'.__('Create').'" />'. |
---|
| 381 | form::hidden(array('d'),html::escapeHTML($d)).'</p>'. |
---|
| 382 | '</div>'. |
---|
| 383 | '</form>'; |
---|
| 384 | } |
---|
| 385 | |
---|
| 386 | # Get zip directory |
---|
| 387 | if ($core_media_archivable) |
---|
| 388 | { |
---|
| 389 | echo |
---|
| 390 | '<div class="fieldset">'. |
---|
| 391 | '<h4 class="pretty-title">'.sprintf(__('Backup content of %s'),($d == '' ? '“'.__('Media manager').'”' : '“'.$d.'”')).'</h4>'. |
---|
| 392 | '<p><a class="button submit" href="'.html::escapeURL($page_url).'&zipdl=1">'. |
---|
| 393 | __('Download zip file').'</a></p>'. |
---|
| 394 | '</div>'; |
---|
| 395 | } |
---|
| 396 | |
---|
| 397 | echo |
---|
| 398 | '</div>'; |
---|
| 399 | } |
---|
| 400 | |
---|
[0] | 401 | if ($core_media_writable) |
---|
| 402 | { |
---|
[1979] | 403 | echo |
---|
| 404 | '<div class="two-boxes fieldset">'; |
---|
[1161] | 405 | if ($user_ui_enhanceduploader) { |
---|
| 406 | echo |
---|
[1681] | 407 | '<div class="enhanced_uploader">'; |
---|
[1161] | 408 | } else { |
---|
| 409 | echo |
---|
[1681] | 410 | '<div>'; |
---|
[1161] | 411 | } |
---|
[1159] | 412 | |
---|
[1161] | 413 | echo |
---|
[1681] | 414 | '<h4>'.__('Add files').'</h4>'. |
---|
[1161] | 415 | '<p>'.__('Please take care to publish media that you own and that are not protected by copyright.').'</p>'. |
---|
[1519] | 416 | '<form id="fileupload" action="'.html::escapeURL($page_url).'" method="post" enctype="multipart/form-data" aria-disabled="false">'. |
---|
[1450] | 417 | '<p>'.form::hidden(array('MAX_FILE_SIZE'),DC_MAX_UPLOAD_SIZE). |
---|
| 418 | $core->formNonce().'</p>'. |
---|
| 419 | '<div class="fileupload-ctrl"><p class="queue-message"></p><ul class="files"></ul></div>'; |
---|
[1159] | 420 | |
---|
[1161] | 421 | echo |
---|
[1519] | 422 | '<div class="fileupload-buttonbar clear">'; |
---|
[1162] | 423 | |
---|
| 424 | echo |
---|
[1450] | 425 | '<p><label for="upfile">'.'<span class="add-label one-file">'.__('Choose file').'</span>'.'</label>'. |
---|
[1852] | 426 | '<button class="button choose_files">'.__('Choose files').'</button>'. |
---|
[1450] | 427 | '<input type="file" id="upfile" name="upfile[]"'.($user_ui_enhanceduploader?' multiple="mutiple"':'').' data-url="'.html::escapeURL($page_url).'" /></p>'; |
---|
[1159] | 428 | |
---|
[1161] | 429 | echo |
---|
[1854] | 430 | '<p class="max-sizer form-note"> '.__('Maximum file size allowed:').' '.files::size(DC_MAX_UPLOAD_SIZE).'</p>'; |
---|
| 431 | |
---|
| 432 | echo |
---|
[1450] | 433 | '<p class="one-file"><label for="upfiletitle">'.__('Title:').'</label>'.form::field(array('upfiletitle','upfiletitle'),35,255).'</p>'. |
---|
[1452] | 434 | '<p class="one-file"><label for="upfilepriv" class="classic">'.__('Private').'</label> '. |
---|
[1450] | 435 | form::checkbox(array('upfilepriv','upfilepriv'),1).'</p>'; |
---|
[1159] | 436 | |
---|
[1161] | 437 | if (!$user_ui_enhanceduploader) { |
---|
| 438 | echo |
---|
| 439 | '<p class="one-file form-help info">'.__('To send several files at the same time, you can activate the enhanced uploader in'). |
---|
| 440 | ' <a href="preferences.php?tab=user-options">'.__('My preferences').'</a></p>'; |
---|
| 441 | } |
---|
[1159] | 442 | |
---|
[1161] | 443 | echo |
---|
[1526] | 444 | '<p class="clear"><button class="button clean">'.__('Refresh').'</button>'. |
---|
[1183] | 445 | '<input class="button cancel one-file" type="reset" value="'.__('Clear all').'"/>'. |
---|
[1450] | 446 | '<input class="button start" type="submit" value="'.__('Upload').'"/></p>'. |
---|
[1161] | 447 | '</div>'; |
---|
[1159] | 448 | |
---|
[1161] | 449 | echo |
---|
[1526] | 450 | '<p style="clear:both;">'.form::hidden(array('d'),$d).'</p>'. |
---|
[1161] | 451 | '</form>'. |
---|
[1681] | 452 | '</div>'. |
---|
| 453 | '</div>'; |
---|
[1725] | 454 | } |
---|
[1450] | 455 | |
---|
[0] | 456 | # Empty remove form (for javascript actions) |
---|
| 457 | echo |
---|
[1681] | 458 | '<form id="media-remove-hide" action="'.html::escapeURL($page_url).'" method="post" class="hidden">'. |
---|
| 459 | '<div>'. |
---|
[0] | 460 | form::hidden('rmyes',1).form::hidden('d',html::escapeHTML($d)). |
---|
| 461 | form::hidden('remove',''). |
---|
| 462 | $core->formNonce(). |
---|
[1681] | 463 | '</div>'. |
---|
| 464 | '</form>'; |
---|
[0] | 465 | |
---|
[1979] | 466 | if ($core_media_writable || $core_media_archivable) { |
---|
| 467 | echo |
---|
| 468 | '</div>'; |
---|
| 469 | } |
---|
| 470 | |
---|
[0] | 471 | call_user_func($close_f); |
---|
| 472 | |
---|
| 473 | /* ----------------------------------------------------- */ |
---|
| 474 | function mediaItemLine($f,$i) |
---|
| 475 | { |
---|
| 476 | global $core, $page_url, $popup, $post_id; |
---|
| 477 | |
---|
| 478 | $fname = $f->basename; |
---|
| 479 | |
---|
[1849] | 480 | $class = 'media-item media-col-'.($i%2); |
---|
| 481 | |
---|
[0] | 482 | if ($f->d) { |
---|
| 483 | $link = html::escapeURL($page_url).'&d='.html::sanitizeURL($f->relname); |
---|
| 484 | if ($f->parent) { |
---|
| 485 | $fname = '..'; |
---|
[1849] | 486 | $class .= ' media-folder-up'; |
---|
| 487 | } else { |
---|
| 488 | $class .= ' media-folder'; |
---|
[0] | 489 | } |
---|
| 490 | } else { |
---|
| 491 | $link = |
---|
| 492 | 'media_item.php?id='.$f->media_id.'&popup='.$popup.'&post_id='.$post_id; |
---|
| 493 | } |
---|
| 494 | |
---|
| 495 | $res = |
---|
[1855] | 496 | '<div class="'.$class.'"><p><a class="media-icon media-link" href="'.$link.'">'. |
---|
| 497 | '<img src="'.$f->media_icon.'" alt="" />'.$fname.'</a></p>'; |
---|
| 498 | |
---|
| 499 | $lst = ''; |
---|
[0] | 500 | |
---|
| 501 | if (!$f->d) { |
---|
[1855] | 502 | $lst .= |
---|
[0] | 503 | '<li>'.$f->media_title.'</li>'. |
---|
| 504 | '<li>'. |
---|
| 505 | $f->media_dtstr.' - '. |
---|
| 506 | files::size($f->size).' - '. |
---|
| 507 | '<a href="'.$f->file_url.'">'.__('open').'</a>'. |
---|
| 508 | '</li>'; |
---|
| 509 | } |
---|
| 510 | |
---|
[1855] | 511 | $act = ''; |
---|
[0] | 512 | |
---|
| 513 | if ($post_id && !$f->d) { |
---|
[1855] | 514 | $act .= |
---|
| 515 | '<form action="post_media.php" method="post">'. |
---|
[0] | 516 | '<input type="image" src="images/plus.png" alt="'.__('Attach this file to entry').'" '. |
---|
| 517 | 'title="'.__('Attach this file to entry').'" /> '. |
---|
| 518 | form::hidden('media_id',$f->media_id). |
---|
| 519 | form::hidden('post_id',$post_id). |
---|
| 520 | form::hidden('attach',1). |
---|
| 521 | $core->formNonce(). |
---|
| 522 | '</form>'; |
---|
| 523 | } |
---|
| 524 | |
---|
| 525 | if ($popup && !$f->d) { |
---|
[1855] | 526 | $act .= '<a href="'.$link.'"><img src="images/plus.png" alt="'.__('Insert this file into entry').'" '. |
---|
[0] | 527 | 'title="'.__('Insert this file into entry').'" /></a> '; |
---|
| 528 | } |
---|
| 529 | |
---|
| 530 | if ($f->del) { |
---|
[1855] | 531 | $act .= '<a class="media-remove" '. |
---|
[0] | 532 | 'href="'.html::escapeURL($page_url).'&d='. |
---|
| 533 | rawurlencode($GLOBALS['d']).'&remove='.rawurlencode($f->basename).'">'. |
---|
[747] | 534 | '<img src="images/trash.png" alt="'.__('Delete').'" title="'.__('delete').'" /></a>'; |
---|
[0] | 535 | } |
---|
| 536 | |
---|
[1855] | 537 | $lst .= ($act != '' ? '<li class="media-action"> '.$act.'</li>' : ''); |
---|
[0] | 538 | |
---|
| 539 | if ($f->type == 'audio/mpeg3') { |
---|
[1855] | 540 | $lst .= '<li>'.dcMedia::mp3player($f->file_url,'index.php?pf=player_mp3.swf').'</li>'; |
---|
[0] | 541 | } |
---|
| 542 | |
---|
[1855] | 543 | $res .= ($lst != '' ? '<ul>'.$lst.'</ul>' : ''); |
---|
| 544 | |
---|
| 545 | $res .= '</div>'; |
---|
[0] | 546 | |
---|
| 547 | return $res; |
---|
| 548 | } |
---|
[1452] | 549 | ?> |
---|