You are here

comment_upload.inc in File (Field) Paths 6

Same filename and directory in other branches
  1. 5 modules/comment_upload.inc

Provides FileField Paths integration with the Comment Upload module.

File

modules/comment_upload.inc
View source
<?php

/**
 * @file
 * Provides FileField Paths integration with the Comment Upload module.
 */

/**
 * Implements hook_filefield_paths_form_alter().
 */
function comment_upload_filefield_paths_form_alter(&$form, &$ffp) {
  if (isset($form['#id']) && $form['#id'] == 'node-type-form') {
    $ffp['comment_upload'] = array(
      'type' => $form['#node_type']->type,
      'form_path' => &$form['comment']['ffp_comment_upload'],
      'file_path_default' => '',
    );

    // Create path settings fieldset
    $ffp['comment_upload']['form_path'] = array(
      '#type' => 'fieldset',
      '#title' => t('Comment Upload Path settings'),
      '#collapsible' => TRUE,
      '#collapsed' => TRUE,
      '#weight' => $form['comment']['comment_upload']['#weight'] + 1,
    );
    $ffp['comment_upload']['form_path']['file_path'] = array(
      '#type' => 'textfield',
      '#title' => t('File path'),
      '#description' => t('Optional subdirectory within the "%dir" directory where files will be stored. Do not include trailing slash.', array(
        '%dir' => variable_get('file_directory_path', 'files'),
      )),
      '#tree' => TRUE,
    );
  }
}

/**
 * Implements hook_filefield_paths_form_submit().
 */
function comment_upload_filefield_paths_form_submit(&$form_state, &$ffp) {
  if (isset($form_state['values']['form_id']) && $form_state['values']['form_id'] == 'node_type_form') {
    $ffp['comment_upload'] = array(
      'type' => $form_state['values']['type'],
    );
  }
}

/**
 * Implements hook_filefield_paths_get_fields().
 */
function comment_upload_filefield_paths_get_fields(&$node, &$ffp) {
  if (is_object($node) && isset($node->cid) && isset($node->files)) {
    foreach ($node->files as &$file) {
      $ffp['#files'][] = array(
        'field' => &$file,
        'module' => 'comment_upload',
        'name' => 'comment_upload',
        'new' => $file['new'],
      );
      $ffp['#types']['comment_upload'] = TRUE;
    }
  }
}

/**
 * Implements hook_filefield_paths_batch_update().
 */
function comment_upload_filefield_paths_batch_update($field, $type, &$objects) {
  $result = db_query("SELECT DISTINCT(cu.cid) FROM {comment_upload} cu LEFT JOIN {node} n\n    ON cu.nid = n.nid WHERE n.type = '%s'", $type);

  // Build array of Comment IDs.
  while ($comment = db_fetch_object($result)) {
    $objects[] = $comment->cid;
  }
}

/**
 * Implements hook_filefield_paths_update().
 */
function comment_upload_filefield_paths_update($oid, $field) {
  $comment = _comment_load($oid);
  comment_invoke_comment($comment, 'view');

  // Flag files for update.
  if (isset($comment->files)) {
    foreach ($comment->files as &$file) {
      $file['new'] = TRUE;
    }
  }

  // Set Form ID.
  $comment->form_id = 'comment_form';

  // Process Comment.
  filefield_paths_comment((array) $comment, 'update');
}

/**
 * Implements hook_comment().
 */
function filefield_paths_comment($a1, $op) {
  switch ($op) {
    case 'insert':
    case 'update':
      $update = new stdClass();
      $update->node = FALSE;
      $node = node_load($a1['nid']);
      $object = new stdClass();
      $object->form_id = $a1['form_id'];
      $object->type = $node->type;
      $object->files = $a1['files'];
      $object->cid = $a1['cid'];
      if (($ffp = filefield_paths_get_fields($object)) == FALSE) {
        break;
      }

      // Process files
      foreach ($ffp['#files'] as &$file) {
        foreach (module_implements('filefield_paths_process_file') as $module) {
          $function = "{$module}_filefield_paths_process_file";
          $function($file['new'], $file, $ffp['#settings'][$file['name']], $node, $update);
        }
      }
      break;
  }
}

Functions

Namesort descending Description
comment_upload_filefield_paths_batch_update Implements hook_filefield_paths_batch_update().
comment_upload_filefield_paths_form_alter Implements hook_filefield_paths_form_alter().
comment_upload_filefield_paths_form_submit Implements hook_filefield_paths_form_submit().
comment_upload_filefield_paths_get_fields Implements hook_filefield_paths_get_fields().
comment_upload_filefield_paths_update Implements hook_filefield_paths_update().
filefield_paths_comment Implements hook_comment().