Skip to content

Commit

Permalink
adding default pathauto pattern
Browse files Browse the repository at this point in the history
  • Loading branch information
jrearick committed Oct 15, 2014
1 parent a9f212d commit c097d56
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
1 change: 1 addition & 0 deletions luggage_contrib.info
Original file line number Diff line number Diff line change
Expand Up @@ -42,4 +42,5 @@ features[variable][] = admin_menu_position_fixed
features[variable][] = admin_menu_tweak_modules
features[variable][] = admin_menu_tweak_permissions
features[variable][] = admin_menu_tweak_tabs
features[variable][] = pathauto_node_pattern
github = https://raw.github.com/isubit/luggage_contrib/master/luggage_contrib.info
7 changes: 7 additions & 0 deletions luggage_contrib.strongarm.inc
Original file line number Diff line number Diff line change
Expand Up @@ -77,5 +77,12 @@ function luggage_contrib_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 = 'pathauto_node_pattern';
$strongarm->value = '[node:title]';
$export['pathauto_node_pattern'] = $strongarm;

return $export;
}

0 comments on commit c097d56

Please sign in to comment.