function ad_ui_strongarm in Advertisement 7.3
Implements hook_strongarm().
File
- modules/
ad_ui/ ad_ui.strongarm.inc, line 10 - ad_ui.strongarm.inc
Code
function ad_ui_strongarm() {
$export = array();
$strongarm = new stdClass();
$strongarm->disabled = FALSE;
/* Edit this to true to make a default strongarm disabled initially */
$strongarm->api_version = 1;
$strongarm->name = 'field_bundle_settings_advertisement__ad_image';
$strongarm->value = array(
'view_modes' => array(
'teaser' => array(
'custom_settings' => TRUE,
),
'displayed_ad' => array(
'custom_settings' => TRUE,
),
'token' => array(
'custom_settings' => FALSE,
),
),
'extra_fields' => array(
'form' => array(),
'display' => array(),
),
);
$export['field_bundle_settings_advertisement__ad_image'] = $strongarm;
$strongarm = new stdClass();
$strongarm->disabled = FALSE;
/* Edit this to true to make a default strongarm disabled initially */
$strongarm->api_version = 1;
$strongarm->name = 'field_bundle_settings_node__ad';
$strongarm->value = array(
'view_modes' => array(
'advertisement' => array(
'custom_settings' => FALSE,
),
'full' => array(
'custom_settings' => TRUE,
),
'teaser' => array(
'custom_settings' => FALSE,
),
'rss' => array(
'custom_settings' => FALSE,
),
'diff_standard' => array(
'custom_settings' => FALSE,
),
'revision' => array(
'custom_settings' => FALSE,
),
'advertisement_display' => array(
'custom_settings' => TRUE,
),
'advertisement_preview' => array(
'custom_settings' => TRUE,
),
),
'extra_fields' => array(
'form' => array(
'title' => array(
'weight' => '-5',
),
),
'display' => array(),
),
);
$export['field_bundle_settings_node__ad'] = $strongarm;
$strongarm = new stdClass();
$strongarm->disabled = FALSE;
/* Edit this to true to make a default strongarm disabled initially */
$strongarm->api_version = 1;
$strongarm->name = 'menu_options_ad';
$strongarm->value = array();
$export['menu_options_ad'] = $strongarm;
$strongarm = new stdClass();
$strongarm->disabled = FALSE;
/* Edit this to true to make a default strongarm disabled initially */
$strongarm->api_version = 1;
$strongarm->name = 'menu_parent_ad';
$strongarm->value = 'main-menu:0';
$export['menu_parent_ad'] = $strongarm;
$strongarm = new stdClass();
$strongarm->disabled = FALSE;
/* Edit this to true to make a default strongarm disabled initially */
$strongarm->api_version = 1;
$strongarm->name = 'node_options_ad';
$strongarm->value = array(
0 => 'status',
);
$export['node_options_ad'] = $strongarm;
$strongarm = new stdClass();
$strongarm->disabled = FALSE;
/* Edit this to true to make a default strongarm disabled initially */
$strongarm->api_version = 1;
$strongarm->name = 'node_preview_ad';
$strongarm->value = '1';
$export['node_preview_ad'] = $strongarm;
$strongarm = new stdClass();
$strongarm->disabled = FALSE;
/* Edit this to true to make a default strongarm disabled initially */
$strongarm->api_version = 1;
$strongarm->name = 'node_submitted_ad';
$strongarm->value = 1;
$export['node_submitted_ad'] = $strongarm;
return $export;
}