You are here

function filefield_filefield_icon_sets in FileField 6.3

Implementation of hook_filefield_icon_sets().

Define a list of icon sets and directories that contain the icons.

File

./filefield.module, line 555
FileField: Defines a CCK file field type.

Code

function filefield_filefield_icon_sets() {
  return array(
    'default' => drupal_get_path('module', 'filefield') . '/icons',
  );
}