Mercurial > hg > rr-repo
comparison sites/all/modules/flexslider/flexslider_example/flexslider_example.strongarm.inc @ 2:b74b41bb73f0
-- Google analytics module
author | danieleb <danielebarchiesi@me.com> |
---|---|
date | Thu, 22 Aug 2013 17:22:54 +0100 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
1:67ce89da90df | 2:b74b41bb73f0 |
---|---|
1 <?php | |
2 /** | |
3 * @file | |
4 * flexslider_example.strongarm.inc | |
5 */ | |
6 | |
7 /** | |
8 * Implements hook_strongarm(). | |
9 */ | |
10 function flexslider_example_strongarm() { | |
11 $export = array(); | |
12 | |
13 $strongarm = new stdClass(); | |
14 $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ | |
15 $strongarm->api_version = 1; | |
16 $strongarm->name = 'field_bundle_settings_node__flexslider_example'; | |
17 $strongarm->value = array( | |
18 'view_modes' => array( | |
19 'teaser' => array( | |
20 'custom_settings' => TRUE, | |
21 ), | |
22 'full' => array( | |
23 'custom_settings' => FALSE, | |
24 ), | |
25 'rss' => array( | |
26 'custom_settings' => FALSE, | |
27 ), | |
28 'token' => array( | |
29 'custom_settings' => FALSE, | |
30 ), | |
31 ), | |
32 'extra_fields' => array( | |
33 'form' => array( | |
34 'title' => array( | |
35 'weight' => '-5', | |
36 ), | |
37 ), | |
38 'display' => array(), | |
39 ), | |
40 ); | |
41 $export['field_bundle_settings_node__flexslider_example'] = $strongarm; | |
42 | |
43 return $export; | |
44 } |