You are here

public function SocialContentSoundCloud::fields in Social Content 7.2

Fields to save from the row.

Get fields to save.

Return value

array List of fields to save.

Overrides SocialContent::fields

File

modules/soundcloud/social_content_soundcloud.class.inc, line 107
Social Content SoundCloud class.

Class

SocialContentSoundCloud
@file Social Content SoundCloud class.

Code

public function fields() {
  return array(
    'id' => 'field_soundcloud_external_id',
    'created' => 'created',
    'user_id' => '',
    'user_name' => '',
    'user_link' => '',
    'caption' => 'body',
    'link' => 'field_soundcloud_link',
    'track' => 'field_soundcloud_track',
  ) + parent::fields();
}