You are here

filefield.inc in File (Field) Paths 6.2

Same filename and directory in other branches
  1. 5 modules/filefield.inc
  2. 6 modules/filefield.inc

FileField module integration.

File

modules/filefield.inc
View source
<?php

/**
 * @file
 * FileField module integration.
 */

/**
 * Implements hook_filefield_paths_api().
 */
function filefield_filefield_paths_api() {
  return array(
    'api' => 2,
  );
}

/**
 * Implements hook_filefield_paths_tokens().
 */
function filefield_filefield_paths_field_tokens() {
  return TRUE;
}

/**
 * Implements hook_file_delete().
 */
function filefield_paths_file_delete($file) {
  foreach (_filefield_paths_includes() as $include) {
    if (function_exists($function = "_filefield_paths_include_{$include}_file_delete")) {
      $function($file);
    }
  }
}

Functions

Namesort descending Description
filefield_filefield_paths_api Implements hook_filefield_paths_api().
filefield_filefield_paths_field_tokens Implements hook_filefield_paths_tokens().
filefield_paths_file_delete Implements hook_file_delete().