Skip to content
Snippets Groups Projects
Commit 9bb7704d authored by Kevin Paxman's avatar Kevin Paxman
Browse files

Add node_revision_delete content type-specific settings

parent 7df8ceed
No related branches found
No related tags found
No related merge requests found
......@@ -2,7 +2,6 @@ name = Project
description = Project content type
core = 7.x
package = uWaterloo Content Types
project = uw_ct_project
dependencies[] = better_formats
dependencies[] = context
dependencies[] = context_var
......@@ -22,6 +21,7 @@ dependencies[] = list
dependencies[] = menu
dependencies[] = node
dependencies[] = node_reference
dependencies[] = node_revision_delete
dependencies[] = options
dependencies[] = override_node_options
dependencies[] = scheduler
......@@ -113,6 +113,8 @@ features[variable][] = menu_options_uw_project
features[variable][] = menu_parent_uw_project
features[variable][] = node_options_uw_project
features[variable][] = node_preview_uw_project
features[variable][] = node_revision_delete_number_uw_project
features[variable][] = node_revision_delete_track_uw_project
features[variable][] = node_submitted_uw_project
features[variable][] = pathauto_node_uw_project_pattern
features[variable][] = pathauto_taxonomy_term_pattern
......
......@@ -21,7 +21,7 @@ function uw_ct_project_strongarm() {
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
$strongarm->api_version = 1;
$strongarm->name = 'comment_anonymous_uw_project';
$strongarm->value = 0;
$strongarm->value = '0';
$export['comment_anonymous_uw_project'] = $strongarm;
$strongarm = new stdClass();
......@@ -192,6 +192,20 @@ function uw_ct_project_strongarm() {
$strongarm->value = '1';
$export['node_preview_uw_project'] = $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_revision_delete_number_uw_project';
$strongarm->value = '50';
$export['node_revision_delete_number_uw_project'] = $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_revision_delete_track_uw_project';
$strongarm->value = 1;
$export['node_revision_delete_track_uw_project'] = $strongarm;
$strongarm = new stdClass();
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
$strongarm->api_version = 1;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment