You are here

function soundcloudfield_elements in SoundCloud field 6

Implementation of FAPI hook_elements().

File

./soundcloudfield.module, line 138
SoundCloud CCK field.

Code

function soundcloudfield_elements() {
  return array(
    'soundcloud_url' => array(
      // widget name
      '#input' => TRUE,
      '#columns' => array(
        'embed',
      ),
      '#delta' => 0,
      '#process' => array(
        'soundcloudfield_process',
      ),
    ),
  );
}