"1"); } } /** * Implements hook_views_api(). */ function mkbh_visioner_views_api($module = NULL, $api = NULL) { return array("api" => "3.0"); } /** * Implements hook_image_default_styles(). */ function mkbh_visioner_image_default_styles() { $styles = array(); // Exported image style: 125x140. $styles['125x140'] = array( 'label' => '125x140', 'effects' => array( 17 => array( 'name' => 'image_scale_and_crop', 'data' => array( 'width' => 125, 'height' => 140, ), 'weight' => 1, ), ), ); return $styles; }