entity_background_parallax.install in Entity background 7
Install file entity background parallax.
File
module/entity_background_parallax/entity_background_parallax.installView source
<?php
/**
* @file
* Install file entity background parallax.
*/
/**
* Implements hook_install().
*/
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,
));
}
Functions
Name | Description |
---|---|
entity_background_parallax_install | Implements hook_install(). |