You are here

function entity_background_parallax_install in Entity background 7

Implements hook_install().

File

module/entity_background_parallax/entity_background_parallax.install, line 11
Install file entity background parallax.

Code

function entity_background_parallax_install() {

  // Create image field.
  entity_background_add_field_image(EB_FC_ENTITY, EB_FIELD, EB_PARALLAX_IMAGE_FIELD, 'Image');

  // Create speed text field.
  entity_background_add_field_text(EB_FC_ENTITY, EB_FIELD, EB_PARALLAX_SPEED_FIELD, 'Speed');

  // Create field group.
  entity_background_create_bd_field_group('group_eb_parallax', 'Parallax', array(
    EB_PARALLAX_IMAGE_FIELD,
    EB_PARALLAX_SPEED_FIELD,
  ));
}