added workflow strongarm variable to admin feature

This commit is contained in:
Bachir Soussi Chiadmi
2015-06-03 17:12:25 +02:00
parent 3ffbc09c10
commit 6ceb7d6534
5 changed files with 220 additions and 0 deletions

View File

@@ -151,5 +151,120 @@ function materio_administration_strongarm() {
);
$export['title_taxonomy_term'] = $strongarm;
$strongarm = new stdClass();
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
$strongarm->api_version = 1;
$strongarm->name = 'workflow_access_priority';
$strongarm->value = '0';
$export['workflow_access_priority'] = $strongarm;
$strongarm = new stdClass();
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
$strongarm->api_version = 1;
$strongarm->name = 'workflow_breve';
$strongarm->value = array(
0 => 'node',
);
$export['workflow_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 = 'workflow_company';
$strongarm->value = array(
0 => 'node',
);
$export['workflow_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 = 'workflow_contact_operationnel';
$strongarm->value = array(
0 => 'node',
);
$export['workflow_contact_operationnel'] = $strongarm;
$strongarm = new stdClass();
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
$strongarm->api_version = 1;
$strongarm->name = 'workflow_didactique';
$strongarm->value = array(
0 => 'node',
);
$export['workflow_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 = 'workflow_faq';
$strongarm->value = array(
0 => 'node',
);
$export['workflow_faq'] = $strongarm;
$strongarm = new stdClass();
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
$strongarm->api_version = 1;
$strongarm->name = 'workflow_looping_embed_video';
$strongarm->value = array(
0 => 'node',
);
$export['workflow_looping_embed_video'] = $strongarm;
$strongarm = new stdClass();
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
$strongarm->api_version = 1;
$strongarm->name = 'workflow_materiau';
$strongarm->value = array(
0 => 'node',
);
$export['workflow_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 = 'workflow_page';
$strongarm->value = array(
0 => 'node',
);
$export['workflow_page'] = $strongarm;
$strongarm = new stdClass();
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
$strongarm->api_version = 1;
$strongarm->name = 'workflow_panel';
$strongarm->value = array(
0 => 'node',
);
$export['workflow_panel'] = $strongarm;
$strongarm = new stdClass();
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
$strongarm->api_version = 1;
$strongarm->name = 'workflow_product';
$strongarm->value = array(
0 => 'node',
);
$export['workflow_product'] = $strongarm;
$strongarm = new stdClass();
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
$strongarm->api_version = 1;
$strongarm->name = 'workflow_simplenews';
$strongarm->value = array(
0 => 'node',
);
$export['workflow_simplenews'] = $strongarm;
$strongarm = new stdClass();
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
$strongarm->api_version = 1;
$strongarm->name = 'workflow_webform';
$strongarm->value = array(
0 => 'node',
);
$export['workflow_webform'] = $strongarm;
return $export;
}