3); } elseif ($module == "strongarm" && $api == "strongarm") { return array("version" => 1); } } /** * Implementation of hook_imagecache_default_presets(). */ function atrium_imagecache_default_presets() { $items = array( 'fileview' => array( 'presetname' => 'fileview', 'actions' => array( '0' => array( 'weight' => '0', 'module' => 'imagecache', 'action' => 'imagecache_deprecated_scale', 'data' => array( 'fit' => 'inside', 'width' => '60', 'height' => '40', ), ), ), ), 'user-m' => array( 'presetname' => 'user-m', 'actions' => array( '0' => array( 'weight' => '0', 'module' => 'imagecache', 'action' => 'imagecache_scale_and_crop', 'data' => array( 'width' => '60', 'height' => '60', ), ), ), ), 'user-s' => array( 'presetname' => 'user-s', 'actions' => array( '0' => array( 'weight' => '0', 'module' => 'imagecache', 'action' => 'imagecache_scale_and_crop', 'data' => array( 'width' => '30', 'height' => '30', ), ), ), ), ); return $items; } /** * Implementation of hook_views_api(). */ function atrium_views_api() { return array( 'api' => '2', ); }