You are here

function instagram_block_install in Instagram Block 7

File

./instagram_block.install, line 13
File to handle module operations performed when (un-)installing module.

Code

function instagram_block_install() {
  $user_block = array(
    'count' => '4',
    'width' => '100',
    'height' => '100',
    'img_resolution' => 'thumbnail',
  );
  $tag_block = array(
    'tag' => 'drupal',
    'count' => '4',
    'width' => '100',
    'height' => '100',
    'img_resolution' => 'thumbnail',
  );
  variable_set('instagram_block_user_block_settings', $user_block);
  variable_set('instagram_block_tag_block_settings', $tag_block);
}