forked from kalamuna/hot_primary_tout
-
Notifications
You must be signed in to change notification settings - Fork 0
/
hot_primary_tout.default_picture_mapping.inc
43 lines (40 loc) · 1.52 KB
/
hot_primary_tout.default_picture_mapping.inc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<?php
/**
* @file
* hot_primary_tout.default_picture_mapping.inc
*/
/**
* Implements hook_default_picture_mapping().
*/
function hot_primary_tout_default_picture_mapping() {
$export = array();
$picture_mapping = new stdClass();
$picture_mapping->disabled = FALSE; /* Edit this to true to make a default picture_mapping disabled initially */
$picture_mapping->api_version = 1;
$picture_mapping->machine_name = 'hot_primary_tout_3';
$picture_mapping->breakpoint_group = 'hot_primary_tout_3';
$picture_mapping->mapping = array(
'breakpoints.hot_primary_tout_3.screen-xxs' => array(
'1x' => 'hot_primary_tout_3_breakpoints_screen-xxs_1x',
'2x' => 'hot_primary_tout_3_breakpoints_screen-xxs_2x',
),
'breakpoints.hot_primary_tout_3.screen-xs' => array(
'1x' => 'hot_primary_tout_3_breakpoints_screen-xs_1x',
'2x' => 'hot_primary_tout_3_breakpoints_screen-xs_2x',
),
'breakpoints.hot_primary_tout_3.screen-sm' => array(
'1x' => 'hot_primary_tout_3_breakpoints_screen-sm_1x',
'2x' => 'hot_primary_tout_3_breakpoints_screen-sm_2x',
),
'breakpoints.hot_primary_tout_3.screen-md' => array(
'1x' => 'hot_primary_tout_3_breakpoints_screen-md_1x',
'2x' => 'hot_primary_tout_3_breakpoints_screen-md_2x',
),
'breakpoints.hot_primary_tout_3.screen-lg' => array(
'1x' => 'hot_primary_tout_3_breakpoints_screen-lg_1x',
'2x' => 'hot_primary_tout_3_breakpoints_screen-lg_2x',
),
);
$export['hot_primary_tout_3'] = $picture_mapping;
return $export;
}