You are here

function social_content_flickr_create_instances in Social Content 7.2

Returns a structured array defining the instances for this content type.

Return value

array An associative array specifying the instances we wish to add to our new node type.

1 call to social_content_flickr_create_instances()
social_content_flickr_install in modules/flickr/social_content_flickr.install
Implements hook_install().

File

modules/flickr/social_content_flickr.fields.inc, line 262
Fields for the `Flickr` content type.

Code

function social_content_flickr_create_instances() {
  return array(
    'field_flickr_picture' => array(
      'label' => 'Picture',
      'widget' => array(
        'weight' => '31',
        'type' => 'image_image',
        'module' => 'image',
        'active' => 1,
        'settings' => array(
          'progress_indicator' => 'throbber',
          'preview_image_style' => 'thumbnail',
        ),
      ),
      'settings' => array(
        'file_directory' => 'social_content/flickr',
        'file_extensions' => 'png gif jpg jpeg',
        'max_filesize' => '',
        'max_resolution' => '',
        'min_resolution' => '',
        'alt_field' => 0,
        'title_field' => 0,
        'default_image' => 0,
        'user_register_form' => FALSE,
      ),
      'display' => array(
        'default' => array(
          'label' => 'above',
          'type' => 'image',
          'settings' => array(
            'image_style' => '',
            'image_link' => '',
          ),
          'module' => 'image',
          'weight' => 1,
        ),
        'teaser' => array(
          'type' => 'hidden',
          'label' => 'above',
          'settings' => array(),
          'weight' => 0,
        ),
      ),
      'required' => 0,
      'description' => '',
      'field_name' => 'field_flickr_picture',
      'entity_type' => 'node',
      'bundle' => 'flickr',
      'deleted' => '0',
    ),
    'field_flickr_link' => array(
      'label' => 'Flickr link',
      'widget' => array(
        'weight' => '33',
        'type' => 'link_field',
        'module' => 'link',
        'active' => 0,
        'settings' => array(),
      ),
      'settings' => array(
        'validate_url' => 0,
        'url' => 0,
        'title' => 'none',
        'title_value' => '',
        'title_maxlength' => '128',
        'display' => array(
          'url_cutoff' => '80',
        ),
        'attributes' => array(
          'target' => '_blank',
          'rel' => '',
          'class' => '',
          'configurable_title' => 0,
          'title' => '',
        ),
        'rel_remove' => 'default',
        'enable_tokens' => 1,
        'user_register_form' => FALSE,
      ),
      'display' => array(
        'default' => array(
          'label' => 'above',
          'type' => 'link_default',
          'settings' => array(),
          'module' => 'link',
          'weight' => 3,
        ),
        'teaser' => array(
          'type' => 'hidden',
          'label' => 'above',
          'settings' => array(),
          'weight' => 0,
        ),
      ),
      'required' => 0,
      'description' => '',
      'default_value' => NULL,
      'field_name' => 'field_flickr_link',
      'entity_type' => 'node',
      'bundle' => 'flickr',
      'deleted' => '0',
    ),
    'field_flickr_external_id' => array(
      'label' => 'External id',
      'widget' => array(
        'weight' => '32',
        'type' => 'text_textfield',
        'module' => 'text',
        'active' => 1,
        'settings' => array(
          'size' => '60',
        ),
      ),
      'settings' => array(
        'text_processing' => '0',
        'user_register_form' => FALSE,
      ),
      'display' => array(
        'default' => array(
          'label' => 'above',
          'type' => 'text_default',
          'settings' => array(),
          'module' => 'text',
          'weight' => 2,
        ),
        'teaser' => array(
          'type' => 'hidden',
          'label' => 'above',
          'settings' => array(),
          'weight' => 0,
        ),
      ),
      'required' => 0,
      'description' => '',
      'default_value' => NULL,
      'field_name' => 'field_flickr_external_id',
      'entity_type' => 'node',
      'bundle' => 'flickr',
      'deleted' => '0',
    ),
  );
}