Created
October 3, 2012 16:21
-
-
Save xcommerce-gists/3828003 to your computer and use it in GitHub Desktop.
Sample advanced onboarding config.xml for X.commerce
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0"?> | |
<!-- | |
/** | |
* Magento | |
* | |
* NOTICE OF LICENSE | |
* | |
* This source file is subject to the Open Software License (OSL 3.0) | |
* that is bundled with this package in the file LICENSE.txt. | |
* It is also available through the world-wide-web at this URL: | |
* http://opensource.org/licenses/osl-3.0.php | |
* If you did not receive a copy of the license and are unable to | |
* obtain it through the world-wide-web, please send an email | |
* to [email protected] so we can send you a copy immediately. | |
* | |
* DISCLAIMER | |
* | |
* Do not edit or add to this file if you wish to upgrade Magento to newer | |
* versions in the future. If you wish to customize Magento for your | |
* needs please refer to http://www.magentocommerce.com for more information. | |
* | |
* @category Integration test | |
* @package Test_Advonboardexample1 | |
* @copyright Copyright (c) 2010 Magento Inc. (http://www.magentocommerce.com) | |
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) | |
*/ | |
--> | |
<config> | |
<modules> | |
<Examplecorp_Advancedmoduleexample> | |
<version>1.0.0</version> | |
</Examplecorp_Advancedmoduleexample> | |
</modules> | |
<global> | |
<xcom_onboarding> | |
<extensions> | |
<Namespace_Advancedmoduleexample> | |
<myBundle> | |
<bundle_name>Awesome Advanced Module</bundle_name> | |
<configuration_path>adminhtml/myBundle/index</configuration_path> | |
<bundle_description><![CDATA[This is so awesome.]]></bundle_description> | |
<bundle_logo>/examplecorp/logo.png</bundle_logo> | |
<participants> | |
<participant_first> | |
<destinationId>xLZ2PHWnC7pob6si9Gj6dAl56xHnAJWosLUhSukI9e2JYMdmS4nzGcQYk0jGikEtWv2XRnSm</destinationId> | |
<contractId> | |
com.x.webstorecontracts.v1.WebStoreOfferConsumer, | |
com.x.pimcontracts.v1.ProductInformationManagementConsumer, | |
com.x.inventorycontracts.v1.InventoryConsumer, | |
com.x.customercontract.v1.CustomerConsumer, | |
com.x.ordermanagementcontracts.v1.OrderObserver | |
</contractId> | |
<namevaluepairs> | |
<Version>1.0.1</Version> | |
</namevaluepairs> | |
</participant_first> | |
<participant_second> | |
<destinationId>iljzz9RilQS9XmNq96yIVg57wdcgBBopv3NI4st24L7h2hK9C0NvWjm0dcD9jGfr17hDtH64</destinationId> | |
<contractId>com.x.webstorecontracts.v1.WebStoreOfferConsumer</contractId> | |
<namevaluepairs> | |
<Version>1.1.1</Version> | |
</namevaluepairs> | |
</participant_second> | |
<magento_cart> | |
<contractId> | |
com.x.webstorecontracts.v1.WebStoreOfferProvider, | |
com.x.pimcontracts.v1.UpdateableProductInformationManagement, | |
com.x.inventorycontracts.v1.UpdateableInventoryManager, | |
com.x.customercontract.v1.UpdateableCustomerInformationProvider, | |
com.x.ordermanagementcontracts.v1.InternalOrderProcessor | |
</contractId> | |
</magento_cart> | |
</participants> | |
</myBundle> | |
</Namespace_Advancedmoduleexample> | |
</extensions> | |
</xcom_onboarding> | |
</global> | |
</config> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment