updated pricing page

This commit is contained in:
Bachir Soussi Chiadmi
2015-06-15 17:34:54 +02:00
parent f9144db774
commit d107702f86
5 changed files with 479 additions and 373 deletions

View File

@@ -8,6 +8,10 @@ dependencies[] = admin_menu_toolbar
dependencies[] = ctools
dependencies[] = elysia_cron
dependencies[] = features
dependencies[] = login_destination
dependencies[] = logintoboggan
dependencies[] = logintoboggan_rules
dependencies[] = logintoboggan_variable
dependencies[] = materio_user
dependencies[] = menu
dependencies[] = role_delegation
@@ -87,6 +91,19 @@ features[variable][] = content_type_extras_title_hide_breve
features[variable][] = content_type_extras_title_hide_company
features[variable][] = content_type_extras_title_hide_didactique
features[variable][] = content_type_extras_title_hide_materiau
features[variable][] = login_destination_immediate_redirect
features[variable][] = login_destination_preserve_destination
features[variable][] = logintoboggan_confirm_email_at_registration
features[variable][] = logintoboggan_immediate_login_on_register
features[variable][] = logintoboggan_login_successful_message
features[variable][] = logintoboggan_login_with_email
features[variable][] = logintoboggan_minimum_password_length
features[variable][] = logintoboggan_override_destination_parameter
features[variable][] = logintoboggan_pre_auth_role
features[variable][] = logintoboggan_purge_unvalidated_user_interval
features[variable][] = logintoboggan_redirect_on_confirm
features[variable][] = logintoboggan_redirect_on_register
features[variable][] = logintoboggan_unified_login
features[variable][] = title_node
features[variable][] = title_taxonomy_term
features[variable][] = workflow_access_priority

View File

@@ -120,6 +120,97 @@ function materio_administration_strongarm() {
$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 = 'logintoboggan_confirm_email_at_registration';
$strongarm->value = '0';
$export['logintoboggan_confirm_email_at_registration'] = $strongarm;
$strongarm = new stdClass();
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
$strongarm->api_version = 1;
$strongarm->name = 'logintoboggan_immediate_login_on_register';
$strongarm->value = 1;
$export['logintoboggan_immediate_login_on_register'] = $strongarm;
$strongarm = new stdClass();
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
$strongarm->api_version = 1;
$strongarm->name = 'logintoboggan_login_successful_message';
$strongarm->value = '0';
$export['logintoboggan_login_successful_message'] = $strongarm;
$strongarm = new stdClass();
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
$strongarm->api_version = 1;
$strongarm->name = 'logintoboggan_login_with_email';
$strongarm->value = '1';
$export['logintoboggan_login_with_email'] = $strongarm;
$strongarm = new stdClass();
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
$strongarm->api_version = 1;
$strongarm->name = 'logintoboggan_minimum_password_length';
$strongarm->value = '0';
$export['logintoboggan_minimum_password_length'] = $strongarm;
$strongarm = new stdClass();
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
$strongarm->api_version = 1;
$strongarm->name = 'logintoboggan_override_destination_parameter';
$strongarm->value = 0;
$export['logintoboggan_override_destination_parameter'] = $strongarm;
$strongarm = new stdClass();
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
$strongarm->api_version = 1;
$strongarm->name = 'logintoboggan_pre_auth_role';
$strongarm->value = '9';
$export['logintoboggan_pre_auth_role'] = $strongarm;
$strongarm = new stdClass();
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
$strongarm->api_version = 1;
$strongarm->name = 'logintoboggan_purge_unvalidated_user_interval';
$strongarm->value = '604800';
$export['logintoboggan_purge_unvalidated_user_interval'] = $strongarm;
$strongarm = new stdClass();
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
$strongarm->api_version = 1;
$strongarm->name = 'logintoboggan_redirect_on_confirm';
$strongarm->value = 'user/%uid/edit';
$export['logintoboggan_redirect_on_confirm'] = $strongarm;
$strongarm = new stdClass();
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
$strongarm->api_version = 1;
$strongarm->name = 'logintoboggan_redirect_on_register';
$strongarm->value = '';
$export['logintoboggan_redirect_on_register'] = $strongarm;
$strongarm = new stdClass();
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
$strongarm->api_version = 1;
$strongarm->name = 'logintoboggan_unified_login';
$strongarm->value = 0;
$export['logintoboggan_unified_login'] = $strongarm;
$strongarm = new stdClass();
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
$strongarm->api_version = 1;
$strongarm->name = 'login_destination_immediate_redirect';
$strongarm->value = 1;
$export['login_destination_immediate_redirect'] = $strongarm;
$strongarm = new stdClass();
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
$strongarm->api_version = 1;
$strongarm->name = 'login_destination_preserve_destination';
$strongarm->value = 1;
$export['login_destination_preserve_destination'] = $strongarm;
$strongarm = new stdClass();
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
$strongarm->api_version = 1;