You are here

function social_content_vk_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_vk_create_instances()
social_content_vk_install in modules/vk/social_content_vk.install
Implements hook_install().

File

modules/vk/social_content_vk.fields.inc, line 186
Fields for the `VK` content type.

Code

function social_content_vk_create_instances() {
  return array(
    'field_vk_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/vk',
        '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_vk_picture',
      'entity_type' => 'node',
      'bundle' => 'vk',
      'deleted' => '0',
    ),
    'field_vk_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_vk_external_id',
      'entity_type' => 'node',
      'bundle' => 'vk',
      'deleted' => '0',
    ),
  );
}