// Fix hooks, categories and tabs in new installer
This commit is contained in:
@@ -1,38 +1,5 @@
|
||||
SET NAMES 'utf8';
|
||||
|
||||
INSERT INTO `ps_homeslider` (id_homeslider_slides, id_shop) VALUES (1, 1),(2, 1), (3, 1), (4, 1), (5, 1);
|
||||
|
||||
INSERT INTO `ps_homeslider_slides` (id_homeslider_slides, position, active)
|
||||
VALUES (1, 1, 1), (2, 2, 1), (3, 3, 1), (4, 4, 1), (5, 5, 1);
|
||||
|
||||
INSERT INTO `ps_homeslider_slides_lang` (id_homeslider_slides, id_lang, title, description, legend, url, image) VALUES
|
||||
(1, 1, "Sample 1", "This is a sample picture", "sample-1", "http://www.prestashop.com", "sample-1.jpg"),
|
||||
(2, 1, "Sample 2", "This is a sample picture", "sample-2", "http://www.prestashop.com", "sample-2.jpg"),
|
||||
(3, 1, "Sample 3", "This is a sample picture", "sample-3", "http://www.prestashop.com", "sample-3.jpg"),
|
||||
(4, 1, "Sample 4", "This is a sample picture", "sample-4", "http://www.prestashop.com", "sample-4.jpg"),
|
||||
(5, 1, "Sample 5", "This is a sample picture", "sample-5", "http://www.prestashop.com", "sample-5.jpg"),
|
||||
(1, 2, "Sample 1", "This is a sample picture", "sample-1", "http://www.prestashop.com", "sample-1.jpg"),
|
||||
(2, 2, "Sample 2", "This is a sample picture", "sample-2", "http://www.prestashop.com", "sample-2.jpg"),
|
||||
(3, 2, "Sample 3", "This is a sample picture", "sample-3", "http://www.prestashop.com", "sample-3.jpg"),
|
||||
(4, 2, "Sample 4", "This is a sample picture", "sample-4", "http://www.prestashop.com", "sample-4.jpg"),
|
||||
(5, 2, "Sample 5", "This is a sample picture", "sample-5", "http://www.prestashop.com", "sample-5.jpg"),
|
||||
(1, 3, "Sample 1", "This is a sample picture", "sample-1", "http://www.prestashop.com", "sample-1.jpg"),
|
||||
(2, 3, "Sample 2", "This is a sample picture", "sample-2", "http://www.prestashop.com", "sample-2.jpg"),
|
||||
(3, 3, "Sample 3", "This is a sample picture", "sample-3", "http://www.prestashop.com", "sample-3.jpg"),
|
||||
(4, 3, "Sample 4", "This is a sample picture", "sample-4", "http://www.prestashop.com", "sample-4.jpg"),
|
||||
(5, 3, "Sample 5", "This is a sample picture", "sample-5", "http://www.prestashop.com", "sample-5.jpg"),
|
||||
(1, 4, "Sample 1", "This is a sample picture", "sample-1", "http://www.prestashop.com", "sample-1.jpg"),
|
||||
(2, 4, "Sample 2", "This is a sample picture", "sample-2", "http://www.prestashop.com", "sample-2.jpg"),
|
||||
(3, 4, "Sample 3", "This is a sample picture", "sample-3", "http://www.prestashop.com", "sample-3.jpg"),
|
||||
(4, 4, "Sample 4", "This is a sample picture", "sample-4", "http://www.prestashop.com", "sample-4.jpg"),
|
||||
(5, 4, "Sample 5", "This is a sample picture", "sample-5", "http://www.prestashop.com", "sample-5.jpg"),
|
||||
(1, 5, "Sample 1", "This is a sample picture", "sample-1", "http://www.prestashop.com", "sample-1.jpg"),
|
||||
(2, 5, "Sample 2", "This is a sample picture", "sample-2", "http://www.prestashop.com", "sample-2.jpg"),
|
||||
(3, 5, "Sample 3", "This is a sample picture", "sample-3", "http://www.prestashop.com", "sample-3.jpg"),
|
||||
(4, 5, "Sample 4", "This is a sample picture", "sample-4", "http://www.prestashop.com", "sample-4.jpg"),
|
||||
(5, 5, "Sample 5", "This is a sample picture", "sample-5", "http://www.prestashop.com", "sample-5.jpg");
|
||||
|
||||
|
||||
UPDATE `PREFIX_configuration` SET value = '1' WHERE name = 'PS_CONDITIONS';
|
||||
UPDATE `PREFIX_configuration` SET value = '10' WHERE name = 'PS_PRODUCTS_PER_PAGE';
|
||||
UPDATE `PREFIX_configuration` SET value = '0' WHERE name = 'PS_PRODUCTS_ORDER_WAY';
|
||||
|
||||
@@ -0,0 +1,12 @@
|
||||
<?xml version="1.0"?>
|
||||
<entity_category_group>
|
||||
<fields primary="id_category, id_group" sql="a.id_category = 1">
|
||||
<field name="id_category" relation="category"/>
|
||||
<field name="id_group" relation="group"/>
|
||||
</fields>
|
||||
<entities>
|
||||
<category_group id="category_group_1_1" id_category="Home" id_group="Unidentified"/>
|
||||
<category_group id="category_group_1_2" id_category="Home" id_group="Guest"/>
|
||||
<category_group id="category_group_1_3" id_category="Home" id_group="Default"/>
|
||||
</entities>
|
||||
</entity_category_group>
|
||||
@@ -1,11 +1,442 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<entity_hook>
|
||||
<fields id="name" class="Hook" sql="a.is_native = 1">
|
||||
<fields id="name" class="Hook">
|
||||
<field name="name"/>
|
||||
<field name="title"/>
|
||||
<field name="description"/>
|
||||
<field name="live_edit"/>
|
||||
<field name="is_native"/>
|
||||
</fields>
|
||||
<entities/>
|
||||
<entities>
|
||||
<hook id="displayPayment" live_edit="1" is_native="0">
|
||||
<name>displayPayment</name>
|
||||
<title>Payment</title>
|
||||
<description/>
|
||||
</hook>
|
||||
<hook id="actionValidateOrder" live_edit="0" is_native="0">
|
||||
<name>actionValidateOrder</name>
|
||||
<title>New orders</title>
|
||||
<description/>
|
||||
</hook>
|
||||
<hook id="actionPaymentConfirmation" live_edit="0" is_native="0">
|
||||
<name>actionPaymentConfirmation</name>
|
||||
<title>Payment confirmation</title>
|
||||
<description/>
|
||||
</hook>
|
||||
<hook id="displayPaymentReturn" live_edit="0" is_native="0">
|
||||
<name>displayPaymentReturn</name>
|
||||
<title>Payment return</title>
|
||||
<description/>
|
||||
</hook>
|
||||
<hook id="actionUpdateQuantity" live_edit="0" is_native="0">
|
||||
<name>actionUpdateQuantity</name>
|
||||
<title>Quantity update</title>
|
||||
<description>Quantity is updated only when the customer effectively <b>place</b> his order.</description>
|
||||
</hook>
|
||||
<hook id="displayRightColumn" live_edit="1" is_native="0">
|
||||
<name>displayRightColumn</name>
|
||||
<title>Right column blocks</title>
|
||||
<description/>
|
||||
</hook>
|
||||
<hook id="displayLeftColumn" live_edit="1" is_native="0">
|
||||
<name>displayLeftColumn</name>
|
||||
<title>Left column blocks</title>
|
||||
<description/>
|
||||
</hook>
|
||||
<hook id="displayHome" live_edit="1" is_native="0">
|
||||
<name>displayHome</name>
|
||||
<title>Homepage content</title>
|
||||
<description/>
|
||||
</hook>
|
||||
<hook id="displayHeader" live_edit="0" is_native="0">
|
||||
<name>displayHeader</name>
|
||||
<title>Header of pages</title>
|
||||
<description>A hook which allow you to do things in the header of each pages</description>
|
||||
</hook>
|
||||
<hook id="actionCartSave" live_edit="0" is_native="0">
|
||||
<name>actionCartSave</name>
|
||||
<title>Cart creation and update</title>
|
||||
<description/>
|
||||
</hook>
|
||||
<hook id="actionAuthentication" live_edit="0" is_native="0">
|
||||
<name>actionAuthentication</name>
|
||||
<title>Successful customer authentication</title>
|
||||
<description/>
|
||||
</hook>
|
||||
<hook id="actionProductAdd" live_edit="0" is_native="0">
|
||||
<name>actionProductAdd</name>
|
||||
<title>Product creation</title>
|
||||
<description/>
|
||||
</hook>
|
||||
<hook id="actionProductUpdate" live_edit="0" is_native="0">
|
||||
<name>actionProductUpdate</name>
|
||||
<title>Product Update</title>
|
||||
<description/>
|
||||
</hook>
|
||||
<hook id="displayTop" live_edit="0" is_native="0">
|
||||
<name>displayTop</name>
|
||||
<title>Top of pages</title>
|
||||
<description>A hook which allow you to do things a the top of each pages.</description>
|
||||
</hook>
|
||||
<hook id="displayRightColumnProduct" live_edit="0" is_native="0">
|
||||
<name>displayRightColumnProduct</name>
|
||||
<title>Extra actions on the product page (right column).</title>
|
||||
<description/>
|
||||
</hook>
|
||||
<hook id="actionProductDelete" live_edit="0" is_native="0">
|
||||
<name>actionProductDelete</name>
|
||||
<title>Product deletion</title>
|
||||
<description>This hook is called when a product is deleted</description>
|
||||
</hook>
|
||||
<hook id="displayFooterProduct" live_edit="1" is_native="0">
|
||||
<name>displayFooterProduct</name>
|
||||
<title>Product footer</title>
|
||||
<description>Add new blocks under the product description</description>
|
||||
</hook>
|
||||
<hook id="displayInvoice" live_edit="0" is_native="0">
|
||||
<name>displayInvoice</name>
|
||||
<title>Invoice</title>
|
||||
<description>Add blocks to invoice (order)</description>
|
||||
</hook>
|
||||
<hook id="actionOrderStatusUpdate" live_edit="0" is_native="0">
|
||||
<name>actionOrderStatusUpdate</name>
|
||||
<title>Order's status update event</title>
|
||||
<description>Launch modules when the order's status of an order change.</description>
|
||||
</hook>
|
||||
<hook id="displayAdminOrder" live_edit="0" is_native="0">
|
||||
<name>displayAdminOrder</name>
|
||||
<title>Display in Back-Office, tab AdminOrder</title>
|
||||
<description>Launch modules when the tab AdminOrder is displayed on back-office.</description>
|
||||
</hook>
|
||||
<hook id="displayFooter" live_edit="0" is_native="0">
|
||||
<name>displayFooter</name>
|
||||
<title>Footer</title>
|
||||
<description>Add block in footer</description>
|
||||
</hook>
|
||||
<hook id="displayPDFInvoice" live_edit="0" is_native="0">
|
||||
<name>displayPDFInvoice</name>
|
||||
<title>PDF Invoice</title>
|
||||
<description>Allow the display of extra informations into the PDF invoice</description>
|
||||
</hook>
|
||||
<hook id="displayAdminCustomers" live_edit="0" is_native="0">
|
||||
<name>displayAdminCustomers</name>
|
||||
<title>Display in Back-Office, tab AdminCustomers</title>
|
||||
<description>Launch modules when the tab AdminCustomers is displayed on back-office.</description>
|
||||
</hook>
|
||||
<hook id="displayOrderConfirmation" live_edit="0" is_native="0">
|
||||
<name>displayOrderConfirmation</name>
|
||||
<title>Order confirmation page</title>
|
||||
<description>Called on order confirmation page</description>
|
||||
</hook>
|
||||
<hook id="actionCustomerAccountAdd" live_edit="0" is_native="0">
|
||||
<name>actionCustomerAccountAdd</name>
|
||||
<title>Successful customer create account</title>
|
||||
<description>Called when new customer create account successfuled</description>
|
||||
</hook>
|
||||
<hook id="displayCustomerAccount" live_edit="0" is_native="0">
|
||||
<name>displayCustomerAccount</name>
|
||||
<title>Customer account page display in front office</title>
|
||||
<description>Display on page account of the customer</description>
|
||||
</hook>
|
||||
<hook id="actionOrderSlipAdd" live_edit="0" is_native="0">
|
||||
<name>actionOrderSlipAdd</name>
|
||||
<title>Called when a order slip is created</title>
|
||||
<description>Called when a quantity of one product change in an order.</description>
|
||||
</hook>
|
||||
<hook id="displayProductTab" live_edit="0" is_native="0">
|
||||
<name>displayProductTab</name>
|
||||
<title>Tabs on product page</title>
|
||||
<description>Called on order product page tabs</description>
|
||||
</hook>
|
||||
<hook id="displayProductTabContent" live_edit="0" is_native="0">
|
||||
<name>displayProductTabContent</name>
|
||||
<title>Content of tabs on product page</title>
|
||||
<description>Called on order product page tabs</description>
|
||||
</hook>
|
||||
<hook id="displayShoppingCartFooter" live_edit="0" is_native="0">
|
||||
<name>displayShoppingCartFooter</name>
|
||||
<title>Shopping cart footer</title>
|
||||
<description>Display some specific informations on the shopping cart page</description>
|
||||
</hook>
|
||||
<hook id="displayCustomerAccountForm" live_edit="0" is_native="0">
|
||||
<name>displayCustomerAccountForm</name>
|
||||
<title>Customer account creation form</title>
|
||||
<description>Display some information on the form to create a customer account</description>
|
||||
</hook>
|
||||
<hook id="displayAdminStatsModules" live_edit="0" is_native="0">
|
||||
<name>displayAdminStatsModules</name>
|
||||
<title>Stats - Modules</title>
|
||||
<description/>
|
||||
</hook>
|
||||
<hook id="displayAdminStatsGraphEngine" live_edit="0" is_native="0">
|
||||
<name>displayAdminStatsGraphEngine</name>
|
||||
<title>Graph Engines</title>
|
||||
<description/>
|
||||
</hook>
|
||||
<hook id="actionOrderReturn" live_edit="0" is_native="0">
|
||||
<name>actionOrderReturn</name>
|
||||
<title>Product returned</title>
|
||||
<description/>
|
||||
</hook>
|
||||
<hook id="displayProductButtons" live_edit="0" is_native="0">
|
||||
<name>displayProductButtons</name>
|
||||
<title>Product actions</title>
|
||||
<description>Put new action buttons on product page</description>
|
||||
</hook>
|
||||
<hook id="displayBackOfficeHome" live_edit="0" is_native="0">
|
||||
<name>displayBackOfficeHome</name>
|
||||
<title>Administration panel homepage</title>
|
||||
<description/>
|
||||
</hook>
|
||||
<hook id="displayAdminStatsGridEngine" live_edit="0" is_native="0">
|
||||
<name>displayAdminStatsGridEngine</name>
|
||||
<title>Grid Engines</title>
|
||||
<description/>
|
||||
</hook>
|
||||
<hook id="actionWatermark" live_edit="0" is_native="0">
|
||||
<name>actionWatermark</name>
|
||||
<title>Watermark</title>
|
||||
<description/>
|
||||
</hook>
|
||||
<hook id="actionProductCancel" live_edit="0" is_native="0">
|
||||
<name>actionProductCancel</name>
|
||||
<title>Product cancelled</title>
|
||||
<description>This hook is called when you cancel a product in an order</description>
|
||||
</hook>
|
||||
<hook id="displayLeftColumnProduct" live_edit="0" is_native="0">
|
||||
<name>displayLeftColumnProduct</name>
|
||||
<title>Extra actions on the product page (left column).</title>
|
||||
<description/>
|
||||
</hook>
|
||||
<hook id="actionProductOutOfStock" live_edit="0" is_native="0">
|
||||
<name>actionProductOutOfStock</name>
|
||||
<title>Product out of stock</title>
|
||||
<description>Make action while product is out of stock</description>
|
||||
</hook>
|
||||
<hook id="actionProductAttributeUpdate" live_edit="0" is_native="0">
|
||||
<name>actionProductAttributeUpdate</name>
|
||||
<title>Product attribute update</title>
|
||||
<description/>
|
||||
</hook>
|
||||
<hook id="displayCarrierList" live_edit="0" is_native="0">
|
||||
<name>displayCarrierList</name>
|
||||
<title>Extra carrier (module mode)</title>
|
||||
<description/>
|
||||
</hook>
|
||||
<hook id="displayShoppingCart" live_edit="0" is_native="0">
|
||||
<name>displayShoppingCart</name>
|
||||
<title>Shopping cart extra button</title>
|
||||
<description>Display some specific informations</description>
|
||||
</hook>
|
||||
<hook id="actionSearch" live_edit="0" is_native="0">
|
||||
<name>actionSearch</name>
|
||||
<title>Search</title>
|
||||
<description/>
|
||||
</hook>
|
||||
<hook id="displayBeforePayment" live_edit="0" is_native="0">
|
||||
<name>displayBeforePayment</name>
|
||||
<title>Redirect in order process</title>
|
||||
<description>Redirect user to the module instead of displaying payment modules</description>
|
||||
</hook>
|
||||
<hook id="actionCarrierUpdate" live_edit="0" is_native="0">
|
||||
<name>actionCarrierUpdate</name>
|
||||
<title>Carrier Update</title>
|
||||
<description>This hook is called when a carrier is updated</description>
|
||||
</hook>
|
||||
<hook id="actionOrderStatusPostUpdate" live_edit="0" is_native="0">
|
||||
<name>actionOrderStatusPostUpdate</name>
|
||||
<title>Post update of order status</title>
|
||||
<description/>
|
||||
</hook>
|
||||
<hook id="displayCustomerAccountFormTop" live_edit="0" is_native="0">
|
||||
<name>displayCustomerAccountFormTop</name>
|
||||
<title>Block above the form for create an account</title>
|
||||
<description/>
|
||||
</hook>
|
||||
<hook id="displayBackOfficeHeader" live_edit="0" is_native="0">
|
||||
<name>displayBackOfficeHeader</name>
|
||||
<title>Administration panel header</title>
|
||||
<description/>
|
||||
</hook>
|
||||
<hook id="displayBackOfficeTop" live_edit="0" is_native="0">
|
||||
<name>displayBackOfficeTop</name>
|
||||
<title>Administration panel hover the tabs</title>
|
||||
<description/>
|
||||
</hook>
|
||||
<hook id="displayBackOfficeFooter" live_edit="0" is_native="0">
|
||||
<name>displayBackOfficeFooter</name>
|
||||
<title>Administration panel footer</title>
|
||||
<description/>
|
||||
</hook>
|
||||
<hook id="actionProductAttributeDelete" live_edit="0" is_native="0">
|
||||
<name>actionProductAttributeDelete</name>
|
||||
<title>Product Attribute Deletion</title>
|
||||
<description/>
|
||||
</hook>
|
||||
<hook id="actionCarrierProcess" live_edit="0" is_native="0">
|
||||
<name>actionCarrierProcess</name>
|
||||
<title>Carrier Process</title>
|
||||
<description/>
|
||||
</hook>
|
||||
<hook id="actionOrderDetail" live_edit="0" is_native="0">
|
||||
<name>actionOrderDetail</name>
|
||||
<title>Order Detail</title>
|
||||
<description>To set the follow-up in smarty when order detail is called</description>
|
||||
</hook>
|
||||
<hook id="displayBeforeCarrier" live_edit="0" is_native="0">
|
||||
<name>displayBeforeCarrier</name>
|
||||
<title>Before carrier list</title>
|
||||
<description>This hook is display before the carrier list on Front office</description>
|
||||
</hook>
|
||||
<hook id="displayOrderDetail" live_edit="0" is_native="0">
|
||||
<name>displayOrderDetail</name>
|
||||
<title>Order detail displayed</title>
|
||||
<description>Displayed on order detail on front office</description>
|
||||
</hook>
|
||||
<hook id="actionPaymentCCAdd" live_edit="0" is_native="0">
|
||||
<name>actionPaymentCCAdd</name>
|
||||
<title>Payment CC added</title>
|
||||
<description>Payment CC added</description>
|
||||
</hook>
|
||||
<hook id="displayProductComparison" live_edit="0" is_native="0">
|
||||
<name>displayProductComparison</name>
|
||||
<title>Extra Product Comparison</title>
|
||||
<description>Extra Product Comparison</description>
|
||||
</hook>
|
||||
<hook id="actionCategoryAdd" live_edit="0" is_native="0">
|
||||
<name>actionCategoryAdd</name>
|
||||
<title>Category creation</title>
|
||||
<description/>
|
||||
</hook>
|
||||
<hook id="actionCategoryUpdate" live_edit="0" is_native="0">
|
||||
<name>actionCategoryUpdate</name>
|
||||
<title>Category modification</title>
|
||||
<description/>
|
||||
</hook>
|
||||
<hook id="actionCategoryDelete" live_edit="0" is_native="0">
|
||||
<name>actionCategoryDelete</name>
|
||||
<title>Category removal</title>
|
||||
<description/>
|
||||
</hook>
|
||||
<hook id="actionBeforeAuthentication" live_edit="0" is_native="0">
|
||||
<name>actionBeforeAuthentication</name>
|
||||
<title>Before Authentication</title>
|
||||
<description>Before authentication</description>
|
||||
</hook>
|
||||
<hook id="displayPaymentTop" live_edit="0" is_native="0">
|
||||
<name>displayPaymentTop</name>
|
||||
<title>Top of payment page</title>
|
||||
<description>Top of payment page</description>
|
||||
</hook>
|
||||
<hook id="actionHtaccessCreate" live_edit="0" is_native="0">
|
||||
<name>actionHtaccessCreate</name>
|
||||
<title>After htaccess creation</title>
|
||||
<description>After htaccess creation</description>
|
||||
</hook>
|
||||
<hook id="actionAdminMetaSave" live_edit="0" is_native="0">
|
||||
<name>actionAdminMetaSave</name>
|
||||
<title>After save configuration in AdminMeta</title>
|
||||
<description>After save configuration in AdminMeta</description>
|
||||
</hook>
|
||||
<hook id="displayAttributeGroupForm" live_edit="0" is_native="0">
|
||||
<name>displayAttributeGroupForm</name>
|
||||
<title>Add fileds to the form "attribute group"</title>
|
||||
<description>Add fileds to the form "attribute group"</description>
|
||||
</hook>
|
||||
<hook id="actionAttributeGroupSave" live_edit="0" is_native="0">
|
||||
<name>actionAttributeGroupSave</name>
|
||||
<title>On saving attribute group</title>
|
||||
<description>On saving attribute group</description>
|
||||
</hook>
|
||||
<hook id="actionAttributeGroupDelete" live_edit="0" is_native="0">
|
||||
<name>actionAttributeGroupDelete</name>
|
||||
<title>On deleting attribute group</title>
|
||||
<description>On deleting attribute group</description>
|
||||
</hook>
|
||||
<hook id="displayFeatureForm" live_edit="0" is_native="0">
|
||||
<name>displayFeatureForm</name>
|
||||
<title>Add fields to the form "feature"</title>
|
||||
<description>Add fields to the form "feature"</description>
|
||||
</hook>
|
||||
<hook id="actionFeatureSave" live_edit="0" is_native="0">
|
||||
<name>actionFeatureSave</name>
|
||||
<title>On saving attribute feature</title>
|
||||
<description>On saving attribute feature</description>
|
||||
</hook>
|
||||
<hook id="actionFeatureDelete" live_edit="0" is_native="0">
|
||||
<name>actionFeatureDelete</name>
|
||||
<title>On deleting attribute feature</title>
|
||||
<description>On deleting attribute feature</description>
|
||||
</hook>
|
||||
<hook id="actionProductSave" live_edit="0" is_native="0">
|
||||
<name>actionProductSave</name>
|
||||
<title>On saving products</title>
|
||||
<description>On saving products</description>
|
||||
</hook>
|
||||
<hook id="actionProductListOverride" live_edit="0" is_native="0">
|
||||
<name>actionProductListOverride</name>
|
||||
<title>Assign product list to a category</title>
|
||||
<description>Assign product list to a category</description>
|
||||
</hook>
|
||||
<hook id="displayAttributeGroupPostProcess" live_edit="0" is_native="0">
|
||||
<name>displayAttributeGroupPostProcess</name>
|
||||
<title>On post-process in admin attribute group</title>
|
||||
<description>On post-process in admin attribute group</description>
|
||||
</hook>
|
||||
<hook id="displayFeaturePostProcess" live_edit="0" is_native="0">
|
||||
<name>displayFeaturePostProcess</name>
|
||||
<title>On post-process in admin feature</title>
|
||||
<description>On post-process in admin feature</description>
|
||||
</hook>
|
||||
<hook id="displayFeatureValueForm" live_edit="0" is_native="0">
|
||||
<name>displayFeatureValueForm</name>
|
||||
<title>Add fileds to the form "feature value"</title>
|
||||
<description>Add fileds to the form "feature value"</description>
|
||||
</hook>
|
||||
<hook id="displayFeatureValuePostProcess" live_edit="0" is_native="0">
|
||||
<name>displayFeatureValuePostProcess</name>
|
||||
<title>On post-process in admin feature value</title>
|
||||
<description>On post-process in admin feature value</description>
|
||||
</hook>
|
||||
<hook id="actionFeatureValueDelete" live_edit="0" is_native="0">
|
||||
<name>actionFeatureValueDelete</name>
|
||||
<title>On deleting attribute feature value</title>
|
||||
<description>On deleting attribute feature value</description>
|
||||
</hook>
|
||||
<hook id="actionFeatureValueSave" live_edit="0" is_native="0">
|
||||
<name>actionFeatureValueSave</name>
|
||||
<title>On saving attribute feature value</title>
|
||||
<description>On saving attribute feature value</description>
|
||||
</hook>
|
||||
<hook id="displayAttributeForm" live_edit="0" is_native="0">
|
||||
<name>displayAttributeForm</name>
|
||||
<title>Add fileds to the form "feature value"</title>
|
||||
<description>Add fileds to the form "feature value"</description>
|
||||
</hook>
|
||||
<hook id="actionAttributePostProcess" live_edit="0" is_native="0">
|
||||
<name>actionAttributePostProcess</name>
|
||||
<title>On post-process in admin feature value</title>
|
||||
<description>On post-process in admin feature value</description>
|
||||
</hook>
|
||||
<hook id="actionAttributeDelete" live_edit="0" is_native="0">
|
||||
<name>actionAttributeDelete</name>
|
||||
<title>On deleting attribute feature value</title>
|
||||
<description>On deleting attribute feature value</description>
|
||||
</hook>
|
||||
<hook id="actionAttributeSave" live_edit="0" is_native="0">
|
||||
<name>actionAttributeSave</name>
|
||||
<title>On saving attribute feature value</title>
|
||||
<description>On saving attribute feature value</description>
|
||||
</hook>
|
||||
<hook id="actionTaxManager" live_edit="0" is_native="0">
|
||||
<name>actionTaxManager</name>
|
||||
<title>Tax Manager Factory</title>
|
||||
<description/>
|
||||
</hook>
|
||||
<hook id="displayMyAccountBlock" live_edit="0" is_native="0">
|
||||
<name>displayMyAccountBlock</name>
|
||||
<title>My account block</title>
|
||||
<description>Display extra informations inside the "my account" block</description>
|
||||
</hook>
|
||||
</entities>
|
||||
</entity_hook>
|
||||
|
||||
+101
-100
@@ -3,306 +3,307 @@
|
||||
<fields id="name" class="Tab" image="t">
|
||||
<field name="id_parent" relation="tab"/>
|
||||
<field name="class_name"/>
|
||||
<field name="active"/>
|
||||
</fields>
|
||||
<entities>
|
||||
<tab id="Catalog" id_parent="">
|
||||
<tab id="Catalog" id_parent="" active="1">
|
||||
<class_name>AdminCatalog</class_name>
|
||||
</tab>
|
||||
<tab id="Customers" id_parent="">
|
||||
<tab id="Customers" id_parent="" active="1">
|
||||
<class_name>AdminCustomers</class_name>
|
||||
</tab>
|
||||
<tab id="Orders" id_parent="">
|
||||
<tab id="Orders" id_parent="" active="1">
|
||||
<class_name>AdminOrders</class_name>
|
||||
</tab>
|
||||
<tab id="Payment" id_parent="">
|
||||
<tab id="Payment" id_parent="" active="1">
|
||||
<class_name>AdminPayment</class_name>
|
||||
</tab>
|
||||
<tab id="Shipping" id_parent="">
|
||||
<tab id="Shipping" id_parent="" active="1">
|
||||
<class_name>AdminShipping</class_name>
|
||||
</tab>
|
||||
<tab id="Stats" id_parent="">
|
||||
<tab id="Stats" id_parent="" active="1">
|
||||
<class_name>AdminStats</class_name>
|
||||
</tab>
|
||||
<tab id="Modules" id_parent="">
|
||||
<tab id="Modules" id_parent="" active="1">
|
||||
<class_name>AdminModules</class_name>
|
||||
</tab>
|
||||
<tab id="Preferences" id_parent="">
|
||||
<tab id="Preferences" id_parent="" active="1">
|
||||
<class_name>AdminPreferences</class_name>
|
||||
</tab>
|
||||
<tab id="Tools" id_parent="">
|
||||
<tab id="Tools" id_parent="" active="1">
|
||||
<class_name>AdminTools</class_name>
|
||||
</tab>
|
||||
<tab id="Manufacturers" id_parent="Catalog">
|
||||
<tab id="Manufacturers" id_parent="Catalog" active="1">
|
||||
<class_name>AdminManufacturers</class_name>
|
||||
</tab>
|
||||
<tab id="Attributes_and_Groups" id_parent="Catalog">
|
||||
<tab id="Attributes_and_Groups" id_parent="Catalog" active="1">
|
||||
<class_name>AdminAttributesGroups</class_name>
|
||||
</tab>
|
||||
<tab id="Addresses" id_parent="Customers">
|
||||
<tab id="Addresses" id_parent="Customers" active="1">
|
||||
<class_name>AdminAddresses</class_name>
|
||||
</tab>
|
||||
<tab id="Statuses" id_parent="Orders">
|
||||
<tab id="Statuses" id_parent="Orders" active="1">
|
||||
<class_name>AdminStatuses</class_name>
|
||||
</tab>
|
||||
<tab id="Cart_Rules" id_parent="Payment">
|
||||
<tab id="Cart_Rules" id_parent="Payment" active="1">
|
||||
<class_name>AdminCartRules</class_name>
|
||||
</tab>
|
||||
<tab id="Currencies" id_parent="Payment">
|
||||
<tab id="Currencies" id_parent="Payment" active="1">
|
||||
<class_name>AdminCurrencies</class_name>
|
||||
</tab>
|
||||
<tab id="Taxes" id_parent="Payment">
|
||||
<tab id="Taxes" id_parent="Payment" active="1">
|
||||
<class_name>AdminTaxes</class_name>
|
||||
</tab>
|
||||
<tab id="Carriers" id_parent="Shipping">
|
||||
<tab id="Carriers" id_parent="Shipping" active="1">
|
||||
<class_name>AdminCarriers</class_name>
|
||||
</tab>
|
||||
<tab id="Countries" id_parent="Shipping">
|
||||
<tab id="Countries" id_parent="Shipping" active="1">
|
||||
<class_name>AdminCountries</class_name>
|
||||
</tab>
|
||||
<tab id="Zones" id_parent="Shipping">
|
||||
<tab id="Zones" id_parent="Shipping" active="1">
|
||||
<class_name>AdminZones</class_name>
|
||||
</tab>
|
||||
<tab id="Price_Ranges" id_parent="Shipping">
|
||||
<tab id="Price_Ranges" id_parent="Shipping" active="1">
|
||||
<class_name>AdminRangePrice</class_name>
|
||||
</tab>
|
||||
<tab id="Weight_Ranges" id_parent="Shipping">
|
||||
<tab id="Weight_Ranges" id_parent="Shipping" active="1">
|
||||
<class_name>AdminRangeWeight</class_name>
|
||||
</tab>
|
||||
<tab id="Positions" id_parent="Modules">
|
||||
<tab id="Positions" id_parent="Modules" active="1">
|
||||
<class_name>AdminModulesPositions</class_name>
|
||||
</tab>
|
||||
<tab id="Database" id_parent="Preferences">
|
||||
<tab id="Database" id_parent="Preferences" active="1">
|
||||
<class_name>AdminDb</class_name>
|
||||
</tab>
|
||||
<tab id="E-mail" id_parent="Preferences">
|
||||
<tab id="E-mail" id_parent="Preferences" active="1">
|
||||
<class_name>AdminEmails</class_name>
|
||||
</tab>
|
||||
<tab id="Images" id_parent="Preferences">
|
||||
<tab id="Images" id_parent="Preferences" active="1">
|
||||
<class_name>AdminImages</class_name>
|
||||
</tab>
|
||||
<tab id="Products" id_parent="Preferences">
|
||||
<tab id="Products" id_parent="Preferences" active="1">
|
||||
<class_name>AdminPPreferences</class_name>
|
||||
</tab>
|
||||
<tab id="Contacts" id_parent="tab_29">
|
||||
<tab id="Contacts" id_parent="tab_29" active="1">
|
||||
<class_name>AdminContacts</class_name>
|
||||
</tab>
|
||||
<tab id="tab_29" id_parent="">
|
||||
<tab id="tab_29" id_parent="" active="1">
|
||||
<class_name>AdminEmployees</class_name>
|
||||
</tab>
|
||||
<tab id="Profiles" id_parent="tab_29">
|
||||
<tab id="Profiles" id_parent="tab_29" active="1">
|
||||
<class_name>AdminProfiles</class_name>
|
||||
</tab>
|
||||
<tab id="Permissions" id_parent="tab_29">
|
||||
<tab id="Permissions" id_parent="tab_29" active="1">
|
||||
<class_name>AdminAccess</class_name>
|
||||
</tab>
|
||||
<tab id="Languages" id_parent="Tools">
|
||||
<tab id="Languages" id_parent="Tools" active="1">
|
||||
<class_name>AdminLanguages</class_name>
|
||||
</tab>
|
||||
<tab id="Translations" id_parent="Tools">
|
||||
<tab id="Translations" id_parent="Tools" active="1">
|
||||
<class_name>AdminTranslations</class_name>
|
||||
</tab>
|
||||
<tab id="Suppliers" id_parent="Catalog">
|
||||
<tab id="Suppliers" id_parent="Catalog" active="1">
|
||||
<class_name>AdminSuppliers</class_name>
|
||||
</tab>
|
||||
<tab id="Tabs" id_parent="tab_29">
|
||||
<tab id="Tabs" id_parent="tab_29" active="1">
|
||||
<class_name>AdminTabs</class_name>
|
||||
</tab>
|
||||
<tab id="Features" id_parent="Catalog">
|
||||
<tab id="Features" id_parent="Catalog" active="1">
|
||||
<class_name>AdminFeatures</class_name>
|
||||
</tab>
|
||||
<tab id="Quick_Access" id_parent="Tools">
|
||||
<tab id="Quick_Access" id_parent="Tools" active="1">
|
||||
<class_name>AdminQuickAccesses</class_name>
|
||||
</tab>
|
||||
<tab id="Themes" id_parent="Preferences">
|
||||
<tab id="Themes" id_parent="Preferences" active="1">
|
||||
<class_name>AdminThemes</class_name>
|
||||
</tab>
|
||||
<tab id="Contact_Information" id_parent="Preferences">
|
||||
<tab id="Contact_Information" id_parent="Preferences" active="1">
|
||||
<class_name>AdminContact</class_name>
|
||||
</tab>
|
||||
<tab id="Keyword_Typos" id_parent="Preferences">
|
||||
<tab id="Keyword_Typos" id_parent="Preferences" active="1">
|
||||
<class_name>AdminAliases</class_name>
|
||||
</tab>
|
||||
<tab id="CSV_Import" id_parent="Tools">
|
||||
<tab id="CSV_Import" id_parent="Tools" active="1">
|
||||
<class_name>AdminImport</class_name>
|
||||
</tab>
|
||||
<tab id="Invoices" id_parent="Orders">
|
||||
<tab id="Invoices" id_parent="Orders" active="1">
|
||||
<class_name>AdminInvoices</class_name>
|
||||
</tab>
|
||||
<tab id="Search" id_parent="-1">
|
||||
<tab id="Search" id_parent="-1" active="1">
|
||||
<class_name>AdminSearch</class_name>
|
||||
</tab>
|
||||
<tab id="Localization" id_parent="Preferences">
|
||||
<tab id="Localization" id_parent="Preferences" active="1">
|
||||
<class_name>AdminLocalization</class_name>
|
||||
</tab>
|
||||
<tab id="States" id_parent="Shipping">
|
||||
<tab id="States" id_parent="Shipping" active="1">
|
||||
<class_name>AdminStates</class_name>
|
||||
</tab>
|
||||
<tab id="Merchandise_Returns" id_parent="Orders">
|
||||
<tab id="Merchandise_Returns" id_parent="Orders" active="1">
|
||||
<class_name>AdminReturn</class_name>
|
||||
</tab>
|
||||
<tab id="PDF" id_parent="Orders">
|
||||
<tab id="PDF" id_parent="Orders" active="1">
|
||||
<class_name>AdminPdf</class_name>
|
||||
</tab>
|
||||
<tab id="Credit_Slips" id_parent="Orders">
|
||||
<tab id="Credit_Slips" id_parent="Orders" active="1">
|
||||
<class_name>AdminSlip</class_name>
|
||||
</tab>
|
||||
<tab id="Subdomains" id_parent="Tools">
|
||||
<tab id="Subdomains" id_parent="Tools" active="1">
|
||||
<class_name>AdminSubDomains</class_name>
|
||||
</tab>
|
||||
<tab id="DB_Backup" id_parent="Tools">
|
||||
<tab id="DB_Backup" id_parent="Tools" active="1">
|
||||
<class_name>AdminBackup</class_name>
|
||||
</tab>
|
||||
<tab id="Order_Messages" id_parent="Orders">
|
||||
<tab id="Order_Messages" id_parent="Orders" active="1">
|
||||
<class_name>AdminOrderMessage</class_name>
|
||||
</tab>
|
||||
<tab id="Delivery_Slips" id_parent="Orders">
|
||||
<tab id="Delivery_Slips" id_parent="Orders" active="1">
|
||||
<class_name>AdminDeliverySlip</class_name>
|
||||
</tab>
|
||||
<tab id="SEO_URLs" id_parent="Preferences">
|
||||
<tab id="SEO_URLs" id_parent="Preferences" active="1">
|
||||
<class_name>AdminMeta</class_name>
|
||||
</tab>
|
||||
<tab id="CMS" id_parent="Tools">
|
||||
<tab id="CMS" id_parent="Tools" active="1">
|
||||
<class_name>AdminCmsContent</class_name>
|
||||
</tab>
|
||||
<tab id="Image_Mapping" id_parent="Catalog">
|
||||
<tab id="Image_Mapping" id_parent="Catalog" active="1">
|
||||
<class_name>AdminScenes</class_name>
|
||||
</tab>
|
||||
<tab id="Customer_Messages" id_parent="Orders">
|
||||
<tab id="Customer_Messages" id_parent="Orders" active="1">
|
||||
<class_name>AdminMessages</class_name>
|
||||
</tab>
|
||||
<tab id="Monitoring" id_parent="Catalog">
|
||||
<tab id="Monitoring" id_parent="Catalog" active="1">
|
||||
<class_name>AdminTracking</class_name>
|
||||
</tab>
|
||||
<tab id="Search_Engines" id_parent="Stats">
|
||||
<tab id="Search_Engines" id_parent="Stats" active="1">
|
||||
<class_name>AdminSearchEngines</class_name>
|
||||
</tab>
|
||||
<tab id="Referrers" id_parent="Stats">
|
||||
<tab id="Referrers" id_parent="Stats" active="1">
|
||||
<class_name>AdminReferrers</class_name>
|
||||
</tab>
|
||||
<tab id="Groups" id_parent="Customers">
|
||||
<tab id="Groups" id_parent="Customers" active="1">
|
||||
<class_name>AdminGroups</class_name>
|
||||
</tab>
|
||||
<tab id="Generators" id_parent="Tools">
|
||||
<tab id="Generators" id_parent="Tools" active="1">
|
||||
<class_name>AdminGenerator</class_name>
|
||||
</tab>
|
||||
<tab id="Shopping_Carts" id_parent="Customers">
|
||||
<tab id="Shopping_Carts" id_parent="Customers" active="1">
|
||||
<class_name>AdminCarts</class_name>
|
||||
</tab>
|
||||
<tab id="Tags" id_parent="Catalog">
|
||||
<tab id="Tags" id_parent="Catalog" active="1">
|
||||
<class_name>AdminTags</class_name>
|
||||
</tab>
|
||||
<tab id="Search_1" id_parent="Preferences">
|
||||
<tab id="Search_1" id_parent="Preferences" active="1">
|
||||
<class_name>AdminSearchConf</class_name>
|
||||
</tab>
|
||||
<tab id="Attachments" id_parent="Catalog">
|
||||
<tab id="Attachments" id_parent="Catalog" active="1">
|
||||
<class_name>AdminAttachments</class_name>
|
||||
</tab>
|
||||
<tab id="Configuration_Information" id_parent="Tools">
|
||||
<tab id="Configuration_Information" id_parent="Tools" active="1">
|
||||
<class_name>AdminInformation</class_name>
|
||||
</tab>
|
||||
<tab id="Performance" id_parent="Preferences">
|
||||
<tab id="Performance" id_parent="Preferences" active="1">
|
||||
<class_name>AdminPerformance</class_name>
|
||||
</tab>
|
||||
<tab id="Customer_Service" id_parent="tab_29">
|
||||
<tab id="Customer_Service" id_parent="tab_29" active="1">
|
||||
<class_name>AdminCustomerThreads</class_name>
|
||||
</tab>
|
||||
<tab id="Webservice" id_parent="Tools">
|
||||
<tab id="Webservice" id_parent="Tools" active="1">
|
||||
<class_name>AdminWebservice</class_name>
|
||||
</tab>
|
||||
<tab id="Stock_Movement" id_parent="tab_95">
|
||||
<tab id="Stock_Movement" id_parent="tab_95" active="1">
|
||||
<class_name>AdminStockMvt</class_name>
|
||||
</tab>
|
||||
<tab id="Modules_Themes_Catalog" id_parent="Modules">
|
||||
<tab id="Modules_Themes_Catalog" id_parent="Modules" active="1">
|
||||
<class_name>AdminAddonsCatalog</class_name>
|
||||
</tab>
|
||||
<tab id="My_Account" id_parent="Modules">
|
||||
<tab id="My_Account" id_parent="Modules" active="1">
|
||||
<class_name>AdminAddonsMyAccount</class_name>
|
||||
</tab>
|
||||
<tab id="Stores" id_parent="Tools">
|
||||
<tab id="Stores" id_parent="Tools" active="1">
|
||||
<class_name>AdminStores</class_name>
|
||||
</tab>
|
||||
<tab id="Themes_1" id_parent="Modules">
|
||||
<tab id="Themes_1" id_parent="Modules" active="1">
|
||||
<class_name>AdminThemes</class_name>
|
||||
</tab>
|
||||
<tab id="Geolocation" id_parent="Preferences">
|
||||
<tab id="Geolocation" id_parent="Preferences" active="1">
|
||||
<class_name>AdminGeolocation</class_name>
|
||||
</tab>
|
||||
<tab id="Tax_Rules" id_parent="Payment">
|
||||
<tab id="Tax_Rules" id_parent="Payment" active="1">
|
||||
<class_name>AdminTaxRulesGroup</class_name>
|
||||
</tab>
|
||||
<tab id="Logs" id_parent="Tools">
|
||||
<tab id="Logs" id_parent="Tools" active="1">
|
||||
<class_name>AdminLogs</class_name>
|
||||
</tab>
|
||||
<tab id="Home" id_parent="-1">
|
||||
<tab id="Home" id_parent="-1" active="1">
|
||||
<class_name>AdminHome</class_name>
|
||||
</tab>
|
||||
<tab id="Shops" id_parent="">
|
||||
<tab id="Shops" id_parent="" active="1">
|
||||
<class_name>AdminShop</class_name>
|
||||
</tab>
|
||||
<tab id="Group_Shops" id_parent="Shops">
|
||||
<tab id="Group_Shops" id_parent="Shops" active="1">
|
||||
<class_name>AdminGroupShop</class_name>
|
||||
</tab>
|
||||
<tab id="Shop_Urls" id_parent="Shops">
|
||||
<tab id="Shop_Urls" id_parent="Shops" active="1">
|
||||
<class_name>AdminShopUrl</class_name>
|
||||
</tab>
|
||||
<tab id="Genders" id_parent="Customers">
|
||||
<tab id="Genders" id_parent="Customers" active="1">
|
||||
<class_name>AdminGenders</class_name>
|
||||
</tab>
|
||||
<tab id="SQL_Manager" id_parent="Tools">
|
||||
<tab id="SQL_Manager" id_parent="Tools" active="1">
|
||||
<class_name>AdminRequestSql</class_name>
|
||||
</tab>
|
||||
<tab id="Products_1" id_parent="Catalog">
|
||||
<tab id="Products_1" id_parent="Catalog" active="1">
|
||||
<class_name>AdminProducts</class_name>
|
||||
</tab>
|
||||
<tab id="Categories" id_parent="Catalog">
|
||||
<tab id="Categories" id_parent="Catalog" active="1">
|
||||
<class_name>AdminCategories</class_name>
|
||||
</tab>
|
||||
<tab id="tab_95" id_parent="">
|
||||
<tab id="tab_95" id_parent="" active="1">
|
||||
<class_name>AdminStock</class_name>
|
||||
</tab>
|
||||
<tab id="Warehouses" id_parent="tab_95">
|
||||
<tab id="Warehouses" id_parent="tab_95" active="1">
|
||||
<class_name>AdminWarehouses</class_name>
|
||||
</tab>
|
||||
<tab id="Stock_Management" id_parent="tab_95">
|
||||
<tab id="Stock_Management" id_parent="tab_95" active="1">
|
||||
<class_name>AdminStockManagement</class_name>
|
||||
</tab>
|
||||
<tab id="Stock_instant_state" id_parent="tab_95">
|
||||
<tab id="Stock_instant_state" id_parent="tab_95" active="1">
|
||||
<class_name>AdminStockInstantState</class_name>
|
||||
</tab>
|
||||
<tab id="Stock_cover" id_parent="tab_95">
|
||||
<tab id="Stock_cover" id_parent="tab_95" active="1">
|
||||
<class_name>AdminStockCover</class_name>
|
||||
</tab>
|
||||
<tab id="Supply_orders" id_parent="tab_95">
|
||||
<tab id="Supply_orders" id_parent="tab_95" active="1">
|
||||
<class_name>AdminSupplyOrders</class_name>
|
||||
</tab>
|
||||
<tab id="Combinations_generator" id_parent="-1">
|
||||
<tab id="Combinations_generator" id_parent="-1" active="1">
|
||||
<class_name>AdminAttributeGenerator</class_name>
|
||||
</tab>
|
||||
<tab id="Accounting" id_parent="">
|
||||
<tab id="Accounting" id_parent="" active="1">
|
||||
<class_name>AdminAccounting</class_name>
|
||||
</tab>
|
||||
<tab id="Account_Number_Management" id_parent="Accounting">
|
||||
<tab id="Account_Number_Management" id_parent="Accounting" active="1">
|
||||
<class_name>AdminAccountingManagement</class_name>
|
||||
</tab>
|
||||
<tab id="Export" id_parent="Accounting">
|
||||
<tab id="Export" id_parent="Accounting" active="1">
|
||||
<class_name>AdminAccountingExport</class_name>
|
||||
</tab>
|
||||
<tab id="CMS_categories" id_parent="-1">
|
||||
<tab id="CMS_categories" id_parent="-1" active="1">
|
||||
<class_name>AdminCmsCategories</class_name>
|
||||
</tab>
|
||||
<tab id="CMS_pages" id_parent="-1">
|
||||
<tab id="CMS_pages" id_parent="-1" active="1">
|
||||
<class_name>AdminCms</class_name>
|
||||
</tab>
|
||||
<tab id="tab_107" id_parent="-1">
|
||||
<tab id="tab_107" id_parent="-1" active="1">
|
||||
<class_name>AdminLogin</class_name>
|
||||
</tab>
|
||||
<tab id="Configuration" id_parent="tab_95">
|
||||
<tab id="Configuration" id_parent="tab_95" active="1">
|
||||
<class_name>AdminStockConfiguration</class_name>
|
||||
</tab>
|
||||
<tab id="Catalog_price_rules" id_parent="Catalog">
|
||||
<tab id="Catalog_price_rules" id_parent="Catalog" active="1">
|
||||
<class_name>AdminSpecificPriceRule</class_name>
|
||||
</tab>
|
||||
<tab id="Outstanding" id_parent="Customers">
|
||||
<tab id="Outstanding" id_parent="Customers" active="0">
|
||||
<class_name>AdminOutstanding</class_name>
|
||||
</tab>
|
||||
</entities>
|
||||
|
||||
@@ -0,0 +1,18 @@
|
||||
<?xml version="1.0"?>
|
||||
<entity_category_group>
|
||||
<fields primary="id_category, id_group" sql="a.id_category > 1">
|
||||
<field name="id_category" relation="category"/>
|
||||
<field name="id_group" relation="group"/>
|
||||
</fields>
|
||||
<entities>
|
||||
<category_group id="category_group_2_1" id_category="iPods" id_group="Unidentified"/>
|
||||
<category_group id="category_group_2_2" id_category="iPods" id_group="Guest"/>
|
||||
<category_group id="category_group_2_3" id_category="iPods" id_group="Default"/>
|
||||
<category_group id="category_group_3_1" id_category="Accessories" id_group="Unidentified"/>
|
||||
<category_group id="category_group_3_2" id_category="Accessories" id_group="Guest"/>
|
||||
<category_group id="category_group_3_3" id_category="Accessories" id_group="Default"/>
|
||||
<category_group id="category_group_4_1" id_category="Laptops" id_group="Unidentified"/>
|
||||
<category_group id="category_group_4_2" id_category="Laptops" id_group="Guest"/>
|
||||
<category_group id="category_group_4_3" id_category="Laptops" id_group="Default"/>
|
||||
</entities>
|
||||
</entity_category_group>
|
||||
Binary file not shown.
|
After Width: | Height: | Size: 3.5 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 3.3 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 6.2 KiB |
Reference in New Issue
Block a user