You are here

function bulk_photo_nodes_install in Bulk File Nodes 7

Implements hook_install().

File

./bulk_photo_nodes.install, line 10
Install, update and uninstall functions for the bulk_photo_nodes module.

Code

function bulk_photo_nodes_install() {
  $style = image_style_save(array(
    'name' => 'bulk_photo_nodes',
  ));
  $effect = array(
    'name' => 'image_scale',
    'data' => array(
      'width' => 150,
      'height' => 150,
      'upscale' => TRUE,
    ),
    'isid' => $style['isid'],
  );
  image_effect_save($effect);
}