Skip to content
This repository has been archived by the owner on Oct 18, 2023. It is now read-only.

Commit

Permalink
Drupal module namespacing (#93)
Browse files Browse the repository at this point in the history
  • Loading branch information
miromichalicka authored and csibar committed Oct 18, 2018
1 parent d2ae78b commit 4b5affe
Show file tree
Hide file tree
Showing 444 changed files with 39 additions and 39 deletions.
19 changes: 19 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,25 @@ For module installation and configuration please follow [Acquia Knowledgebase](
https://docs.acquia.com/commerce/install/modules
).

### Users

In Acquia Commerce Manager, there are two types of user accounts. Regular
drupal users and external users that log in against an ecommerce backend.
By default it will be drupal users, but you can enable external users by going
to /admin/commerce/config/commerce-users and enabling "Use E-Comm Sessions".
After that setting is enabled, it will bring up three additional fields to
configure where your login form, registration form, and logout page are
located.

The login form will sign a user in using the ecommerce backend to authenticate
the username and password, and if authenticated, return an access token that
will be sent along with all user requests.

The registration form will create the account in the ecommerce backend and
immediately log the user in.

The logout page handles forgetting the users access token.

## Contributing
Issues and contributions are welcomed on our [GitHub](
https://github.com/acquia/commerce-manager
Expand Down
6 changes: 6 additions & 0 deletions acquia_commercemanager.info.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
name: Acquia Commerce Manager
type: module
description: This module lays the foundation to use the Acquia Commerce Connector Service.
core: 8.x
package: Commerce
hidden: true
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "acquia/commerce-manager",
"name": "drupal/acquia_commercemanager",
"description": "This project provides the ability to use the Acquia Commerce Connector.",
"type": "drupal-module",
"license": "GPL-2.0+",
Expand Down
25 changes: 0 additions & 25 deletions docs/README.md

This file was deleted.

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ description: This module provides cart functionality to the Acquia Commerce Conn
core: 8.x
package: Commerce
dependencies:
- acm:acm
- acm:acm_checkout
- acm:acm_sku
- acquia_commercemanager:acm
- acquia_commercemanager:acm_checkout
- acquia_commercemanager:acm_sku
- address:address
- key_value_field:key_value_field
- drupal:block
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ description: This module provides customer profile functionality to the Acquia C
core: 8.x
package: Commerce
dependencies:
- acm:acm
- acquia_commercemanager:acm
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@ description: Provides configurable error messaging for API exceptions.
core: 8.x
package: Commerce
dependencies:
- acm:acm
- acquia_commercemanager:acm
configure: acm_exception.settings
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@ description: This module provides payment functionality to the Acquia Commerce C
core: 8.x
package: Commerce
dependencies:
- acm:acm
- acm:acm_checkout
- acquia_commercemanager:acm
- acquia_commercemanager:acm_checkout
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@ package: Commerce
dependencies:
- drupal:node
- drupal:views
- acm:acm
- acm:acm_sku
- acquia_commercemanager:acm
- acquia_commercemanager:acm_sku
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@ description: This module provides Promotions functionality to the Acquia Commerc
core: 8.x
package: Commerce
dependencies:
- acm:acm_sku
- acquia_commercemanager:acm_sku
- field_group:field_group
Loading

0 comments on commit 4b5affe

Please sign in to comment.