materio-base-legacy/sites/all/modules/features/materio_publications/materio_publications.strongarm.inc
2015-05-16 14:24:02 +02:00

59 lines
2.0 KiB
PHP

<?php
/**
* @file
* materio_publications.strongarm.inc
*/
/**
* Implements hook_strongarm().
*/
function materio_publications_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 = 'language_content_type_publication';
$strongarm->value = '4';
$export['language_content_type_publication'] = $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_publication';
$strongarm->value = array();
$export['menu_options_publication'] = $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_publication';
$strongarm->value = 'main-menu:0';
$export['menu_parent_publication'] = $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_publication';
$strongarm->value = array(
0 => 'status',
);
$export['node_options_publication'] = $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_publication';
$strongarm->value = '1';
$export['node_preview_publication'] = $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_publication';
$strongarm->value = 0;
$export['node_submitted_publication'] = $strongarm;
return $export;
}