You are here

function ais_install in Adaptive Image Styles (ais) 7

Implements hook_install().

File

./ais.install, line 11
Install file for the threshold-ais module

Code

function ais_install() {
  $defaults = array(
    array(
      'name' => 'threshold-480',
      'size' => 480,
    ),
    array(
      'name' => 'threshold-768',
      'size' => 768,
    ),
    array(
      'name' => 'threshold-992',
      'size' => 992,
    ),
    array(
      'name' => 'threshold-1382',
      'size' => 1382,
    ),
  );
  variable_set("ais_adaptive_styles", $defaults);
}