You are here

public function SocialContentPinterest::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/pinterest/social_content_pinterest.class.inc, line 50
Social Content Pinterest class.

Class

SocialContentPinterest
@file Social Content Pinterest class.

Code

public function fields() {
  return array(
    'id' => 'field_pinterest_guid',
    'created' => 'created',
    'description' => 'body',
    'link' => 'field_pinterest_link',
    'title' => 'title',
    'picture' => 'field_pinterest_picture',
  ) + parent::fields();
}