├── .gitignore ├── README.txt ├── commerce.api.php ├── commerce.info ├── commerce.module ├── commerce_ui.info ├── commerce_ui.module ├── help └── README.txt ├── includes ├── commerce.currency.inc ├── commerce_ui.admin.inc └── views │ └── README.txt ├── modules ├── README.txt ├── cart │ ├── commerce_cart.api.php │ ├── commerce_cart.info │ ├── commerce_cart.info.inc │ ├── commerce_cart.module │ ├── commerce_cart.rules.inc │ ├── commerce_cart.rules_defaults.inc │ ├── includes │ │ ├── commerce_cart.checkout_pane.inc │ │ ├── commerce_cart.pages.inc │ │ └── views │ │ │ ├── commerce_cart.views.inc │ │ │ ├── commerce_cart.views_default.inc │ │ │ └── handlers │ │ │ └── commerce_cart_handler_field_add_to_cart_form.inc │ ├── tests │ │ └── commerce_cart.test │ └── theme │ │ ├── buttons.png │ │ ├── commerce-cart-block.tpl.php │ │ └── commerce_cart.css ├── checkout │ ├── commerce_checkout.api.php │ ├── commerce_checkout.info │ ├── commerce_checkout.install │ ├── commerce_checkout.js │ ├── commerce_checkout.module │ ├── commerce_checkout.rules.inc │ ├── commerce_checkout.rules_defaults.inc │ ├── commerce_checkout_admin.js │ ├── images │ │ └── status-active.gif │ ├── includes │ │ ├── commerce_checkout.admin.inc │ │ ├── commerce_checkout.checkout_pane.inc │ │ └── commerce_checkout.pages.inc │ ├── tests │ │ └── commerce_checkout.test │ └── theme │ │ ├── commerce_checkout.css │ │ └── commerce_checkout_admin.css ├── customer │ ├── commerce_customer.api.php │ ├── commerce_customer.info │ ├── commerce_customer.info.inc │ ├── commerce_customer.install │ ├── commerce_customer.js │ ├── commerce_customer.module │ ├── commerce_customer.rules.inc │ ├── commerce_customer.tokens.inc │ ├── commerce_customer_ui.info │ ├── commerce_customer_ui.module │ ├── includes │ │ ├── commerce_customer.checkout_pane.inc │ │ ├── commerce_customer_profile.controller.inc │ │ ├── commerce_customer_profile.forms.inc │ │ ├── commerce_customer_ui.profile_types.inc │ │ ├── commerce_customer_ui.profiles.inc │ │ └── views │ │ │ ├── commerce_customer.views.inc │ │ │ ├── commerce_customer_ui.views_default.inc │ │ │ └── handlers │ │ │ ├── commerce_customer_handler_field_customer_profile.inc │ │ │ ├── commerce_customer_handler_field_customer_profile_link.inc │ │ │ ├── commerce_customer_handler_field_customer_profile_link_delete.inc │ │ │ ├── commerce_customer_handler_field_customer_profile_link_edit.inc │ │ │ ├── commerce_customer_handler_field_customer_profile_type.inc │ │ │ └── commerce_customer_handler_filter_customer_profile_type.inc │ └── theme │ │ └── commerce_customer_ui.profile_types.css ├── line_item │ ├── commerce_line_item.api.php │ ├── commerce_line_item.info │ ├── commerce_line_item.info.inc │ ├── commerce_line_item.install │ ├── commerce_line_item.js │ ├── commerce_line_item.module │ ├── commerce_line_item.rules.inc │ ├── commerce_line_item.tokens.inc │ ├── commerce_line_item_ui.info │ ├── commerce_line_item_ui.module │ ├── includes │ │ ├── commerce_line_item.controller.inc │ │ ├── commerce_line_item.forms.inc │ │ ├── commerce_line_item_ui.types.inc │ │ └── views │ │ │ ├── commerce_line_item.views.inc │ │ │ ├── commerce_line_item.views_default.inc │ │ │ └── handlers │ │ │ ├── commerce_line_item_handler_area_line_item_actions.inc │ │ │ ├── commerce_line_item_handler_area_line_item_summary.inc │ │ │ ├── commerce_line_item_handler_argument_line_item_line_item_id.inc │ │ │ ├── commerce_line_item_handler_field_edit.inc │ │ │ ├── commerce_line_item_handler_field_edit_delete.inc │ │ │ ├── commerce_line_item_handler_field_edit_quantity.inc │ │ │ ├── commerce_line_item_handler_field_line_item_title.inc │ │ │ ├── commerce_line_item_handler_field_line_item_type.inc │ │ │ └── commerce_line_item_handler_filter_line_item_type.inc │ └── theme │ │ ├── commerce-line-item-summary.tpl.php │ │ ├── commerce_line_item.manager.css │ │ ├── commerce_line_item_summary.css │ │ ├── commerce_line_item_ui.types.css │ │ └── commerce_line_item_views_form.css ├── order │ ├── commerce_order.api.php │ ├── commerce_order.info │ ├── commerce_order.info.inc │ ├── commerce_order.install │ ├── commerce_order.js │ ├── commerce_order.module │ ├── commerce_order.rules.inc │ ├── commerce_order.tokens.inc │ ├── commerce_order_ui.info │ ├── commerce_order_ui.module │ ├── includes │ │ ├── commerce_order.checkout_pane.inc │ │ ├── commerce_order.controller.inc │ │ ├── commerce_order.forms.inc │ │ ├── commerce_order_ui.orders.inc │ │ └── views │ │ │ ├── commerce_order.views.inc │ │ │ ├── commerce_order_ui.views_default.inc │ │ │ └── handlers │ │ │ ├── commerce_order_handler_area_order_total.inc │ │ │ ├── commerce_order_handler_argument_order_order_id.inc │ │ │ ├── commerce_order_handler_field_order.inc │ │ │ ├── commerce_order_handler_field_order_link.inc │ │ │ ├── commerce_order_handler_field_order_link_delete.inc │ │ │ ├── commerce_order_handler_field_order_link_edit.inc │ │ │ ├── commerce_order_handler_field_order_operations.inc │ │ │ ├── commerce_order_handler_field_order_state.inc │ │ │ ├── commerce_order_handler_field_order_status.inc │ │ │ ├── commerce_order_handler_field_order_type.inc │ │ │ ├── commerce_order_handler_filter_order_state.inc │ │ │ ├── commerce_order_handler_filter_order_status.inc │ │ │ ├── commerce_order_handler_filter_order_type.inc │ │ │ └── commerce_order_plugin_argument_validate_user.inc │ ├── tests │ │ └── commerce_order_ui.test │ └── theme │ │ ├── commerce_order.css │ │ └── commerce_order_views.css ├── payment │ ├── commerce_payment.api.php │ ├── commerce_payment.info │ ├── commerce_payment.info.inc │ ├── commerce_payment.install │ ├── commerce_payment.module │ ├── commerce_payment.rules.inc │ ├── commerce_payment.rules_defaults.inc │ ├── commerce_payment.tokens.inc │ ├── commerce_payment_ui.info │ ├── commerce_payment_ui.module │ ├── includes │ │ ├── commerce_payment.checkout_pane.inc │ │ ├── commerce_payment.credit_card.inc │ │ ├── commerce_payment.forms.inc │ │ ├── commerce_payment_transaction.controller.inc │ │ ├── commerce_payment_ui.admin.inc │ │ └── views │ │ │ ├── commerce_payment.views.inc │ │ │ ├── commerce_payment_ui.views_default.inc │ │ │ └── handlers │ │ │ ├── commerce_payment_handler_area_totals.inc │ │ │ ├── commerce_payment_handler_field_amount.inc │ │ │ ├── commerce_payment_handler_field_balance.inc │ │ │ ├── commerce_payment_handler_field_currency_code.inc │ │ │ ├── commerce_payment_handler_field_message.inc │ │ │ ├── commerce_payment_handler_field_payment_method.inc │ │ │ ├── commerce_payment_handler_field_payment_transaction_link.inc │ │ │ ├── commerce_payment_handler_field_payment_transaction_link_delete.inc │ │ │ ├── commerce_payment_handler_field_payment_transaction_operations.inc │ │ │ ├── commerce_payment_handler_field_status.inc │ │ │ ├── commerce_payment_handler_filter_currency_code.inc │ │ │ ├── commerce_payment_handler_filter_payment_method.inc │ │ │ └── commerce_payment_handler_filter_payment_transaction_status.inc │ ├── modules │ │ ├── commerce_payment_example.info │ │ └── commerce_payment_example.module │ ├── tests │ │ └── commerce_payment_ui.test │ └── theme │ │ ├── commerce-payment-totals.tpl.php │ │ ├── commerce_payment.css │ │ ├── icon-failure.png │ │ ├── icon-pending.png │ │ └── icon-success.png ├── price │ ├── commerce_price.api.php │ ├── commerce_price.info │ ├── commerce_price.install │ ├── commerce_price.module │ ├── commerce_price.rules.inc │ └── theme │ │ └── commerce_price.css ├── product │ ├── commerce_product.api.php │ ├── commerce_product.info │ ├── commerce_product.info.inc │ ├── commerce_product.install │ ├── commerce_product.module │ ├── commerce_product.rules.inc │ ├── commerce_product.tokens.inc │ ├── commerce_product_ui.info │ ├── commerce_product_ui.install │ ├── commerce_product_ui.module │ ├── includes │ │ ├── commerce_product.controller.inc │ │ ├── commerce_product.forms.inc │ │ ├── commerce_product_ui.forms.inc │ │ ├── commerce_product_ui.products.inc │ │ ├── commerce_product_ui.types.inc │ │ └── views │ │ │ ├── commerce_product.views.inc │ │ │ ├── commerce_product_ui.views_default.inc │ │ │ └── handlers │ │ │ ├── commerce_product_handler_argument_product_id.inc │ │ │ ├── commerce_product_handler_field_product.inc │ │ │ ├── commerce_product_handler_field_product_link.inc │ │ │ ├── commerce_product_handler_field_product_link_delete.inc │ │ │ ├── commerce_product_handler_field_product_link_edit.inc │ │ │ ├── commerce_product_handler_field_product_operations.inc │ │ │ ├── commerce_product_handler_field_product_type.inc │ │ │ └── commerce_product_handler_filter_product_type.inc │ ├── tests │ │ ├── commerce_product.test │ │ └── commerce_product_ui.test │ └── theme │ │ ├── commerce-product-sku.tpl.php │ │ ├── commerce-product-status.tpl.php │ │ ├── commerce-product-title.tpl.php │ │ ├── commerce_product.css │ │ ├── commerce_product_ui.types.css │ │ └── commerce_product_views.css ├── product_pricing │ ├── commerce_product_pricing.api.php │ ├── commerce_product_pricing.info │ ├── commerce_product_pricing.module │ ├── commerce_product_pricing_ui.info │ ├── commerce_product_pricing_ui.module │ └── includes │ │ └── commerce_product_pricing_ui.admin.inc ├── product_reference │ ├── commerce_product_reference.info │ ├── commerce_product_reference.install │ ├── commerce_product_reference.module │ ├── commerce_product_reference.rules.inc │ └── tests │ │ └── commerce_product_reference.test └── tax │ ├── commerce_tax.api.php │ ├── commerce_tax.info │ ├── commerce_tax.module │ ├── commerce_tax.rules.inc │ ├── commerce_tax.rules_defaults.inc │ ├── commerce_tax_ui.info │ ├── commerce_tax_ui.install │ ├── commerce_tax_ui.module │ ├── includes │ └── commerce_tax_ui.admin.inc │ └── theme │ ├── commerce_tax.css │ └── commerce_tax_ui.css ├── tests ├── README.txt ├── commerce.test └── commerce_base.test ├── theme └── README.txt └── translations └── README.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/.gitignore -------------------------------------------------------------------------------- /README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/README.txt -------------------------------------------------------------------------------- /commerce.api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/commerce.api.php -------------------------------------------------------------------------------- /commerce.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/commerce.info -------------------------------------------------------------------------------- /commerce.module: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/commerce.module -------------------------------------------------------------------------------- /commerce_ui.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/commerce_ui.info -------------------------------------------------------------------------------- /commerce_ui.module: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/commerce_ui.module -------------------------------------------------------------------------------- /help/README.txt: -------------------------------------------------------------------------------- 1 | This directory contains files used by the Advanced Help module. 2 | -------------------------------------------------------------------------------- /includes/commerce.currency.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/includes/commerce.currency.inc -------------------------------------------------------------------------------- /includes/commerce_ui.admin.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/includes/commerce_ui.admin.inc -------------------------------------------------------------------------------- /includes/views/README.txt: -------------------------------------------------------------------------------- 1 | This directory contains Views related include files. 2 | -------------------------------------------------------------------------------- /modules/README.txt: -------------------------------------------------------------------------------- 1 | This directory contains the various core Drupal Commerce modules. 2 | -------------------------------------------------------------------------------- /modules/cart/commerce_cart.api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/cart/commerce_cart.api.php -------------------------------------------------------------------------------- /modules/cart/commerce_cart.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/cart/commerce_cart.info -------------------------------------------------------------------------------- /modules/cart/commerce_cart.info.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/cart/commerce_cart.info.inc -------------------------------------------------------------------------------- /modules/cart/commerce_cart.module: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/cart/commerce_cart.module -------------------------------------------------------------------------------- /modules/cart/commerce_cart.rules.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/cart/commerce_cart.rules.inc -------------------------------------------------------------------------------- /modules/cart/commerce_cart.rules_defaults.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/cart/commerce_cart.rules_defaults.inc -------------------------------------------------------------------------------- /modules/cart/includes/commerce_cart.checkout_pane.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/cart/includes/commerce_cart.checkout_pane.inc -------------------------------------------------------------------------------- /modules/cart/includes/commerce_cart.pages.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/cart/includes/commerce_cart.pages.inc -------------------------------------------------------------------------------- /modules/cart/includes/views/commerce_cart.views.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/cart/includes/views/commerce_cart.views.inc -------------------------------------------------------------------------------- /modules/cart/includes/views/commerce_cart.views_default.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/cart/includes/views/commerce_cart.views_default.inc -------------------------------------------------------------------------------- /modules/cart/includes/views/handlers/commerce_cart_handler_field_add_to_cart_form.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/cart/includes/views/handlers/commerce_cart_handler_field_add_to_cart_form.inc -------------------------------------------------------------------------------- /modules/cart/tests/commerce_cart.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/cart/tests/commerce_cart.test -------------------------------------------------------------------------------- /modules/cart/theme/buttons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/cart/theme/buttons.png -------------------------------------------------------------------------------- /modules/cart/theme/commerce-cart-block.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/cart/theme/commerce-cart-block.tpl.php -------------------------------------------------------------------------------- /modules/cart/theme/commerce_cart.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/cart/theme/commerce_cart.css -------------------------------------------------------------------------------- /modules/checkout/commerce_checkout.api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/checkout/commerce_checkout.api.php -------------------------------------------------------------------------------- /modules/checkout/commerce_checkout.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/checkout/commerce_checkout.info -------------------------------------------------------------------------------- /modules/checkout/commerce_checkout.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/checkout/commerce_checkout.install -------------------------------------------------------------------------------- /modules/checkout/commerce_checkout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/checkout/commerce_checkout.js -------------------------------------------------------------------------------- /modules/checkout/commerce_checkout.module: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/checkout/commerce_checkout.module -------------------------------------------------------------------------------- /modules/checkout/commerce_checkout.rules.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/checkout/commerce_checkout.rules.inc -------------------------------------------------------------------------------- /modules/checkout/commerce_checkout.rules_defaults.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/checkout/commerce_checkout.rules_defaults.inc -------------------------------------------------------------------------------- /modules/checkout/commerce_checkout_admin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/checkout/commerce_checkout_admin.js -------------------------------------------------------------------------------- /modules/checkout/images/status-active.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/checkout/images/status-active.gif -------------------------------------------------------------------------------- /modules/checkout/includes/commerce_checkout.admin.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/checkout/includes/commerce_checkout.admin.inc -------------------------------------------------------------------------------- /modules/checkout/includes/commerce_checkout.checkout_pane.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/checkout/includes/commerce_checkout.checkout_pane.inc -------------------------------------------------------------------------------- /modules/checkout/includes/commerce_checkout.pages.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/checkout/includes/commerce_checkout.pages.inc -------------------------------------------------------------------------------- /modules/checkout/tests/commerce_checkout.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/checkout/tests/commerce_checkout.test -------------------------------------------------------------------------------- /modules/checkout/theme/commerce_checkout.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/checkout/theme/commerce_checkout.css -------------------------------------------------------------------------------- /modules/checkout/theme/commerce_checkout_admin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/checkout/theme/commerce_checkout_admin.css -------------------------------------------------------------------------------- /modules/customer/commerce_customer.api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/customer/commerce_customer.api.php -------------------------------------------------------------------------------- /modules/customer/commerce_customer.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/customer/commerce_customer.info -------------------------------------------------------------------------------- /modules/customer/commerce_customer.info.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/customer/commerce_customer.info.inc -------------------------------------------------------------------------------- /modules/customer/commerce_customer.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/customer/commerce_customer.install -------------------------------------------------------------------------------- /modules/customer/commerce_customer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/customer/commerce_customer.js -------------------------------------------------------------------------------- /modules/customer/commerce_customer.module: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/customer/commerce_customer.module -------------------------------------------------------------------------------- /modules/customer/commerce_customer.rules.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/customer/commerce_customer.rules.inc -------------------------------------------------------------------------------- /modules/customer/commerce_customer.tokens.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/customer/commerce_customer.tokens.inc -------------------------------------------------------------------------------- /modules/customer/commerce_customer_ui.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/customer/commerce_customer_ui.info -------------------------------------------------------------------------------- /modules/customer/commerce_customer_ui.module: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/customer/commerce_customer_ui.module -------------------------------------------------------------------------------- /modules/customer/includes/commerce_customer.checkout_pane.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/customer/includes/commerce_customer.checkout_pane.inc -------------------------------------------------------------------------------- /modules/customer/includes/commerce_customer_profile.controller.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/customer/includes/commerce_customer_profile.controller.inc -------------------------------------------------------------------------------- /modules/customer/includes/commerce_customer_profile.forms.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/customer/includes/commerce_customer_profile.forms.inc -------------------------------------------------------------------------------- /modules/customer/includes/commerce_customer_ui.profile_types.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/customer/includes/commerce_customer_ui.profile_types.inc -------------------------------------------------------------------------------- /modules/customer/includes/commerce_customer_ui.profiles.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/customer/includes/commerce_customer_ui.profiles.inc -------------------------------------------------------------------------------- /modules/customer/includes/views/commerce_customer.views.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/customer/includes/views/commerce_customer.views.inc -------------------------------------------------------------------------------- /modules/customer/includes/views/commerce_customer_ui.views_default.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/customer/includes/views/commerce_customer_ui.views_default.inc -------------------------------------------------------------------------------- /modules/customer/includes/views/handlers/commerce_customer_handler_field_customer_profile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/customer/includes/views/handlers/commerce_customer_handler_field_customer_profile.inc -------------------------------------------------------------------------------- /modules/customer/includes/views/handlers/commerce_customer_handler_field_customer_profile_link.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/customer/includes/views/handlers/commerce_customer_handler_field_customer_profile_link.inc -------------------------------------------------------------------------------- /modules/customer/includes/views/handlers/commerce_customer_handler_field_customer_profile_link_delete.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/customer/includes/views/handlers/commerce_customer_handler_field_customer_profile_link_delete.inc -------------------------------------------------------------------------------- /modules/customer/includes/views/handlers/commerce_customer_handler_field_customer_profile_link_edit.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/customer/includes/views/handlers/commerce_customer_handler_field_customer_profile_link_edit.inc -------------------------------------------------------------------------------- /modules/customer/includes/views/handlers/commerce_customer_handler_field_customer_profile_type.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/customer/includes/views/handlers/commerce_customer_handler_field_customer_profile_type.inc -------------------------------------------------------------------------------- /modules/customer/includes/views/handlers/commerce_customer_handler_filter_customer_profile_type.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/customer/includes/views/handlers/commerce_customer_handler_filter_customer_profile_type.inc -------------------------------------------------------------------------------- /modules/customer/theme/commerce_customer_ui.profile_types.css: -------------------------------------------------------------------------------- 1 | /* $Id$ */ 2 | 3 | .links.operations { 4 | text-transform: lowercase; 5 | } 6 | -------------------------------------------------------------------------------- /modules/line_item/commerce_line_item.api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/line_item/commerce_line_item.api.php -------------------------------------------------------------------------------- /modules/line_item/commerce_line_item.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/line_item/commerce_line_item.info -------------------------------------------------------------------------------- /modules/line_item/commerce_line_item.info.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/line_item/commerce_line_item.info.inc -------------------------------------------------------------------------------- /modules/line_item/commerce_line_item.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/line_item/commerce_line_item.install -------------------------------------------------------------------------------- /modules/line_item/commerce_line_item.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/line_item/commerce_line_item.js -------------------------------------------------------------------------------- /modules/line_item/commerce_line_item.module: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/line_item/commerce_line_item.module -------------------------------------------------------------------------------- /modules/line_item/commerce_line_item.rules.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/line_item/commerce_line_item.rules.inc -------------------------------------------------------------------------------- /modules/line_item/commerce_line_item.tokens.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/line_item/commerce_line_item.tokens.inc -------------------------------------------------------------------------------- /modules/line_item/commerce_line_item_ui.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/line_item/commerce_line_item_ui.info -------------------------------------------------------------------------------- /modules/line_item/commerce_line_item_ui.module: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/line_item/commerce_line_item_ui.module -------------------------------------------------------------------------------- /modules/line_item/includes/commerce_line_item.controller.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/line_item/includes/commerce_line_item.controller.inc -------------------------------------------------------------------------------- /modules/line_item/includes/commerce_line_item.forms.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/line_item/includes/commerce_line_item.forms.inc -------------------------------------------------------------------------------- /modules/line_item/includes/commerce_line_item_ui.types.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/line_item/includes/commerce_line_item_ui.types.inc -------------------------------------------------------------------------------- /modules/line_item/includes/views/commerce_line_item.views.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/line_item/includes/views/commerce_line_item.views.inc -------------------------------------------------------------------------------- /modules/line_item/includes/views/commerce_line_item.views_default.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/line_item/includes/views/commerce_line_item.views_default.inc -------------------------------------------------------------------------------- /modules/line_item/includes/views/handlers/commerce_line_item_handler_area_line_item_actions.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/line_item/includes/views/handlers/commerce_line_item_handler_area_line_item_actions.inc -------------------------------------------------------------------------------- /modules/line_item/includes/views/handlers/commerce_line_item_handler_area_line_item_summary.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/line_item/includes/views/handlers/commerce_line_item_handler_area_line_item_summary.inc -------------------------------------------------------------------------------- /modules/line_item/includes/views/handlers/commerce_line_item_handler_argument_line_item_line_item_id.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/line_item/includes/views/handlers/commerce_line_item_handler_argument_line_item_line_item_id.inc -------------------------------------------------------------------------------- /modules/line_item/includes/views/handlers/commerce_line_item_handler_field_edit.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/line_item/includes/views/handlers/commerce_line_item_handler_field_edit.inc -------------------------------------------------------------------------------- /modules/line_item/includes/views/handlers/commerce_line_item_handler_field_edit_delete.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/line_item/includes/views/handlers/commerce_line_item_handler_field_edit_delete.inc -------------------------------------------------------------------------------- /modules/line_item/includes/views/handlers/commerce_line_item_handler_field_edit_quantity.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/line_item/includes/views/handlers/commerce_line_item_handler_field_edit_quantity.inc -------------------------------------------------------------------------------- /modules/line_item/includes/views/handlers/commerce_line_item_handler_field_line_item_title.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/line_item/includes/views/handlers/commerce_line_item_handler_field_line_item_title.inc -------------------------------------------------------------------------------- /modules/line_item/includes/views/handlers/commerce_line_item_handler_field_line_item_type.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/line_item/includes/views/handlers/commerce_line_item_handler_field_line_item_type.inc -------------------------------------------------------------------------------- /modules/line_item/includes/views/handlers/commerce_line_item_handler_filter_line_item_type.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/line_item/includes/views/handlers/commerce_line_item_handler_filter_line_item_type.inc -------------------------------------------------------------------------------- /modules/line_item/theme/commerce-line-item-summary.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/line_item/theme/commerce-line-item-summary.tpl.php -------------------------------------------------------------------------------- /modules/line_item/theme/commerce_line_item.manager.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/line_item/theme/commerce_line_item.manager.css -------------------------------------------------------------------------------- /modules/line_item/theme/commerce_line_item_summary.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/line_item/theme/commerce_line_item_summary.css -------------------------------------------------------------------------------- /modules/line_item/theme/commerce_line_item_ui.types.css: -------------------------------------------------------------------------------- 1 | /* $Id$ */ 2 | 3 | .links.operations { 4 | text-transform: lowercase; 5 | } 6 | -------------------------------------------------------------------------------- /modules/line_item/theme/commerce_line_item_views_form.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/line_item/theme/commerce_line_item_views_form.css -------------------------------------------------------------------------------- /modules/order/commerce_order.api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/order/commerce_order.api.php -------------------------------------------------------------------------------- /modules/order/commerce_order.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/order/commerce_order.info -------------------------------------------------------------------------------- /modules/order/commerce_order.info.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/order/commerce_order.info.inc -------------------------------------------------------------------------------- /modules/order/commerce_order.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/order/commerce_order.install -------------------------------------------------------------------------------- /modules/order/commerce_order.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/order/commerce_order.js -------------------------------------------------------------------------------- /modules/order/commerce_order.module: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/order/commerce_order.module -------------------------------------------------------------------------------- /modules/order/commerce_order.rules.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/order/commerce_order.rules.inc -------------------------------------------------------------------------------- /modules/order/commerce_order.tokens.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/order/commerce_order.tokens.inc -------------------------------------------------------------------------------- /modules/order/commerce_order_ui.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/order/commerce_order_ui.info -------------------------------------------------------------------------------- /modules/order/commerce_order_ui.module: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/order/commerce_order_ui.module -------------------------------------------------------------------------------- /modules/order/includes/commerce_order.checkout_pane.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/order/includes/commerce_order.checkout_pane.inc -------------------------------------------------------------------------------- /modules/order/includes/commerce_order.controller.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/order/includes/commerce_order.controller.inc -------------------------------------------------------------------------------- /modules/order/includes/commerce_order.forms.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/order/includes/commerce_order.forms.inc -------------------------------------------------------------------------------- /modules/order/includes/commerce_order_ui.orders.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/order/includes/commerce_order_ui.orders.inc -------------------------------------------------------------------------------- /modules/order/includes/views/commerce_order.views.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/order/includes/views/commerce_order.views.inc -------------------------------------------------------------------------------- /modules/order/includes/views/commerce_order_ui.views_default.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/order/includes/views/commerce_order_ui.views_default.inc -------------------------------------------------------------------------------- /modules/order/includes/views/handlers/commerce_order_handler_area_order_total.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/order/includes/views/handlers/commerce_order_handler_area_order_total.inc -------------------------------------------------------------------------------- /modules/order/includes/views/handlers/commerce_order_handler_argument_order_order_id.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/order/includes/views/handlers/commerce_order_handler_argument_order_order_id.inc -------------------------------------------------------------------------------- /modules/order/includes/views/handlers/commerce_order_handler_field_order.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/order/includes/views/handlers/commerce_order_handler_field_order.inc -------------------------------------------------------------------------------- /modules/order/includes/views/handlers/commerce_order_handler_field_order_link.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/order/includes/views/handlers/commerce_order_handler_field_order_link.inc -------------------------------------------------------------------------------- /modules/order/includes/views/handlers/commerce_order_handler_field_order_link_delete.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/order/includes/views/handlers/commerce_order_handler_field_order_link_delete.inc -------------------------------------------------------------------------------- /modules/order/includes/views/handlers/commerce_order_handler_field_order_link_edit.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/order/includes/views/handlers/commerce_order_handler_field_order_link_edit.inc -------------------------------------------------------------------------------- /modules/order/includes/views/handlers/commerce_order_handler_field_order_operations.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/order/includes/views/handlers/commerce_order_handler_field_order_operations.inc -------------------------------------------------------------------------------- /modules/order/includes/views/handlers/commerce_order_handler_field_order_state.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/order/includes/views/handlers/commerce_order_handler_field_order_state.inc -------------------------------------------------------------------------------- /modules/order/includes/views/handlers/commerce_order_handler_field_order_status.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/order/includes/views/handlers/commerce_order_handler_field_order_status.inc -------------------------------------------------------------------------------- /modules/order/includes/views/handlers/commerce_order_handler_field_order_type.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/order/includes/views/handlers/commerce_order_handler_field_order_type.inc -------------------------------------------------------------------------------- /modules/order/includes/views/handlers/commerce_order_handler_filter_order_state.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/order/includes/views/handlers/commerce_order_handler_filter_order_state.inc -------------------------------------------------------------------------------- /modules/order/includes/views/handlers/commerce_order_handler_filter_order_status.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/order/includes/views/handlers/commerce_order_handler_filter_order_status.inc -------------------------------------------------------------------------------- /modules/order/includes/views/handlers/commerce_order_handler_filter_order_type.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/order/includes/views/handlers/commerce_order_handler_filter_order_type.inc -------------------------------------------------------------------------------- /modules/order/includes/views/handlers/commerce_order_plugin_argument_validate_user.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/order/includes/views/handlers/commerce_order_plugin_argument_validate_user.inc -------------------------------------------------------------------------------- /modules/order/tests/commerce_order_ui.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/order/tests/commerce_order_ui.test -------------------------------------------------------------------------------- /modules/order/theme/commerce_order.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/order/theme/commerce_order.css -------------------------------------------------------------------------------- /modules/order/theme/commerce_order_views.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/order/theme/commerce_order_views.css -------------------------------------------------------------------------------- /modules/payment/commerce_payment.api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/payment/commerce_payment.api.php -------------------------------------------------------------------------------- /modules/payment/commerce_payment.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/payment/commerce_payment.info -------------------------------------------------------------------------------- /modules/payment/commerce_payment.info.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/payment/commerce_payment.info.inc -------------------------------------------------------------------------------- /modules/payment/commerce_payment.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/payment/commerce_payment.install -------------------------------------------------------------------------------- /modules/payment/commerce_payment.module: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/payment/commerce_payment.module -------------------------------------------------------------------------------- /modules/payment/commerce_payment.rules.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/payment/commerce_payment.rules.inc -------------------------------------------------------------------------------- /modules/payment/commerce_payment.rules_defaults.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/payment/commerce_payment.rules_defaults.inc -------------------------------------------------------------------------------- /modules/payment/commerce_payment.tokens.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/payment/commerce_payment.tokens.inc -------------------------------------------------------------------------------- /modules/payment/commerce_payment_ui.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/payment/commerce_payment_ui.info -------------------------------------------------------------------------------- /modules/payment/commerce_payment_ui.module: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/payment/commerce_payment_ui.module -------------------------------------------------------------------------------- /modules/payment/includes/commerce_payment.checkout_pane.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/payment/includes/commerce_payment.checkout_pane.inc -------------------------------------------------------------------------------- /modules/payment/includes/commerce_payment.credit_card.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/payment/includes/commerce_payment.credit_card.inc -------------------------------------------------------------------------------- /modules/payment/includes/commerce_payment.forms.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/payment/includes/commerce_payment.forms.inc -------------------------------------------------------------------------------- /modules/payment/includes/commerce_payment_transaction.controller.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/payment/includes/commerce_payment_transaction.controller.inc -------------------------------------------------------------------------------- /modules/payment/includes/commerce_payment_ui.admin.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/payment/includes/commerce_payment_ui.admin.inc -------------------------------------------------------------------------------- /modules/payment/includes/views/commerce_payment.views.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/payment/includes/views/commerce_payment.views.inc -------------------------------------------------------------------------------- /modules/payment/includes/views/commerce_payment_ui.views_default.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/payment/includes/views/commerce_payment_ui.views_default.inc -------------------------------------------------------------------------------- /modules/payment/includes/views/handlers/commerce_payment_handler_area_totals.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/payment/includes/views/handlers/commerce_payment_handler_area_totals.inc -------------------------------------------------------------------------------- /modules/payment/includes/views/handlers/commerce_payment_handler_field_amount.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/payment/includes/views/handlers/commerce_payment_handler_field_amount.inc -------------------------------------------------------------------------------- /modules/payment/includes/views/handlers/commerce_payment_handler_field_balance.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/payment/includes/views/handlers/commerce_payment_handler_field_balance.inc -------------------------------------------------------------------------------- /modules/payment/includes/views/handlers/commerce_payment_handler_field_currency_code.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/payment/includes/views/handlers/commerce_payment_handler_field_currency_code.inc -------------------------------------------------------------------------------- /modules/payment/includes/views/handlers/commerce_payment_handler_field_message.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/payment/includes/views/handlers/commerce_payment_handler_field_message.inc -------------------------------------------------------------------------------- /modules/payment/includes/views/handlers/commerce_payment_handler_field_payment_method.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/payment/includes/views/handlers/commerce_payment_handler_field_payment_method.inc -------------------------------------------------------------------------------- /modules/payment/includes/views/handlers/commerce_payment_handler_field_payment_transaction_link.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/payment/includes/views/handlers/commerce_payment_handler_field_payment_transaction_link.inc -------------------------------------------------------------------------------- /modules/payment/includes/views/handlers/commerce_payment_handler_field_payment_transaction_link_delete.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/payment/includes/views/handlers/commerce_payment_handler_field_payment_transaction_link_delete.inc -------------------------------------------------------------------------------- /modules/payment/includes/views/handlers/commerce_payment_handler_field_payment_transaction_operations.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/payment/includes/views/handlers/commerce_payment_handler_field_payment_transaction_operations.inc -------------------------------------------------------------------------------- /modules/payment/includes/views/handlers/commerce_payment_handler_field_status.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/payment/includes/views/handlers/commerce_payment_handler_field_status.inc -------------------------------------------------------------------------------- /modules/payment/includes/views/handlers/commerce_payment_handler_filter_currency_code.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/payment/includes/views/handlers/commerce_payment_handler_filter_currency_code.inc -------------------------------------------------------------------------------- /modules/payment/includes/views/handlers/commerce_payment_handler_filter_payment_method.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/payment/includes/views/handlers/commerce_payment_handler_filter_payment_method.inc -------------------------------------------------------------------------------- /modules/payment/includes/views/handlers/commerce_payment_handler_filter_payment_transaction_status.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/payment/includes/views/handlers/commerce_payment_handler_filter_payment_transaction_status.inc -------------------------------------------------------------------------------- /modules/payment/modules/commerce_payment_example.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/payment/modules/commerce_payment_example.info -------------------------------------------------------------------------------- /modules/payment/modules/commerce_payment_example.module: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/payment/modules/commerce_payment_example.module -------------------------------------------------------------------------------- /modules/payment/tests/commerce_payment_ui.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/payment/tests/commerce_payment_ui.test -------------------------------------------------------------------------------- /modules/payment/theme/commerce-payment-totals.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/payment/theme/commerce-payment-totals.tpl.php -------------------------------------------------------------------------------- /modules/payment/theme/commerce_payment.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/payment/theme/commerce_payment.css -------------------------------------------------------------------------------- /modules/payment/theme/icon-failure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/payment/theme/icon-failure.png -------------------------------------------------------------------------------- /modules/payment/theme/icon-pending.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/payment/theme/icon-pending.png -------------------------------------------------------------------------------- /modules/payment/theme/icon-success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/payment/theme/icon-success.png -------------------------------------------------------------------------------- /modules/price/commerce_price.api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/price/commerce_price.api.php -------------------------------------------------------------------------------- /modules/price/commerce_price.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/price/commerce_price.info -------------------------------------------------------------------------------- /modules/price/commerce_price.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/price/commerce_price.install -------------------------------------------------------------------------------- /modules/price/commerce_price.module: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/price/commerce_price.module -------------------------------------------------------------------------------- /modules/price/commerce_price.rules.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/price/commerce_price.rules.inc -------------------------------------------------------------------------------- /modules/price/theme/commerce_price.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/price/theme/commerce_price.css -------------------------------------------------------------------------------- /modules/product/commerce_product.api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/product/commerce_product.api.php -------------------------------------------------------------------------------- /modules/product/commerce_product.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/product/commerce_product.info -------------------------------------------------------------------------------- /modules/product/commerce_product.info.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/product/commerce_product.info.inc -------------------------------------------------------------------------------- /modules/product/commerce_product.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/product/commerce_product.install -------------------------------------------------------------------------------- /modules/product/commerce_product.module: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/product/commerce_product.module -------------------------------------------------------------------------------- /modules/product/commerce_product.rules.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/product/commerce_product.rules.inc -------------------------------------------------------------------------------- /modules/product/commerce_product.tokens.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/product/commerce_product.tokens.inc -------------------------------------------------------------------------------- /modules/product/commerce_product_ui.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/product/commerce_product_ui.info -------------------------------------------------------------------------------- /modules/product/commerce_product_ui.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/product/commerce_product_ui.install -------------------------------------------------------------------------------- /modules/product/commerce_product_ui.module: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/product/commerce_product_ui.module -------------------------------------------------------------------------------- /modules/product/includes/commerce_product.controller.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/product/includes/commerce_product.controller.inc -------------------------------------------------------------------------------- /modules/product/includes/commerce_product.forms.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/product/includes/commerce_product.forms.inc -------------------------------------------------------------------------------- /modules/product/includes/commerce_product_ui.forms.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/product/includes/commerce_product_ui.forms.inc -------------------------------------------------------------------------------- /modules/product/includes/commerce_product_ui.products.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/product/includes/commerce_product_ui.products.inc -------------------------------------------------------------------------------- /modules/product/includes/commerce_product_ui.types.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/product/includes/commerce_product_ui.types.inc -------------------------------------------------------------------------------- /modules/product/includes/views/commerce_product.views.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/product/includes/views/commerce_product.views.inc -------------------------------------------------------------------------------- /modules/product/includes/views/commerce_product_ui.views_default.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/product/includes/views/commerce_product_ui.views_default.inc -------------------------------------------------------------------------------- /modules/product/includes/views/handlers/commerce_product_handler_argument_product_id.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/product/includes/views/handlers/commerce_product_handler_argument_product_id.inc -------------------------------------------------------------------------------- /modules/product/includes/views/handlers/commerce_product_handler_field_product.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/product/includes/views/handlers/commerce_product_handler_field_product.inc -------------------------------------------------------------------------------- /modules/product/includes/views/handlers/commerce_product_handler_field_product_link.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/product/includes/views/handlers/commerce_product_handler_field_product_link.inc -------------------------------------------------------------------------------- /modules/product/includes/views/handlers/commerce_product_handler_field_product_link_delete.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/product/includes/views/handlers/commerce_product_handler_field_product_link_delete.inc -------------------------------------------------------------------------------- /modules/product/includes/views/handlers/commerce_product_handler_field_product_link_edit.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/product/includes/views/handlers/commerce_product_handler_field_product_link_edit.inc -------------------------------------------------------------------------------- /modules/product/includes/views/handlers/commerce_product_handler_field_product_operations.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/product/includes/views/handlers/commerce_product_handler_field_product_operations.inc -------------------------------------------------------------------------------- /modules/product/includes/views/handlers/commerce_product_handler_field_product_type.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/product/includes/views/handlers/commerce_product_handler_field_product_type.inc -------------------------------------------------------------------------------- /modules/product/includes/views/handlers/commerce_product_handler_filter_product_type.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/product/includes/views/handlers/commerce_product_handler_filter_product_type.inc -------------------------------------------------------------------------------- /modules/product/tests/commerce_product.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/product/tests/commerce_product.test -------------------------------------------------------------------------------- /modules/product/tests/commerce_product_ui.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/product/tests/commerce_product_ui.test -------------------------------------------------------------------------------- /modules/product/theme/commerce-product-sku.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/product/theme/commerce-product-sku.tpl.php -------------------------------------------------------------------------------- /modules/product/theme/commerce-product-status.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/product/theme/commerce-product-status.tpl.php -------------------------------------------------------------------------------- /modules/product/theme/commerce-product-title.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/product/theme/commerce-product-title.tpl.php -------------------------------------------------------------------------------- /modules/product/theme/commerce_product.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/product/theme/commerce_product.css -------------------------------------------------------------------------------- /modules/product/theme/commerce_product_ui.types.css: -------------------------------------------------------------------------------- 1 | /* $Id$ */ 2 | 3 | .links.operations { 4 | text-transform: lowercase; 5 | } 6 | -------------------------------------------------------------------------------- /modules/product/theme/commerce_product_views.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/product/theme/commerce_product_views.css -------------------------------------------------------------------------------- /modules/product_pricing/commerce_product_pricing.api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/product_pricing/commerce_product_pricing.api.php -------------------------------------------------------------------------------- /modules/product_pricing/commerce_product_pricing.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/product_pricing/commerce_product_pricing.info -------------------------------------------------------------------------------- /modules/product_pricing/commerce_product_pricing.module: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/product_pricing/commerce_product_pricing.module -------------------------------------------------------------------------------- /modules/product_pricing/commerce_product_pricing_ui.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/product_pricing/commerce_product_pricing_ui.info -------------------------------------------------------------------------------- /modules/product_pricing/commerce_product_pricing_ui.module: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/product_pricing/commerce_product_pricing_ui.module -------------------------------------------------------------------------------- /modules/product_pricing/includes/commerce_product_pricing_ui.admin.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/product_pricing/includes/commerce_product_pricing_ui.admin.inc -------------------------------------------------------------------------------- /modules/product_reference/commerce_product_reference.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/product_reference/commerce_product_reference.info -------------------------------------------------------------------------------- /modules/product_reference/commerce_product_reference.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/product_reference/commerce_product_reference.install -------------------------------------------------------------------------------- /modules/product_reference/commerce_product_reference.module: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/product_reference/commerce_product_reference.module -------------------------------------------------------------------------------- /modules/product_reference/commerce_product_reference.rules.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/product_reference/commerce_product_reference.rules.inc -------------------------------------------------------------------------------- /modules/product_reference/tests/commerce_product_reference.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/product_reference/tests/commerce_product_reference.test -------------------------------------------------------------------------------- /modules/tax/commerce_tax.api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/tax/commerce_tax.api.php -------------------------------------------------------------------------------- /modules/tax/commerce_tax.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/tax/commerce_tax.info -------------------------------------------------------------------------------- /modules/tax/commerce_tax.module: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/tax/commerce_tax.module -------------------------------------------------------------------------------- /modules/tax/commerce_tax.rules.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/tax/commerce_tax.rules.inc -------------------------------------------------------------------------------- /modules/tax/commerce_tax.rules_defaults.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/tax/commerce_tax.rules_defaults.inc -------------------------------------------------------------------------------- /modules/tax/commerce_tax_ui.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/tax/commerce_tax_ui.info -------------------------------------------------------------------------------- /modules/tax/commerce_tax_ui.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/tax/commerce_tax_ui.install -------------------------------------------------------------------------------- /modules/tax/commerce_tax_ui.module: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/tax/commerce_tax_ui.module -------------------------------------------------------------------------------- /modules/tax/includes/commerce_tax_ui.admin.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/tax/includes/commerce_tax_ui.admin.inc -------------------------------------------------------------------------------- /modules/tax/theme/commerce_tax.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/modules/tax/theme/commerce_tax.css -------------------------------------------------------------------------------- /modules/tax/theme/commerce_tax_ui.css: -------------------------------------------------------------------------------- 1 | /* $Id$ */ 2 | 3 | .links.operations { 4 | text-transform: lowercase; 5 | } 6 | -------------------------------------------------------------------------------- /tests/README.txt: -------------------------------------------------------------------------------- 1 | This directory contains SimpleTest related include files. 2 | -------------------------------------------------------------------------------- /tests/commerce.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/tests/commerce.test -------------------------------------------------------------------------------- /tests/commerce_base.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/tests/commerce_base.test -------------------------------------------------------------------------------- /theme/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/theme/README.txt -------------------------------------------------------------------------------- /translations/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rszrama/drupalcommerce/HEAD/translations/README.txt --------------------------------------------------------------------------------