updated navigation menu

This commit is contained in:
Bachir Soussi Chiadmi
2015-05-11 16:05:53 +02:00
parent 19a68f970e
commit 8d141a61e0
3 changed files with 1204 additions and 6 deletions

View File

@@ -92,5 +92,64 @@ function materio_administration_strongarm() {
$strongarm->value = 0;
$export['admin_menu_tweak_tabs'] = $strongarm;
$strongarm = new stdClass();
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
$strongarm->api_version = 1;
$strongarm->name = 'content_type_extras_title_hide_breve';
$strongarm->value = 0;
$export['content_type_extras_title_hide_breve'] = $strongarm;
$strongarm = new stdClass();
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
$strongarm->api_version = 1;
$strongarm->name = 'content_type_extras_title_hide_company';
$strongarm->value = 0;
$export['content_type_extras_title_hide_company'] = $strongarm;
$strongarm = new stdClass();
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
$strongarm->api_version = 1;
$strongarm->name = 'content_type_extras_title_hide_didactique';
$strongarm->value = 0;
$export['content_type_extras_title_hide_didactique'] = $strongarm;
$strongarm = new stdClass();
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
$strongarm->api_version = 1;
$strongarm->name = 'content_type_extras_title_hide_materiau';
$strongarm->value = 0;
$export['content_type_extras_title_hide_materiau'] = $strongarm;
$strongarm = new stdClass();
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
$strongarm->api_version = 1;
$strongarm->name = 'title_node';
$strongarm->value = array(
'auto_attach' => array(
'title' => 0,
),
'hide_label' => array(
'page' => 'page',
'entity' => 'entity',
),
);
$export['title_node'] = $strongarm;
$strongarm = new stdClass();
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
$strongarm->api_version = 1;
$strongarm->name = 'title_taxonomy_term';
$strongarm->value = array(
'auto_attach' => array(
'name' => 'name',
'description' => 'description',
),
'hide_label' => array(
'page' => 'page',
'entity' => 'entity',
),
);
$export['title_taxonomy_term'] = $strongarm;
return $export;
}