recreated features
This commit is contained in:
@@ -185,7 +185,9 @@ function materio_subscriptions_user_default_permissions() {
|
||||
// Exported permission: 'delete payments'.
|
||||
$permissions['delete payments'] = array(
|
||||
'name' => 'delete payments',
|
||||
'roles' => array(),
|
||||
'roles' => array(
|
||||
'root' => 'root',
|
||||
),
|
||||
'module' => 'uc_payment',
|
||||
);
|
||||
|
||||
@@ -219,7 +221,9 @@ function materio_subscriptions_user_default_permissions() {
|
||||
// Exported permission: 'manual payments'.
|
||||
$permissions['manual payments'] = array(
|
||||
'name' => 'manual payments',
|
||||
'roles' => array(),
|
||||
'roles' => array(
|
||||
'root' => 'root',
|
||||
),
|
||||
'module' => 'uc_payment',
|
||||
);
|
||||
|
||||
@@ -280,7 +284,10 @@ function materio_subscriptions_user_default_permissions() {
|
||||
// Exported permission: 'view payments'.
|
||||
$permissions['view payments'] = array(
|
||||
'name' => 'view payments',
|
||||
'roles' => array(),
|
||||
'roles' => array(
|
||||
'administrator' => 'administrator',
|
||||
'root' => 'root',
|
||||
),
|
||||
'module' => 'uc_payment',
|
||||
);
|
||||
|
||||
|
@@ -73,6 +73,7 @@ features[user_role][] = Adhérent
|
||||
features[user_role][] = Premium
|
||||
features[user_role][] = Utilisateur
|
||||
features[variable][] = date_format_uc_store
|
||||
features[variable][] = pathauto_taxonomy_term_catalog_pattern
|
||||
features[variable][] = uc_add_item_redirect
|
||||
features[variable][] = uc_address_fields
|
||||
features[variable][] = uc_address_fields_required
|
||||
|
@@ -17,6 +17,13 @@ function materio_subscriptions_strongarm() {
|
||||
$strongarm->value = 'm/d/Y';
|
||||
$export['date_format_uc_store'] = $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_taxonomy_term_catalog_pattern';
|
||||
$strongarm->value = '';
|
||||
$export['pathauto_taxonomy_term_catalog_pattern'] = $strongarm;
|
||||
|
||||
$strongarm = new stdClass();
|
||||
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
|
||||
$strongarm->api_version = 1;
|
||||
|
Reference in New Issue
Block a user