summaryrefslogtreecommitdiff
path: root/sites/all/modules/media/modules/media_bulk_upload/includes/media_bulk_upload.pages.inc
blob: 41287ebb011f287da7c311aee6e746839be36262 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
<?php

/**
 * @file
 * Common pages for the Media Bulk Upload module.
 */

/**
 * Menu callback; Edit multiple files on the same page using multiform module.
 *
 * @todo When http://drupal.org/node/1227706 is fixed, filter the $files
 * array using file_access($file, 'edit').
 *
 * @see media_bulk_upload_file_operation_edit_multiple()
 */
function media_bulk_upload_file_page_edit_multiple($files) {
  if (empty($files)) {
    return MENU_ACCESS_DENIED;
  }

  $forms = array();
  foreach ($files as $file) {
    // To maintain unique form_ids, append the file id.
    $forms[] = array('media_edit_' . $file->fid, $file);
  }

  $form = call_user_func_array('multiform_get_form', $forms);
  $form['#attributes']['class'][] = 'media-bulk-upload-multiedit-form';

  // Improve the display of each file form.
  foreach (element_children($form['multiform']) as $key) {
    $fid = $form['multiform'][$key]['fid']['#value'];
    $file = $files[$fid];

    // Add the filename to each 'subform'.
    $title = t('<em>Edit @type</em> @title', array('@type' => $file->type, '@title' => $file->filename));
    $form['multiform'][$key]['#prefix'] = '<h2>' . $title . '</h2>';

    // Remove the 'replace file' functionality.
    $form['multiform'][$key]['replace_upload']['#access'] = FALSE;

    // Remove any actions.
    $form['multiform'][$key]['actions']['#access'] = FALSE;

    // Hide additional settings under a collapsible fieldset.
    $form['multiform'][$key]['settings'] = array(
      '#type' => 'fieldset',
      '#title' => t('Additional settings'),
      '#weight' => 99,
      '#collapsible' => TRUE,
      '#collapsed' => TRUE,
      // FAPI #collapsed and #collapsible not available in a render array.
      '#attached' => array(
        'js' => array(
          'misc/form.js',
          'misc/collapse.js',
        ),
      ),
      '#attributes' => array(
        'class' => array('collapsible', 'collapsed'),
      ),
    );

    $form['multiform'][$key]['settings']['additional_settings'] = $form['multiform'][$key]['additional_settings'];
    unset($form['multiform'][$key]['additional_settings']);
  }

  if (isset($form['buttons']['Delete'])) {
    $form['buttons']['Delete']['#access'] = FALSE;
  }

  // Add a cancel button at the bottom of the form.
  $form['buttons']['cancel'] = array(
    '#type' => 'link',
    '#title' => t('Cancel'),
    '#weight' => 50,
  );
  if (isset($_GET['destination'])) {
    $form['buttons']['cancel']['#href'] = $_GET['destination'];
  }
  else if (user_access('administer files')) {
    $form['buttons']['cancel']['#href'] = 'admin/content/file';
  }
  else {
    $form['buttons']['cancel']['#href'] = '<front>';
  }

  // Override the page title since each file form sets a title.
  drupal_set_title(t('Edit multiple files'));

  // Allow other modules to alter the form.
  drupal_alter('media_bulk_upload_edit_multiple_form', $form);

  return $form;
}