Cybage_Marketplace - Version 1.0.2

Version Notes

After installation of the Marketplace plug-in, please clear the cache.

Download this release

Release Info

Developer Cybage Software Pvt. Ltd.
Extension Cybage_Marketplace
Version 1.0.2
Comparing to
See all releases


Code changes from version 1.0.1 to 1.0.2

app/code/community/Cybage/Marketplace/Model/Customer.php CHANGED
@@ -35,43 +35,6 @@ class Cybage_Marketplace_Model_Customer extends Mage_Customer_Model_Customer
35
  }
36
  // end of custom validation for seller profile
37
 
38
- if (!Zend_Validate::is( trim($customer->getFirstname()) , 'NotEmpty')) {
39
- $errors[] = Mage::helper('customer')->__('The first name cannot be empty.');
40
- }
41
-
42
- if (!Zend_Validate::is( trim($customer->getLastname()) , 'NotEmpty')) {
43
- $errors[] = Mage::helper('customer')->__('The last name cannot be empty.');
44
- }
45
-
46
- if (!Zend_Validate::is($customer->getEmail(), 'EmailAddress')) {
47
- $errors[] = Mage::helper('customer')->__('Invalid email address "%s".', $customer->getEmail());
48
- }
49
-
50
- $password = $customer->getPassword();
51
- if (!$customer->getId() && !Zend_Validate::is($password , 'NotEmpty')) {
52
- $errors[] = Mage::helper('customer')->__('The password cannot be empty.');
53
- }
54
- if (strlen($password) && !Zend_Validate::is($password, 'StringLength', array(6))) {
55
- $errors[] = Mage::helper('customer')->__('The minimum password length is %s', 6);
56
- }
57
- $confirmation = $customer->getConfirmation();
58
- if ($password != $confirmation) {
59
- $errors[] = Mage::helper('customer')->__('Please make sure your passwords match.');
60
- }
61
-
62
- $entityType = Mage::getSingleton('eav/config')->getEntityType('customer');
63
- $attribute = Mage::getModel('customer/attribute')->loadByCode($entityType, 'dob');
64
- if ($attribute->getIsRequired() && '' == trim($customer->getDob())) {
65
- $errors[] = Mage::helper('customer')->__('The Date of Birth is required.');
66
- }
67
- $attribute = Mage::getModel('customer/attribute')->loadByCode($entityType, 'taxvat');
68
- if ($attribute->getIsRequired() && '' == trim($customer->getTaxvat())) {
69
- $errors[] = Mage::helper('customer')->__('The TAX/VAT number is required.');
70
- }
71
- $attribute = Mage::getModel('customer/attribute')->loadByCode($entityType, 'gender');
72
- if ($attribute->getIsRequired() && '' == trim($customer->getGender())) {
73
- $errors[] = Mage::helper('customer')->__('Gender is required.');
74
- }
75
  if (empty($errors)) {
76
  return true;
77
  }
@@ -92,7 +55,9 @@ class Cybage_Marketplace_Model_Customer extends Mage_Customer_Model_Customer
92
  if(Mage::app()->getRequest()->getParam('check_seller_form'))
93
  {
94
  $types = array(
95
- 'registered' => self::XML_PATH_REGISTER_SELLER_EMAIL_TEMPLATE, // welcome email, when confirmation is disabled
 
 
96
  );
97
 
98
 
35
  }
36
  // end of custom validation for seller profile
37
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
38
  if (empty($errors)) {
39
  return true;
40
  }
55
  if(Mage::app()->getRequest()->getParam('check_seller_form'))
56
  {
57
  $types = array(
58
+ 'registered' => self::XML_PATH_REGISTER_SELLER_EMAIL_TEMPLATE, // welcome email, when confirmation is disabled
59
+ 'confirmed' => self::XML_PATH_CONFIRMED_EMAIL_TEMPLATE, // welcome email, when confirmation is enabled
60
+ 'confirmation' => self::XML_PATH_CONFIRM_EMAIL_TEMPLATE, // email with confirmation link
61
  );
62
 
63
 
app/code/community/Cybage/Marketplace/controllers/AccountController.php CHANGED
@@ -25,132 +25,63 @@ class Cybage_Marketplace_AccountController extends Mage_Customer_AccountControll
25
  * Create customer account action
26
  */
27
  public function createPostAction()
28
- {
29
-
30
  $session = $this->_getSession();
31
  if ($session->isLoggedIn()) {
32
  $this->_redirect('*/*/');
33
  return;
34
  }
35
-
36
  $isMarketplaceEnabled = Mage::Helper("marketplace")->isMarketplaceEnabled();
37
- if($isMarketplaceEnabled == false)
38
- {
39
- return parent::createPostAction();
40
  }
41
 
42
  $session->setEscapeMessages(true); // prevent XSS injection in user input
43
- if ($this->getRequest()->isPost()) {
44
- $errors = array();
45
-
46
- if (!$customer = Mage::registry('current_customer')) {
47
- $customer = Mage::getModel('customer/customer')->setId(null);
48
- }
49
-
50
- /* @var $customerForm Mage_Customer_Model_Form */
51
- $customerForm = Mage::getModel('customer/form');
52
- $customerForm->setFormCode('customer_account_create')
53
- ->setEntity($customer);
54
 
55
- $customerData = $customerForm->extractData($this->getRequest());
56
 
57
- if ($this->getRequest()->getParam('is_subscribed', false)) {
58
- $customer->setIsSubscribed(1);
 
 
 
 
59
  }
60
- /**
61
- * Initialize customer group id
62
- */
63
- $customer->getGroupId();
64
-
65
- if ($this->getRequest()->getPost('create_address')) {
66
- /* @var $address Mage_Customer_Model_Address */
67
- $address = Mage::getModel('customer/address');
68
- /* @var $addressForm Mage_Customer_Model_Form */
69
- $addressForm = Mage::getModel('customer/form');
70
- $addressForm->setFormCode('customer_register_address')
71
- ->setEntity($address);
72
-
73
- $addressData = $addressForm->extractData($this->getRequest(), 'address', false);
74
- $addressErrors = $addressForm->validateData($addressData);
75
- if ($addressErrors === true) {
76
- $address->setId(null)
77
- ->setIsDefaultBilling($this->getRequest()->getParam('default_billing', false))
78
- ->setIsDefaultShipping($this->getRequest()->getParam('default_shipping', false));
79
- $addressForm->compactData($addressData);
80
- $customer->addAddress($address);
81
-
82
- $addressErrors = $address->validate();
83
- if (is_array($addressErrors)) {
84
- $errors = array_merge($errors, $addressErrors);
85
- }
86
- } else {
87
- $errors = array_merge($errors, $addressErrors);
88
- }
89
  }
90
 
91
- try {
92
- $customerErrors = $customerForm->validateData($customerData);
93
- if ($customerErrors !== true) {
94
- $errors = array_merge($customerErrors, $errors);
95
- } else {
96
- $customerForm->compactData($customerData);
97
- $customer->setPassword($this->getRequest()->getPost('password'));
98
- $customer->setConfirmation($this->getRequest()->getPost('confirmation'));
99
- if($this->getRequest()->getParam('check_seller_form'))
100
- {
101
- $validationFlag = 1;
102
- }
103
- else
104
- {
105
- $validationFlag = 0;
106
- }
107
- if($validationFlag == 1)
108
- {
109
- $customer->setData($this->getRequest()->getPost());
110
- $customerErrors = Mage::getModel('marketplace/customer')->customValidate($customer);
111
- }
112
 
113
- $customerErrors = $customer->validate();
114
- if (is_array($customerErrors)) {
115
- $errors = array_merge($customerErrors, $errors);
 
 
 
 
 
 
116
  }
117
- }
118
-
119
- $validationResult = count($errors) == 0;
120
 
121
- if (true === $validationResult) {
122
- $customer->save();
 
 
 
 
 
 
123
 
124
- Mage::dispatchEvent('customer_register_success',
125
- array('account_controller' => $this, 'customer' => $customer)
126
- );
127
-
128
- $validationFlag = 0;
129
- // saving seller information
130
- if($this->getRequest()->getParam('check_seller_form'))
131
- {
132
- $customerId = $customer->getEntityId();
133
- /******************** company banner upload code ******************************** */
134
- if (isset($_FILES['company_banner']['name']) && $_FILES['company_banner']['name'] != '')
135
- {
136
- $fileName = $_FILES['company_banner']['name'];
137
- $fieldName = 'company_banner';
138
-
139
- $companyBanner = $this->_uploadImage($fileName,$fieldName,$customerId);
140
- $customer->setCompanyBanner($companyBanner);
141
- }
142
- /******************* end of company banner code ******************************** */
143
-
144
- /******************** company logo upload code ******************************** */
145
- if (isset($_FILES['company_logo']['name']) && $_FILES['company_logo']['name'] != '')
146
- {
147
- $fileName = $_FILES['company_logo']['name'];
148
- $fieldName = 'company_logo';
149
- $companyLogo = $this->_uploadImage($fileName,$fieldName,$customerId);
150
- $customer->setCompanyLogo($companyLogo);
151
- }
152
- /******************* end of company logo code ******************************** */
153
-
154
  $customer->setCompanyLocality($this->getRequest()->getPost('company_locality'));
155
  $customer->setCompanyName($this->getRequest()->getPost('company_name'));
156
  $customer->setCompanyDescription($this->getRequest()->getPost('company_description'));
@@ -162,56 +93,33 @@ class Cybage_Marketplace_AccountController extends Mage_Customer_AccountControll
162
  } else {
163
  $customer->setStatus(Mage::getStoreConfig('marketplace/status/pending'));
164
  }
165
-
166
- $validationFlag = 1;
167
- }
168
- else
169
- {
170
- $customer->setSellerSubscriber(0);
171
- }
172
-
173
- if ($customer->isConfirmationRequired()) {
174
- Mage::getModel('marketplace/customer')->sendNewAccountEmail(
175
- 'confirmation',
176
- $session->getBeforeAuthUrl(),
177
- Mage::app()->getStore()->getId()
178
- );
179
- $session->addSuccess($this->__('Account confirmation is required. Please, check your email for the confirmation link. To resend the confirmation email please <a href="%s">click here</a>.', Mage::helper('customer')->getEmailConfirmationUrl($customer->getEmail())));
180
- $this->_redirectSuccess(Mage::getUrl('*/*/index', array('_secure'=>true)));
181
- return;
182
- } else {
183
- $session->setCustomerAsLoggedIn($customer);
184
- $url = $this->_welcomeCustomer($customer);
185
- $this->_redirectSuccess($url);
186
- return;
187
- }
188
- } else {
189
- $session->setCustomerFormData($this->getRequest()->getPost());
190
- if (is_array($errors)) {
191
- foreach ($errors as $errorMessage) {
192
- $session->addError($errorMessage);
193
- }
194
- } else {
195
- $session->addError($this->__('Invalid customer data'));
196
- }
197
- }
198
- } catch (Mage_Core_Exception $e) {
199
- $session->setCustomerFormData($this->getRequest()->getPost());
200
- if ($e->getCode() === Mage_Customer_Model_Customer::EXCEPTION_EMAIL_EXISTS) {
201
- $url = Mage::getUrl('customer/account/forgotpassword');
202
- $message = $this->__('There is already an account with this email address. If you are sure that it is your email address, <a href="%s">click here</a> to get your password and access your account.', $url);
203
- $session->setEscapeMessages(false);
204
  } else {
205
- $message = $e->getMessage();
206
  }
207
- $session->addError($message);
208
- } catch (Exception $e) {
209
- $session->setCustomerFormData($this->getRequest()->getPost())
210
- ->addException($e, $this->__('Cannot save the customer.'));
 
 
 
211
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
212
  }
213
-
214
- $this->_redirectError(Mage::getUrl('*/*/create', array('_secure' => true)));
215
  }
216
 
217
  /**
@@ -340,7 +248,12 @@ class Cybage_Marketplace_AccountController extends Mage_Customer_AccountControll
340
  * will be validated later to match each other and be of right length
341
  */
342
  $customer->setPassword($newPass);
343
- $customer->setConfirmation($confPass);
 
 
 
 
 
344
  } else {
345
  $errors[] = $this->__('New password field cannot be empty.');
346
  }
25
  * Create customer account action
26
  */
27
  public function createPostAction()
28
+ {
 
29
  $session = $this->_getSession();
30
  if ($session->isLoggedIn()) {
31
  $this->_redirect('*/*/');
32
  return;
33
  }
34
+
35
  $isMarketplaceEnabled = Mage::Helper("marketplace")->isMarketplaceEnabled();
36
+ if($isMarketplaceEnabled == false) {
37
+ return parent::createPostAction();
 
38
  }
39
 
40
  $session->setEscapeMessages(true); // prevent XSS injection in user input
41
+ if (!$this->getRequest()->isPost()) {
42
+ $errUrl = $this->_getUrl('*/*/create', array('_secure' => true));
43
+ $this->_redirectError($errUrl);
44
+ return;
45
+ }
 
 
 
 
 
 
46
 
47
+ $customer = $this->_getCustomer();
48
 
49
+ try {
50
+ $errors = $this->_getCustomerErrors($customer);
51
+ if($this->getRequest()->getParam('check_seller_form')) {
52
+ $customer->setCompanyLocality($this->getRequest()->getPost('company_locality'));
53
+ $customer->setCompanyName($this->getRequest()->getPost('company_name'));
54
+ $customerErrors = Mage::getModel('marketplace/customer')->customValidate($customer);
55
  }
56
+
57
+ if (is_array($customerErrors)) {
58
+ $errors = array_merge($customerErrors, $errors);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
59
  }
60
 
61
+ if (empty($errors)) {
62
+ $customer->cleanPasswordsValidationData();
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
63
 
64
+ // saving seller information
65
+ if($this->getRequest()->getParam('check_seller_form')) {
66
+ $customerId = $customer->getEntityId();
67
+ /******************** company banner upload code ******************************** */
68
+ if (isset($_FILES['company_banner']['name']) && $_FILES['company_banner']['name'] != '') {
69
+ $fileName = $_FILES['company_banner']['name'];
70
+ $fieldName = 'company_banner';
71
+ $companyBanner = $this->_uploadImage($fileName,$fieldName,$customerId);
72
+ $customer->setCompanyBanner($companyBanner);
73
  }
74
+ /******************* end of company banner code ******************************** */
 
 
75
 
76
+ /******************** company logo upload code ******************************** */
77
+ if (isset($_FILES['company_logo']['name']) && $_FILES['company_logo']['name'] != '') {
78
+ $fileName = $_FILES['company_logo']['name'];
79
+ $fieldName = 'company_logo';
80
+ $companyLogo = $this->_uploadImage($fileName,$fieldName,$customerId);
81
+ $customer->setCompanyLogo($companyLogo);
82
+ }
83
+ /******************* end of company logo code ******************************** */
84
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
85
  $customer->setCompanyLocality($this->getRequest()->getPost('company_locality'));
86
  $customer->setCompanyName($this->getRequest()->getPost('company_name'));
87
  $customer->setCompanyDescription($this->getRequest()->getPost('company_description'));
93
  } else {
94
  $customer->setStatus(Mage::getStoreConfig('marketplace/status/pending'));
95
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
96
  } else {
97
+ $customer->setSellerSubscriber(0);
98
  }
99
+
100
+ $customer->save();
101
+ $this->_dispatchRegisterSuccess($customer);
102
+ $this->_successProcessRegistration($customer);
103
+ return;
104
+ } else {
105
+ $this->_addSessionError($errors);
106
  }
107
+ } catch (Mage_Core_Exception $e) {
108
+ $session->setCustomerFormData($this->getRequest()->getPost());
109
+ if ($e->getCode() === Mage_Customer_Model_Customer::EXCEPTION_EMAIL_EXISTS) {
110
+ $url = $this->_getUrl('customer/account/forgotpassword');
111
+ $message = $this->__('There is already an account with this email address. If you are sure that it is your email address, <a href="%s">click here</a> to get your password and access your account.', $url);
112
+ $session->setEscapeMessages(false);
113
+ } else {
114
+ $message = $e->getMessage();
115
+ }
116
+ $session->addError($message);
117
+ } catch (Exception $e) {
118
+ $session->setCustomerFormData($this->getRequest()->getPost())
119
+ ->addException($e, $this->__('Cannot save the customer.'));
120
  }
121
+ $errUrl = $this->_getUrl('*/*/create', array('_secure' => true));
122
+ $this->_redirectError($errUrl);
123
  }
124
 
125
  /**
248
  * will be validated later to match each other and be of right length
249
  */
250
  $customer->setPassword($newPass);
251
+
252
+ // This is used for compatible with 1.9.1.0
253
+ if (version_compare(Mage::getVersion(), '1.9.1.0', '>='))
254
+ $customer->setPasswordConfirmation($confPass);
255
+ else
256
+ $customer->setConfirmation($confPass);
257
  } else {
258
  $errors[] = $this->__('New password field cannot be empty.');
259
  }
app/code/community/Cybage/Marketplace/controllers/ProductquestionController.php CHANGED
@@ -26,9 +26,9 @@ class Cybage_Marketplace_ProductquestionController extends Mage_Core_Controller_
26
 
27
  try {
28
  Mage::getModel('marketplace/question')->saveQuestions();
29
- Mage::getSingleton('core/session')->addSuccess($this->__('Question was successfully submitted!!'));
30
  } catch (Exception $e) {
31
- Mage::getSingleton('core/session')->addError($this->__('Question was not submitted, Please Try After Some Time.'));
32
  }
33
  $block = $this->getLayout()->createBlock('core/messages', 'global_messages');
34
  $html = $block->toHtml();
26
 
27
  try {
28
  Mage::getModel('marketplace/question')->saveQuestions();
29
+ Mage::getSingleton('core/session')->addSuccess($this->__('Your query was sent to the seller. The seller shall get back to you soon!!'));
30
  } catch (Exception $e) {
31
+ Mage::getSingleton('core/session')->addError($this->__('There was some technical problem processing your request, Please try after some time.'));
32
  }
33
  $block = $this->getLayout()->createBlock('core/messages', 'global_messages');
34
  $html = $block->toHtml();
app/code/community/Cybage/Marketplace/etc/config.xml CHANGED
@@ -22,7 +22,7 @@
22
  <config>
23
  <modules>
24
  <Cybage_Marketplace>
25
- <version>0.1.8</version>
26
  </Cybage_Marketplace>
27
  </modules>
28
  <frontend>
22
  <config>
23
  <modules>
24
  <Cybage_Marketplace>
25
+ <version>0.1.9</version>
26
  </Cybage_Marketplace>
27
  </modules>
28
  <frontend>
app/code/community/Cybage/Marketplace/sql/marketplace_setup/mysql4-upgrade-0.1.8-0.1.9.php ADDED
@@ -0,0 +1,24 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Cybage Marketplace Plugin
4
+ *
5
+ * NOTICE OF LICENSE
6
+ *
7
+ * This source file is subject to the Open Software License (OSL 3.0)
8
+ * It is available on the World Wide Web at:
9
+ * http://opensource.org/licenses/osl-3.0.php
10
+ * If you are unable to access it on the World Wide Web, please send an email
11
+ * To: Support_Magento@cybage.com. We will send you a copy of the source file.
12
+ *
13
+ * @category Marketplace Plugin
14
+ * @package Cybage_Marketplace
15
+ * @copyright Copyright (c) 2014 Cybage Software Pvt. Ltd., India
16
+ * http://www.cybage.com/pages/centers-of-excellence/ecommerce/ecommerce.aspx
17
+ * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
18
+ * @author Cybage Software Pvt. Ltd. <Support_Magento@cybage.com>
19
+ */
20
+
21
+ $installer = Mage::getResourceModel('catalog/setup', 'catalog_setup');
22
+ $installer->startSetup();
23
+ $installer->updateAttribute('catalog_product', 'seller_id', 'used_in_product_listing', 1);
24
+ $installer->endSetup();
app/design/frontend/base/default/layout/marketplace.xml CHANGED
@@ -88,12 +88,12 @@
88
  <action method="addItem">
89
  <type>js</type>
90
  <name>tiny_mce/tiny_mce.js</name>
91
- </action>
92
  <action method="setTitle" translate="title" module="marketplace">
93
  <title>Marketplace Product Add</title>
94
  </action>
95
  </reference>
96
-
97
  <update handle="customer_account"/>
98
  <reference name="content">
99
  <!--<remove name="viewed_product" /> -->
@@ -145,7 +145,7 @@
145
  <action method="addItem">
146
  <type>js</type>
147
  <name>tiny_mce/tiny_mce.js</name>
148
- </action>
149
  <action method="setTitle" translate="title" module="marketplace">
150
  <title>Marketplace Product Edit</title>
151
  </action>
@@ -198,22 +198,34 @@
198
  </block>
199
  </reference>
200
  </marketplace_account_vieworder>
201
-
202
  <marketplace_order_printorder>
203
  <reference name="root">
204
- <action method="setTemplate"><template>page/empty.phtml</template></action>
 
 
205
  </reference>
206
  <reference name="content">
207
  <block type="marketplace/myorders_view" name="marketplace.myordersprint" template="marketplace/customer/account/print.phtml">
208
- <action method="addItemRender"><type>default</type><block>sales/order_item_renderer_default</block><template>sales/order/items/renderer/default.phtml</template></action>
209
- <action method="addItemRender"><type>grouped</type><block>sales/order_item_renderer_grouped</block><template>sales/order/items/renderer/default.phtml</template></action>
 
 
 
 
 
 
 
 
210
  </block>
211
  </reference>
212
  </marketplace_order_printorder>
213
-
214
  <customer_account translate="label">
215
  <reference name="customer_account_navigation">
216
- <action method="setTemplate"><template>marketplace/customer/account/navigation.phtml</template></action>
 
 
217
  <action method="addLink" translate="label" module="customer">
218
  <name>marketplace</name>
219
  <path>marketplace/dashboard</path>
@@ -228,7 +240,7 @@
228
  <name>marketplace_product</name>
229
  <path>marketplace/product</path>
230
  <label>Marketplace Product</label>
231
- </action>
232
  <action method="addLink" translate="label" module="customer">
233
  <name>marketplace_product_add</name>
234
  <path>marketplace/product/add</path>
@@ -248,26 +260,31 @@
248
  </customer_account>
249
 
250
  <catalog_product_view>
251
- <reference name="head">
252
  <action method="addItem">
253
  <type>skin_css</type>
254
  <name>css/marketplace/jquery.fancybox-1.3.4.css</name>
 
255
  </action>
256
  <action method="addItem">
257
  <type>js</type>
258
  <name>marketplace/fancybox/jquery-1.7.2.min.js</name>
 
259
  </action>
260
  <action method="addItem">
261
  <type>js</type>
262
  <name>marketplace/fancybox/jquery.noconflict.js</name>
 
263
  </action>
264
  <action method="addItem">
265
  <type>js</type>
266
  <name>marketplace/fancybox/jquery.mousewheel-3.0.4.pack.js</name>
267
- </action>
 
268
  <action method="addItem">
269
  <type>js</type>
270
  <name>marketplace/fancybox/jquery.fancybox-1.3.4.pack.js</name>
 
271
  </action>
272
  </reference>
273
  <reference name="product.info">
@@ -282,7 +299,7 @@
282
  <marketplace_productquestion_link>
283
  <reference name="root">
284
  <action method="setTemplate">
285
- <template>page/popup.phtml</template>
286
  </action>
287
  </reference>
288
  <reference name="head">
@@ -290,12 +307,12 @@
290
  <type>skin_css</type>
291
  <name>css/marketplace/styles.css</name>
292
  </action>
293
- </reference>
294
- <reference name="content">
295
  <block type="core/template" name="product.ask.form" template="marketplace/catalog/product/askquestion/form.phtml">
296
  <block type="core/messages" name="global_messages" as="global_messages"/>
297
  </block>
298
- </reference>
299
  </marketplace_productquestion_link>
300
 
301
  <marketplace_order_history translate="label">
@@ -354,9 +371,9 @@
354
  <template>page/2columns-left.phtml</template>
355
  </action>
356
  </reference>
357
-
358
  <update handle="customer_account"/>
359
-
360
  <reference name="content">
361
  <block type="marketplace/product_askquestion_replyform" name="marketplace.product.askquestion.reply.form" as="product_askquestion_replyform" template="marketplace/catalog/product/askquestion/reply_form.phtml"/>
362
  </reference>
@@ -365,7 +382,9 @@
365
  <!-- //Layout node for sellerinfo page -->
366
  <marketplace_seller_sellerinfo translate="label">
367
  <reference name="root">
368
- <action method="setTemplate"><template>page/2columns-left.phtml</template></action>
 
 
369
  </reference>
370
  <reference name="head">
371
  <action method="addItem">
@@ -387,7 +406,9 @@
387
 
388
  <marketplace_seller_rating translate="label">
389
  <reference name="root">
390
- <action method="setTemplate"><template>page/2columns-left.phtml</template></action>
 
 
391
  </reference>
392
  <reference name="head">
393
  <action method="addItem">
@@ -399,34 +420,36 @@
399
  </action>
400
  </reference>
401
  <reference name="content">
402
- <block type="marketplace/review_product_view" name="seller_rating" template="marketplace/review/product/view/list.phtml">
403
  </block>
404
  <block type="core/template" name="product_review" as="product_review" template="marketplace/seller/seller_ratings.phtml" />
405
  </reference>
406
  </marketplace_seller_rating>
407
 
408
- <customer_account_edit translate="label">
409
- <reference name="head">
410
- <action method="addItem">
411
  <type>js</type>
412
  <name>marketplace/nicEdit-latest.js</name>
413
- </action>
414
  </reference>
415
- <reference name="my.account.wrapper">
416
  <block type="customer/form_edit" name="customer_edit" template="marketplace/customer/form/edit.phtml"/>
417
- </reference>
418
  </customer_account_edit>
419
 
420
  <customer_account_create>
421
  <reference name="customer_form_register">
422
- <action method="setTemplate"><template>marketplace/persistent/customer/form/register.phtml</template></action>
 
 
423
  <block type="persistent/form_remember" name="persistent.remember.me" template="persistent/remember_me.phtml" />
424
  <block type="core/template" name="persistent.remember.me.tooltip" template="persistent/remember_me_tooltip.phtml" />
425
  </reference>
426
  </customer_account_create>
427
 
428
  <sales_order_view translate="label">
429
- <reference name="head">
430
  <action method="addItem">
431
  <type>skin_css</type>
432
  <name>css/marketplace/jquery.fancybox-1.3.4.css</name>
@@ -442,12 +465,12 @@
442
  <action method="addItem">
443
  <type>js</type>
444
  <name>marketplace/fancybox/jquery.mousewheel-3.0.4.pack.js</name>
445
- </action>
446
  <action method="addItem">
447
  <type>js</type>
448
  <name>marketplace/fancybox/jquery.fancybox-1.3.4.pack.js</name>
449
- </action>
450
- <!-- <action method="addItem">
451
  <type>skin_css</type>
452
  <name>css/marketplace/styles.css</name>
453
  </action> -->
@@ -455,8 +478,16 @@
455
  <reference name="my.account.wrapper">
456
  <block type="sales/order_view" name="sales.order.view">
457
  <block type="sales/order_items" name="order_items" template="marketplace/sales/order/items.phtml">
458
- <action method="addItemRender"><type>default</type><block>sales/order_item_renderer_default</block><template>marketplace/sales/order/items/renderer/default.phtml</template></action>
459
- <action method="addItemRender"><type>grouped</type><block>sales/order_item_renderer_grouped</block><template>marketplace/sales/order/items/renderer/default.phtml</template></action>
 
 
 
 
 
 
 
 
460
  </block>
461
  </block>
462
  </reference>
@@ -473,12 +504,12 @@
473
  <type>skin_css</type>
474
  <name>css/marketplace/styles.css</name>
475
  </action>
476
- </reference>
477
- <reference name="content">
478
  <block type="core/template" name="product.ask.form" template="marketplace/sales/order/form.phtml">
479
  <block type="core/messages" name="global_messages" as="global_messages"/>
480
  </block>
481
- </reference>
482
  </marketplace_buyerseller_comment>
483
 
484
  <marketplace_buyerseller_reply>
@@ -487,12 +518,12 @@
487
  <template>page/2columns-left.phtml</template>
488
  </action>
489
  </reference>
490
- <update handle="customer_account"/>
491
- <reference name="content">
492
  <block type="marketplace/buyerseller" name="marketplace.buyerseller" template="marketplace/buyerseller/reply.phtml">
493
  <block type="core/messages" name="global_messages" as="global_messages"/>
494
  </block>
495
- </reference>
496
  </marketplace_buyerseller_reply>
497
 
498
  <marketplace_buyerseller_notification>
@@ -501,10 +532,10 @@
501
  <template>page/2columns-left.phtml</template>
502
  </action>
503
  </reference>
504
- <update handle="customer_account"/>
505
- <reference name="content">
506
  <block type="marketplace/buyerseller" name="marketplace.buyerseller" template="marketplace/buyerseller/notify.phtml"> </block>
507
- </reference>
508
  </marketplace_buyerseller_notification>
509
 
510
  <sales_order_history translate="label">
@@ -528,7 +559,7 @@
528
  <update handle="customer_account"/>
529
  <reference name="content">
530
  <block type="marketplace/myorders" name="marketplace.myorders" template="marketplace/customer/account/shiporder.phtml">
531
- <block type="marketplace/myorders_view" name="marketplace.items" as="items" template="marketplace/customer/account/myorders/shipitems.phtml">
532
  <action method="addItemRender">
533
  <type>default</type>
534
  <block>sales/order_item_renderer_default</block>
@@ -550,38 +581,98 @@
550
 
551
  <checkout_cart_index translate="label">
552
  <reference name="checkout.cart">
553
- <action method="addItemRender"><type>simple</type><block>checkout/cart_item_renderer</block><template>marketplace/checkout/cart/item/default.phtml</template></action>
554
- <action method="addItemRender"><type>grouped</type><block>checkout/cart_item_renderer_grouped</block><template>marketplace/checkout/cart/item/default.phtml</template></action>
555
- <action method="addItemRender"><type>configurable</type><block>checkout/cart_item_renderer_configurable</block><template>marketplace/checkout/cart/item/default.phtml</template></action>
 
 
 
 
 
 
 
 
 
 
 
 
556
  </reference>
557
  </checkout_cart_index>
558
 
559
  <checkout_multishipping_addresses translate="label">
560
  <reference name="checkout_addresses">
561
- <action method="addItemRender"><type>default</type><block>checkout/cart_item_renderer</block><template>marketplace/checkout/multishipping/item/default.phtml</template></action>
562
- <action method="addItemRender"><type>grouped</type><block>checkout/cart_item_renderer_grouped</block><template>marketplace/checkout/multishipping/item/default.phtml</template></action>
563
- <action method="addItemRender"><type>configurable</type><block>checkout/cart_item_renderer_configurable</block><template>marketplace/checkout/multishipping/item/default.phtml</template></action>
 
 
 
 
 
 
 
 
 
 
 
 
564
  </reference>
565
  </checkout_multishipping_addresses>
566
 
567
  <checkout_multishipping_shipping translate="label">
568
  <reference name="checkout_shipping">
569
- <action method="addItemRender"><type>default</type><block>checkout/cart_item_renderer</block><template>marketplace/checkout/multishipping/item/default.phtml</template></action>
570
- <action method="addItemRender"><type>grouped</type><block>checkout/cart_item_renderer_grouped</block><template>marketplace/checkout/multishipping/item/default.phtml</template></action>
571
- <action method="addItemRender"><type>configurable</type><block>checkout/cart_item_renderer_configurable</block><template>marketplace/checkout/multishipping/item/default.phtml</template></action>
 
 
 
 
 
 
 
 
 
 
 
 
572
  </reference>
573
  <reference name="checkout_billing_items">
574
- <action method="addItemRender"><type>default</type><block>checkout/cart_item_renderer</block><template>marketplace/checkout/multishipping/item/default.phtml</template></action>
575
- <action method="addItemRender"><type>grouped</type><block>checkout/cart_item_renderer_grouped</block><template>marketplace/checkout/multishipping/item/default.phtml</template></action>
576
- <action method="addItemRender"><type>configurable</type><block>checkout/cart_item_renderer_configurable</block><template>marketplace/checkout/multishipping/item/default.phtml</template></action>
 
 
 
 
 
 
 
 
 
 
 
 
577
  </reference>
578
  </checkout_multishipping_shipping>
579
 
580
  <checkout_onepage_review translate="label">
581
  <block type="checkout/onepage_review_info" name="root" output="toHtml" template="checkout/onepage/review/info.phtml">
582
- <action method="addItemRender"><type>default</type><block>checkout/cart_item_renderer</block><template>marketplace/checkout/onepage/review/item.phtml</template></action>
583
- <action method="addItemRender"><type>grouped</type><block>checkout/cart_item_renderer_grouped</block><template>marketplace/checkout/onepage/review/item.phtml</template></action>
584
- <action method="addItemRender"><type>configurable</type><block>checkout/cart_item_renderer_configurable</block><template>marketplace/checkout/onepage/review/item.phtml</template></action>
 
 
 
 
 
 
 
 
 
 
 
 
585
  <block type="checkout/cart_totals" name="checkout.onepage.review.info.totals" as="totals" template="checkout/onepage/review/totals.phtml"/>
586
  <block type="core/text_list" name="checkout.onepage.review.info.items.before" as="items_before" translate="label">
587
  <label>Items Before</label>
88
  <action method="addItem">
89
  <type>js</type>
90
  <name>tiny_mce/tiny_mce.js</name>
91
+ </action>
92
  <action method="setTitle" translate="title" module="marketplace">
93
  <title>Marketplace Product Add</title>
94
  </action>
95
  </reference>
96
+
97
  <update handle="customer_account"/>
98
  <reference name="content">
99
  <!--<remove name="viewed_product" /> -->
145
  <action method="addItem">
146
  <type>js</type>
147
  <name>tiny_mce/tiny_mce.js</name>
148
+ </action>
149
  <action method="setTitle" translate="title" module="marketplace">
150
  <title>Marketplace Product Edit</title>
151
  </action>
198
  </block>
199
  </reference>
200
  </marketplace_account_vieworder>
201
+
202
  <marketplace_order_printorder>
203
  <reference name="root">
204
+ <action method="setTemplate">
205
+ <template>page/empty.phtml</template>
206
+ </action>
207
  </reference>
208
  <reference name="content">
209
  <block type="marketplace/myorders_view" name="marketplace.myordersprint" template="marketplace/customer/account/print.phtml">
210
+ <action method="addItemRender">
211
+ <type>default</type>
212
+ <block>sales/order_item_renderer_default</block>
213
+ <template>sales/order/items/renderer/default.phtml</template>
214
+ </action>
215
+ <action method="addItemRender">
216
+ <type>grouped</type>
217
+ <block>sales/order_item_renderer_grouped</block>
218
+ <template>sales/order/items/renderer/default.phtml</template>
219
+ </action>
220
  </block>
221
  </reference>
222
  </marketplace_order_printorder>
223
+
224
  <customer_account translate="label">
225
  <reference name="customer_account_navigation">
226
+ <action method="setTemplate">
227
+ <template>marketplace/customer/account/navigation.phtml</template>
228
+ </action>
229
  <action method="addLink" translate="label" module="customer">
230
  <name>marketplace</name>
231
  <path>marketplace/dashboard</path>
240
  <name>marketplace_product</name>
241
  <path>marketplace/product</path>
242
  <label>Marketplace Product</label>
243
+ </action>
244
  <action method="addLink" translate="label" module="customer">
245
  <name>marketplace_product_add</name>
246
  <path>marketplace/product/add</path>
260
  </customer_account>
261
 
262
  <catalog_product_view>
263
+ <reference name="head">
264
  <action method="addItem">
265
  <type>skin_css</type>
266
  <name>css/marketplace/jquery.fancybox-1.3.4.css</name>
267
+ <condition>if_magento_lt1dot9</condition>
268
  </action>
269
  <action method="addItem">
270
  <type>js</type>
271
  <name>marketplace/fancybox/jquery-1.7.2.min.js</name>
272
+ <condition>if_magento_lt1dot9</condition>
273
  </action>
274
  <action method="addItem">
275
  <type>js</type>
276
  <name>marketplace/fancybox/jquery.noconflict.js</name>
277
+ <condition>if_magento_lt1dot9</condition>
278
  </action>
279
  <action method="addItem">
280
  <type>js</type>
281
  <name>marketplace/fancybox/jquery.mousewheel-3.0.4.pack.js</name>
282
+ <condition>if_magento_lt1dot9</condition>
283
+ </action>
284
  <action method="addItem">
285
  <type>js</type>
286
  <name>marketplace/fancybox/jquery.fancybox-1.3.4.pack.js</name>
287
+ <condition>if_magento_lt1dot9</condition>
288
  </action>
289
  </reference>
290
  <reference name="product.info">
299
  <marketplace_productquestion_link>
300
  <reference name="root">
301
  <action method="setTemplate">
302
+ <template>marketplace/page/blank.phtml</template>
303
  </action>
304
  </reference>
305
  <reference name="head">
307
  <type>skin_css</type>
308
  <name>css/marketplace/styles.css</name>
309
  </action>
310
+ </reference>
311
+ <reference name="content">
312
  <block type="core/template" name="product.ask.form" template="marketplace/catalog/product/askquestion/form.phtml">
313
  <block type="core/messages" name="global_messages" as="global_messages"/>
314
  </block>
315
+ </reference>
316
  </marketplace_productquestion_link>
317
 
318
  <marketplace_order_history translate="label">
371
  <template>page/2columns-left.phtml</template>
372
  </action>
373
  </reference>
374
+
375
  <update handle="customer_account"/>
376
+
377
  <reference name="content">
378
  <block type="marketplace/product_askquestion_replyform" name="marketplace.product.askquestion.reply.form" as="product_askquestion_replyform" template="marketplace/catalog/product/askquestion/reply_form.phtml"/>
379
  </reference>
382
  <!-- //Layout node for sellerinfo page -->
383
  <marketplace_seller_sellerinfo translate="label">
384
  <reference name="root">
385
+ <action method="setTemplate">
386
+ <template>page/2columns-left.phtml</template>
387
+ </action>
388
  </reference>
389
  <reference name="head">
390
  <action method="addItem">
406
 
407
  <marketplace_seller_rating translate="label">
408
  <reference name="root">
409
+ <action method="setTemplate">
410
+ <template>page/2columns-left.phtml</template>
411
+ </action>
412
  </reference>
413
  <reference name="head">
414
  <action method="addItem">
420
  </action>
421
  </reference>
422
  <reference name="content">
423
+ <block type="marketplace/review_product_view" name="seller_rating" template="marketplace/review/product/view/list.phtml">
424
  </block>
425
  <block type="core/template" name="product_review" as="product_review" template="marketplace/seller/seller_ratings.phtml" />
426
  </reference>
427
  </marketplace_seller_rating>
428
 
429
+ <customer_account_edit translate="label">
430
+ <reference name="head">
431
+ <action method="addItem">
432
  <type>js</type>
433
  <name>marketplace/nicEdit-latest.js</name>
434
+ </action>
435
  </reference>
436
+ <reference name="my.account.wrapper">
437
  <block type="customer/form_edit" name="customer_edit" template="marketplace/customer/form/edit.phtml"/>
438
+ </reference>
439
  </customer_account_edit>
440
 
441
  <customer_account_create>
442
  <reference name="customer_form_register">
443
+ <action method="setTemplate">
444
+ <template>marketplace/persistent/customer/form/register.phtml</template>
445
+ </action>
446
  <block type="persistent/form_remember" name="persistent.remember.me" template="persistent/remember_me.phtml" />
447
  <block type="core/template" name="persistent.remember.me.tooltip" template="persistent/remember_me_tooltip.phtml" />
448
  </reference>
449
  </customer_account_create>
450
 
451
  <sales_order_view translate="label">
452
+ <reference name="head">
453
  <action method="addItem">
454
  <type>skin_css</type>
455
  <name>css/marketplace/jquery.fancybox-1.3.4.css</name>
465
  <action method="addItem">
466
  <type>js</type>
467
  <name>marketplace/fancybox/jquery.mousewheel-3.0.4.pack.js</name>
468
+ </action>
469
  <action method="addItem">
470
  <type>js</type>
471
  <name>marketplace/fancybox/jquery.fancybox-1.3.4.pack.js</name>
472
+ </action>
473
+ <!-- <action method="addItem">
474
  <type>skin_css</type>
475
  <name>css/marketplace/styles.css</name>
476
  </action> -->
478
  <reference name="my.account.wrapper">
479
  <block type="sales/order_view" name="sales.order.view">
480
  <block type="sales/order_items" name="order_items" template="marketplace/sales/order/items.phtml">
481
+ <action method="addItemRender">
482
+ <type>default</type>
483
+ <block>sales/order_item_renderer_default</block>
484
+ <template>marketplace/sales/order/items/renderer/default.phtml</template>
485
+ </action>
486
+ <action method="addItemRender">
487
+ <type>grouped</type>
488
+ <block>sales/order_item_renderer_grouped</block>
489
+ <template>marketplace/sales/order/items/renderer/default.phtml</template>
490
+ </action>
491
  </block>
492
  </block>
493
  </reference>
504
  <type>skin_css</type>
505
  <name>css/marketplace/styles.css</name>
506
  </action>
507
+ </reference>
508
+ <reference name="content">
509
  <block type="core/template" name="product.ask.form" template="marketplace/sales/order/form.phtml">
510
  <block type="core/messages" name="global_messages" as="global_messages"/>
511
  </block>
512
+ </reference>
513
  </marketplace_buyerseller_comment>
514
 
515
  <marketplace_buyerseller_reply>
518
  <template>page/2columns-left.phtml</template>
519
  </action>
520
  </reference>
521
+ <update handle="customer_account"/>
522
+ <reference name="content">
523
  <block type="marketplace/buyerseller" name="marketplace.buyerseller" template="marketplace/buyerseller/reply.phtml">
524
  <block type="core/messages" name="global_messages" as="global_messages"/>
525
  </block>
526
+ </reference>
527
  </marketplace_buyerseller_reply>
528
 
529
  <marketplace_buyerseller_notification>
532
  <template>page/2columns-left.phtml</template>
533
  </action>
534
  </reference>
535
+ <update handle="customer_account"/>
536
+ <reference name="content">
537
  <block type="marketplace/buyerseller" name="marketplace.buyerseller" template="marketplace/buyerseller/notify.phtml"> </block>
538
+ </reference>
539
  </marketplace_buyerseller_notification>
540
 
541
  <sales_order_history translate="label">
559
  <update handle="customer_account"/>
560
  <reference name="content">
561
  <block type="marketplace/myorders" name="marketplace.myorders" template="marketplace/customer/account/shiporder.phtml">
562
+ <block type="marketplace/myorders_view" name="marketplace.items" as="items" template="marketplace/customer/account/myorders/shipitems.phtml">
563
  <action method="addItemRender">
564
  <type>default</type>
565
  <block>sales/order_item_renderer_default</block>
581
 
582
  <checkout_cart_index translate="label">
583
  <reference name="checkout.cart">
584
+ <action method="addItemRender">
585
+ <type>simple</type>
586
+ <block>checkout/cart_item_renderer</block>
587
+ <template>marketplace/checkout/cart/item/default.phtml</template>
588
+ </action>
589
+ <action method="addItemRender">
590
+ <type>grouped</type>
591
+ <block>checkout/cart_item_renderer_grouped</block>
592
+ <template>marketplace/checkout/cart/item/default.phtml</template>
593
+ </action>
594
+ <action method="addItemRender">
595
+ <type>configurable</type>
596
+ <block>checkout/cart_item_renderer_configurable</block>
597
+ <template>marketplace/checkout/cart/item/default.phtml</template>
598
+ </action>
599
  </reference>
600
  </checkout_cart_index>
601
 
602
  <checkout_multishipping_addresses translate="label">
603
  <reference name="checkout_addresses">
604
+ <action method="addItemRender">
605
+ <type>default</type>
606
+ <block>checkout/cart_item_renderer</block>
607
+ <template>marketplace/checkout/multishipping/item/default.phtml</template>
608
+ </action>
609
+ <action method="addItemRender">
610
+ <type>grouped</type>
611
+ <block>checkout/cart_item_renderer_grouped</block>
612
+ <template>marketplace/checkout/multishipping/item/default.phtml</template>
613
+ </action>
614
+ <action method="addItemRender">
615
+ <type>configurable</type>
616
+ <block>checkout/cart_item_renderer_configurable</block>
617
+ <template>marketplace/checkout/multishipping/item/default.phtml</template>
618
+ </action>
619
  </reference>
620
  </checkout_multishipping_addresses>
621
 
622
  <checkout_multishipping_shipping translate="label">
623
  <reference name="checkout_shipping">
624
+ <action method="addItemRender">
625
+ <type>default</type>
626
+ <block>checkout/cart_item_renderer</block>
627
+ <template>marketplace/checkout/multishipping/item/default.phtml</template>
628
+ </action>
629
+ <action method="addItemRender">
630
+ <type>grouped</type>
631
+ <block>checkout/cart_item_renderer_grouped</block>
632
+ <template>marketplace/checkout/multishipping/item/default.phtml</template>
633
+ </action>
634
+ <action method="addItemRender">
635
+ <type>configurable</type>
636
+ <block>checkout/cart_item_renderer_configurable</block>
637
+ <template>marketplace/checkout/multishipping/item/default.phtml</template>
638
+ </action>
639
  </reference>
640
  <reference name="checkout_billing_items">
641
+ <action method="addItemRender">
642
+ <type>default</type>
643
+ <block>checkout/cart_item_renderer</block>
644
+ <template>marketplace/checkout/multishipping/item/default.phtml</template>
645
+ </action>
646
+ <action method="addItemRender">
647
+ <type>grouped</type>
648
+ <block>checkout/cart_item_renderer_grouped</block>
649
+ <template>marketplace/checkout/multishipping/item/default.phtml</template>
650
+ </action>
651
+ <action method="addItemRender">
652
+ <type>configurable</type>
653
+ <block>checkout/cart_item_renderer_configurable</block>
654
+ <template>marketplace/checkout/multishipping/item/default.phtml</template>
655
+ </action>
656
  </reference>
657
  </checkout_multishipping_shipping>
658
 
659
  <checkout_onepage_review translate="label">
660
  <block type="checkout/onepage_review_info" name="root" output="toHtml" template="checkout/onepage/review/info.phtml">
661
+ <action method="addItemRender">
662
+ <type>default</type>
663
+ <block>checkout/cart_item_renderer</block>
664
+ <template>marketplace/checkout/onepage/review/item.phtml</template>
665
+ </action>
666
+ <action method="addItemRender">
667
+ <type>grouped</type>
668
+ <block>checkout/cart_item_renderer_grouped</block>
669
+ <template>marketplace/checkout/onepage/review/item.phtml</template>
670
+ </action>
671
+ <action method="addItemRender">
672
+ <type>configurable</type>
673
+ <block>checkout/cart_item_renderer_configurable</block>
674
+ <template>marketplace/checkout/onepage/review/item.phtml</template>
675
+ </action>
676
  <block type="checkout/cart_totals" name="checkout.onepage.review.info.totals" as="totals" template="checkout/onepage/review/totals.phtml"/>
677
  <block type="core/text_list" name="checkout.onepage.review.info.items.before" as="items_before" translate="label">
678
  <label>Items Before</label>
app/design/frontend/base/default/template/marketplace/customer/form/edit.phtml CHANGED
@@ -80,8 +80,8 @@
80
  <li>
81
  <label class="required"><?php echo $this->__('Company Banner').' ('. Mage::getStoreConfig('marketplace/marketplace/default_width'). $this->__('pixel'). ' X '. Mage::getStoreConfig('marketplace/marketplace/default_height') . $this->__('pixel') . ')'; ?></label>
82
  <div class="input-box">
83
- <?php $banner = $this->getCustomer()->getCompanyBanner(); ?>
84
- <img src="<?php echo $banner; ?>" />
85
  <input type="file" id="company_banner" size="20" name="company_banner">
86
  <input type="hidden" name="old_banner" value="<?php echo $banner; ?>" id="old_banner">
87
  </div>
@@ -90,7 +90,7 @@
90
  <label class="required"><?php echo $this->__('Company Logo').' ('. Mage::getStoreConfig('marketplace/marketplace/default_logo_width'). $this->__('pixel'). ' X '. Mage::getStoreConfig('marketplace/marketplace/default_logo_height'). $this->__('pixel') . ')'; ?></label>
91
  <div class="input-box">
92
  <?php $logo = $this->getCustomer()->getCompanyLogo(); ?>
93
- <img src="<?php echo $logo; ?>" />
94
  <input type="file" id="company_logo" size="20" name="company_logo">
95
  <input type="hidden" name="old_logo" value="<?php echo $logo; ?>" id="old_logo">
96
  </div>
80
  <li>
81
  <label class="required"><?php echo $this->__('Company Banner').' ('. Mage::getStoreConfig('marketplace/marketplace/default_width'). $this->__('pixel'). ' X '. Mage::getStoreConfig('marketplace/marketplace/default_height') . $this->__('pixel') . ')'; ?></label>
82
  <div class="input-box">
83
+ <?php $banner = $this->getCustomer()->getCompanyBanner(); ?>
84
+ <?php if($banner) { ?><img src="<?php echo $banner; ?>" /><?php } ?>
85
  <input type="file" id="company_banner" size="20" name="company_banner">
86
  <input type="hidden" name="old_banner" value="<?php echo $banner; ?>" id="old_banner">
87
  </div>
90
  <label class="required"><?php echo $this->__('Company Logo').' ('. Mage::getStoreConfig('marketplace/marketplace/default_logo_width'). $this->__('pixel'). ' X '. Mage::getStoreConfig('marketplace/marketplace/default_logo_height'). $this->__('pixel') . ')'; ?></label>
91
  <div class="input-box">
92
  <?php $logo = $this->getCustomer()->getCompanyLogo(); ?>
93
+ <?php if($logo) { ?><img src="<?php echo $logo; ?>" /><?php } ?>
94
  <input type="file" id="company_logo" size="20" name="company_logo">
95
  <input type="hidden" name="old_logo" value="<?php echo $logo; ?>" id="old_logo">
96
  </div>
app/design/frontend/base/default/template/marketplace/page/blank.phtml ADDED
@@ -0,0 +1 @@
 
1
+ <?php echo $this->getChildHtml('content') ?>
js/marketplace/fancybox/jquery.fancybox-1.3.4.pack.js CHANGED
@@ -15,7 +15,7 @@
15
  * http://www.gnu.org/licenses/gpl.html
16
  */
17
 
18
- ;(function(b){var m,t,u,f,D,j,E,n,z,A,q=0,e={},o=[],p=0,d={},l=[],G=null,v=new Image,J=/\.(jpg|gif|png|bmp|jpeg)(.*)?$/i,W=/[^\.]\.(swf)\s*$/i,K,L=1,y=0,s="",r,i,h=false,B=b.extend(b("<div/>")[0],{prop:0}),M=b.browser.msie&&b.browser.version<7&&!window.XMLHttpRequest,N=function(){t.hide();v.onerror=v.onload=null;G&&G.abort();m.empty()},O=function(){if(false===e.onError(o,q,e)){t.hide();h=false}else{e.titleShow=false;e.width="auto";e.height="auto";m.html('<p id="fancybox-error">The requested content cannot be loaded.<br />Please try again later.</p>');
19
  F()}},I=function(){var a=o[q],c,g,k,C,P,w;N();e=b.extend({},b.fn.fancybox.defaults,typeof b(a).data("fancybox")=="undefined"?e:b(a).data("fancybox"));w=e.onStart(o,q,e);if(w===false)h=false;else{if(typeof w=="object")e=b.extend(e,w);k=e.title||(a.nodeName?b(a).attr("title"):a.title)||"";if(a.nodeName&&!e.orig)e.orig=b(a).children("img:first").length?b(a).children("img:first"):b(a);if(k===""&&e.orig&&e.titleFromAlt)k=e.orig.attr("alt");c=e.href||(a.nodeName?b(a).attr("href"):a.href)||null;if(/^(?:javascript)/i.test(c)||
20
  c=="#")c=null;if(e.type){g=e.type;if(!c)c=e.content}else if(e.content)g="html";else if(c)g=c.match(J)?"image":c.match(W)?"swf":b(a).hasClass("iframe")?"iframe":c.indexOf("#")===0?"inline":"ajax";if(g){if(g=="inline"){a=c.substr(c.indexOf("#"));g=b(a).length>0?"inline":"ajax"}e.type=g;e.href=c;e.title=k;if(e.autoDimensions)if(e.type=="html"||e.type=="inline"||e.type=="ajax"){e.width="auto";e.height="auto"}else e.autoDimensions=false;if(e.modal){e.overlayShow=true;e.hideOnOverlayClick=false;e.hideOnContentClick=
21
  false;e.enableEscapeButton=false;e.showCloseButton=false}e.padding=parseInt(e.padding,10);e.margin=parseInt(e.margin,10);m.css("padding",e.padding+e.margin);b(".fancybox-inline-tmp").unbind("fancybox-cancel").bind("fancybox-change",function(){b(this).replaceWith(j.children())});switch(g){case "html":m.html(e.content);F();break;case "inline":if(b(a).parent().is("#fancybox-content")===true){h=false;break}b('<div class="fancybox-inline-tmp" />').hide().insertBefore(b(a)).bind("fancybox-cleanup",function(){b(this).replaceWith(j.children())}).bind("fancybox-cancel",
@@ -29,7 +29,7 @@ y=n.outerHeight(true);n.appendTo(D);i.height+=y;break;case "over":n.css({marginL
29
  i.height;j.fadeTo(d.changeFade,0.3,function(){var g=function(){j.html(m.contents()).fadeTo(d.changeFade,1,S)};b.event.trigger("fancybox-change");j.empty().removeAttr("filter").css({"border-width":d.padding,width:i.width-d.padding*2,height:e.autoDimensions?"auto":i.height-y-d.padding*2});if(c)g();else{B.prop=0;b(B).animate({prop:1},{duration:d.changeSpeed,easing:d.easingChange,step:T,complete:g})}})}else{f.removeAttr("style");j.css("border-width",d.padding);if(d.transitionIn=="elastic"){r=V();j.html(m.contents());
30
  f.show();if(d.opacity)i.opacity=0;B.prop=0;b(B).animate({prop:1},{duration:d.speedIn,easing:d.easingIn,step:T,complete:S})}else{d.titlePosition=="inside"&&y>0&&n.show();j.css({width:i.width-d.padding*2,height:e.autoDimensions?"auto":i.height-y-d.padding*2}).html(m.contents());f.css(i).fadeIn(d.transitionIn=="none"?0:d.speedIn,S)}}}},Y=function(){if(d.enableEscapeButton||d.enableKeyboardNav)b(document).bind("keydown.fb",function(a){if(a.keyCode==27&&d.enableEscapeButton){a.preventDefault();b.fancybox.close()}else if((a.keyCode==
31
  37||a.keyCode==39)&&d.enableKeyboardNav&&a.target.tagName!=="INPUT"&&a.target.tagName!=="TEXTAREA"&&a.target.tagName!=="SELECT"){a.preventDefault();b.fancybox[a.keyCode==37?"prev":"next"]()}});if(d.showNavArrows){if(d.cyclic&&l.length>1||p!==0)z.show();if(d.cyclic&&l.length>1||p!=l.length-1)A.show()}else{z.hide();A.hide()}},S=function(){if(!b.support.opacity){j.get(0).style.removeAttribute("filter");f.get(0).style.removeAttribute("filter")}e.autoDimensions&&j.css("height","auto");f.css("height","auto");
32
- s&&s.length&&n.show();d.showCloseButton&&E.show();Y();d.hideOnContentClick&&j.bind("click",b.fancybox.close);d.hideOnOverlayClick&&u.bind("click",b.fancybox.close);b(window).bind("resize.fb",b.fancybox.resize);d.centerOnScroll&&b(window).bind("scroll.fb",b.fancybox.center);if(d.type=="iframe")b('<iframe id="fancybox-frame" name="fancybox-frame'+(new Date).getTime()+'" frameborder="0" hspace="0" '+(b.browser.msie?'allowtransparency="true""':"")+' scrolling="'+e.scrolling+'" src="'+d.href+'"></iframe>').appendTo(j);
33
  f.show();h=false;b.fancybox.center();d.onComplete(l,p,d);var a,c;if(l.length-1>p){a=l[p+1].href;if(typeof a!=="undefined"&&a.match(J)){c=new Image;c.src=a}}if(p>0){a=l[p-1].href;if(typeof a!=="undefined"&&a.match(J)){c=new Image;c.src=a}}},T=function(a){var c={width:parseInt(r.width+(i.width-r.width)*a,10),height:parseInt(r.height+(i.height-r.height)*a,10),top:parseInt(r.top+(i.top-r.top)*a,10),left:parseInt(r.left+(i.left-r.left)*a,10)};if(typeof i.opacity!=="undefined")c.opacity=a<0.5?0.5:a;f.css(c);
34
  j.css({width:c.width-d.padding*2,height:c.height-y*a-d.padding*2})},U=function(){return[b(window).width()-d.margin*2,b(window).height()-d.margin*2,b(document).scrollLeft()+d.margin,b(document).scrollTop()+d.margin]},X=function(){var a=U(),c={},g=d.autoScale,k=d.padding*2;c.width=d.width.toString().indexOf("%")>-1?parseInt(a[0]*parseFloat(d.width)/100,10):d.width+k;c.height=d.height.toString().indexOf("%")>-1?parseInt(a[1]*parseFloat(d.height)/100,10):d.height+k;if(g&&(c.width>a[0]||c.height>a[1]))if(e.type==
35
  "image"||e.type=="swf"){g=d.width/d.height;if(c.width>a[0]){c.width=a[0];c.height=parseInt((c.width-k)/g+k,10)}if(c.height>a[1]){c.height=a[1];c.width=parseInt((c.height-k)*g+k,10)}}else{c.width=Math.min(c.width,a[0]);c.height=Math.min(c.height,a[1])}c.top=parseInt(Math.max(a[3]-20,a[3]+(a[1]-c.height-40)*0.5),10);c.left=parseInt(Math.max(a[2]-20,a[2]+(a[0]-c.width-40)*0.5),10);return c},V=function(){var a=e.orig?b(e.orig):false,c={};if(a&&a.length){c=a.offset();c.top+=parseInt(a.css("paddingTop"),
15
  * http://www.gnu.org/licenses/gpl.html
16
  */
17
 
18
+ ;(function(b){var m,t,u,f,D,j,E,n,z,A,q=0,e={},o=[],p=0,d={},l=[],G=null,v=new Image,J=/\.(jpg|gif|png|bmp|jpeg)(.*)?$/i,W=/[^\.]\.(swf)\s*$/i,K,L=1,y=0,s="",r,i,h=false,B=b.extend(b("<div/>")[0],{prop:0}),M=navigator.userAgent.match(/msie/i) && navigator.userAgent.match(/6/) && !window.XMLHttpRequest,N=function(){t.hide();v.onerror=v.onload=null;G&&G.abort();m.empty()},O=function(){if(false===e.onError(o,q,e)){t.hide();h=false}else{e.titleShow=false;e.width="auto";e.height="auto";m.html('<p id="fancybox-error">The requested content cannot be loaded.<br />Please try again later.</p>');
19
  F()}},I=function(){var a=o[q],c,g,k,C,P,w;N();e=b.extend({},b.fn.fancybox.defaults,typeof b(a).data("fancybox")=="undefined"?e:b(a).data("fancybox"));w=e.onStart(o,q,e);if(w===false)h=false;else{if(typeof w=="object")e=b.extend(e,w);k=e.title||(a.nodeName?b(a).attr("title"):a.title)||"";if(a.nodeName&&!e.orig)e.orig=b(a).children("img:first").length?b(a).children("img:first"):b(a);if(k===""&&e.orig&&e.titleFromAlt)k=e.orig.attr("alt");c=e.href||(a.nodeName?b(a).attr("href"):a.href)||null;if(/^(?:javascript)/i.test(c)||
20
  c=="#")c=null;if(e.type){g=e.type;if(!c)c=e.content}else if(e.content)g="html";else if(c)g=c.match(J)?"image":c.match(W)?"swf":b(a).hasClass("iframe")?"iframe":c.indexOf("#")===0?"inline":"ajax";if(g){if(g=="inline"){a=c.substr(c.indexOf("#"));g=b(a).length>0?"inline":"ajax"}e.type=g;e.href=c;e.title=k;if(e.autoDimensions)if(e.type=="html"||e.type=="inline"||e.type=="ajax"){e.width="auto";e.height="auto"}else e.autoDimensions=false;if(e.modal){e.overlayShow=true;e.hideOnOverlayClick=false;e.hideOnContentClick=
21
  false;e.enableEscapeButton=false;e.showCloseButton=false}e.padding=parseInt(e.padding,10);e.margin=parseInt(e.margin,10);m.css("padding",e.padding+e.margin);b(".fancybox-inline-tmp").unbind("fancybox-cancel").bind("fancybox-change",function(){b(this).replaceWith(j.children())});switch(g){case "html":m.html(e.content);F();break;case "inline":if(b(a).parent().is("#fancybox-content")===true){h=false;break}b('<div class="fancybox-inline-tmp" />').hide().insertBefore(b(a)).bind("fancybox-cleanup",function(){b(this).replaceWith(j.children())}).bind("fancybox-cancel",
29
  i.height;j.fadeTo(d.changeFade,0.3,function(){var g=function(){j.html(m.contents()).fadeTo(d.changeFade,1,S)};b.event.trigger("fancybox-change");j.empty().removeAttr("filter").css({"border-width":d.padding,width:i.width-d.padding*2,height:e.autoDimensions?"auto":i.height-y-d.padding*2});if(c)g();else{B.prop=0;b(B).animate({prop:1},{duration:d.changeSpeed,easing:d.easingChange,step:T,complete:g})}})}else{f.removeAttr("style");j.css("border-width",d.padding);if(d.transitionIn=="elastic"){r=V();j.html(m.contents());
30
  f.show();if(d.opacity)i.opacity=0;B.prop=0;b(B).animate({prop:1},{duration:d.speedIn,easing:d.easingIn,step:T,complete:S})}else{d.titlePosition=="inside"&&y>0&&n.show();j.css({width:i.width-d.padding*2,height:e.autoDimensions?"auto":i.height-y-d.padding*2}).html(m.contents());f.css(i).fadeIn(d.transitionIn=="none"?0:d.speedIn,S)}}}},Y=function(){if(d.enableEscapeButton||d.enableKeyboardNav)b(document).bind("keydown.fb",function(a){if(a.keyCode==27&&d.enableEscapeButton){a.preventDefault();b.fancybox.close()}else if((a.keyCode==
31
  37||a.keyCode==39)&&d.enableKeyboardNav&&a.target.tagName!=="INPUT"&&a.target.tagName!=="TEXTAREA"&&a.target.tagName!=="SELECT"){a.preventDefault();b.fancybox[a.keyCode==37?"prev":"next"]()}});if(d.showNavArrows){if(d.cyclic&&l.length>1||p!==0)z.show();if(d.cyclic&&l.length>1||p!=l.length-1)A.show()}else{z.hide();A.hide()}},S=function(){if(!b.support.opacity){j.get(0).style.removeAttribute("filter");f.get(0).style.removeAttribute("filter")}e.autoDimensions&&j.css("height","auto");f.css("height","auto");
32
+ s&&s.length&&n.show();d.showCloseButton&&E.show();Y();d.hideOnContentClick&&j.bind("click",b.fancybox.close);d.hideOnOverlayClick&&u.bind("click",b.fancybox.close);b(window).bind("resize.fb",b.fancybox.resize);d.centerOnScroll&&b(window).bind("scroll.fb",b.fancybox.center);if(d.type=="iframe")b('<iframe id="fancybox-frame" name="fancybox-frame'+(new Date).getTime()+'" frameborder="0" hspace="0" '+(navigator.userAgent.match(/msie/i)?'allowtransparency="true""':"")+' scrolling="'+e.scrolling+'" src="'+d.href+'"></iframe>').appendTo(j);
33
  f.show();h=false;b.fancybox.center();d.onComplete(l,p,d);var a,c;if(l.length-1>p){a=l[p+1].href;if(typeof a!=="undefined"&&a.match(J)){c=new Image;c.src=a}}if(p>0){a=l[p-1].href;if(typeof a!=="undefined"&&a.match(J)){c=new Image;c.src=a}}},T=function(a){var c={width:parseInt(r.width+(i.width-r.width)*a,10),height:parseInt(r.height+(i.height-r.height)*a,10),top:parseInt(r.top+(i.top-r.top)*a,10),left:parseInt(r.left+(i.left-r.left)*a,10)};if(typeof i.opacity!=="undefined")c.opacity=a<0.5?0.5:a;f.css(c);
34
  j.css({width:c.width-d.padding*2,height:c.height-y*a-d.padding*2})},U=function(){return[b(window).width()-d.margin*2,b(window).height()-d.margin*2,b(document).scrollLeft()+d.margin,b(document).scrollTop()+d.margin]},X=function(){var a=U(),c={},g=d.autoScale,k=d.padding*2;c.width=d.width.toString().indexOf("%")>-1?parseInt(a[0]*parseFloat(d.width)/100,10):d.width+k;c.height=d.height.toString().indexOf("%")>-1?parseInt(a[1]*parseFloat(d.height)/100,10):d.height+k;if(g&&(c.width>a[0]||c.height>a[1]))if(e.type==
35
  "image"||e.type=="swf"){g=d.width/d.height;if(c.width>a[0]){c.width=a[0];c.height=parseInt((c.width-k)/g+k,10)}if(c.height>a[1]){c.height=a[1];c.width=parseInt((c.height-k)*g+k,10)}}else{c.width=Math.min(c.width,a[0]);c.height=Math.min(c.height,a[1])}c.top=parseInt(Math.max(a[3]-20,a[3]+(a[1]-c.height-40)*0.5),10);c.left=parseInt(Math.max(a[2]-20,a[2]+(a[0]-c.width-40)*0.5),10);return c},V=function(){var a=e.orig?b(e.orig):false,c={};if(a&&a.length){c=a.offset();c.top+=parseInt(a.css("paddingTop"),
package.xml CHANGED
@@ -1,7 +1,7 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Cybage_Marketplace</name>
4
- <version>1.0.1</version>
5
  <stability>stable</stability>
6
  <license uri="http://opensource.org/licenses/osl-3.0.php">Open Software License</license>
7
  <channel>community</channel>
@@ -26,13 +26,12 @@ Admin&#xD;
26
  &#x2022; Configure the Marketplace plug-in on Magento&#xD;
27
  &#x2022; Approve sellers &#xD;
28
  &#x2022; Set categories for Marketplace&#xD;
29
- &#x2022; Generate reports: Seller orders and seller payments&#xD;
30
- </description>
31
  <notes>After installation of the Marketplace plug-in, please clear the cache.</notes>
32
  <authors><author><name>Cybage Software Pvt. Ltd.</name><user>cybage</user><email>Support_Magento@cybage.com</email></author></authors>
33
- <date>2014-08-14</date>
34
- <time>17:09:37</time>
35
- <contents><target name="magecommunity"><dir name="Cybage"><dir name="Marketplace"><dir name="Block"><dir name="Adminhtml"><dir name="Catalog"><dir name="Product"><file name="Grid.php" hash="f25721e6c81c11873ef44bf8ede6fccf"/></dir></dir><dir name="Commission"><dir name="Edit"><file name="Form.php" hash="1f957bafc5767783d859db1d2fe1e9cb"/><dir name="Tab"><file name="Form.php" hash="8ff027c410ca41a590b7bd03b982f28d"/><file name="Payhistory.php" hash="d46191b0cb444a341570b744ffeef8b7"/></dir><file name="Tabs.php" hash="ff3117562f338306956e6d873865d122"/></dir><file name="Edit.php" hash="2f7d6f24cc09403347bf644548ebad3b"/><file name="Grid.php" hash="14a97b7f3446998808935ae8392cd5c7"/></dir><file name="Commission.php" hash="e9fe70755eb546a502df43729de27bc0"/><dir name="Orderby"><file name="Form.php" hash="65cf80ea8f270ad26ebbaee75dfca9aa"/><dir name="Grid"><file name="Abstract.php" hash="d050be8b9179b134146bf824cc1617b3"/><file name="Name.php" hash="8566afb8fb98cb97001aa2633268de61"/></dir><file name="Grid.php" hash="81da75eaa732dffb080d9ffe81a4b70f"/></dir><file name="Orderby.php" hash="aec4ca4b5b170acc710166756ece6ca7"/><dir name="Seller"><dir name="Edit"><file name="Form.php" hash="8d26f7808027804638f72510142b2482"/><dir name="Tab"><file name="Form.php" hash="6a336dccd50b877ed6cb3d3ab88d6901"/></dir><file name="Tabs.php" hash="45ffef715b5546c532536e8c5781c52c"/></dir><file name="Edit.php" hash="f2504dc4db5161b6a5e61a822c5e75a0"/><file name="Grid.php" hash="59aca20e6f773bfc0315b85d65b1cc57"/></dir><file name="Seller.php" hash="daef40b01e64399278bbbacd0ef1f432"/><dir name="Widget"><dir name="Column"><dir name="Renderer"><file name="Paylink.php" hash="0d34ec8d86b240441c3bcdaf3b6b20b6"/></dir></dir></dir></dir><dir name="Buyerseller"><dir name="Sales"><dir name="Order"><file name="History.php" hash="2cb2d7ae9ca0f4cd5a6ea31b84b14bf2"/></dir></dir></dir><file name="Buyerseller.php" hash="217b92c8ec9045fa17741b3c16e924e4"/><dir name="Catalog"><dir name="Product"><file name="List.php" hash="85d9aad6bd14c934d012b9c15af14949"/><file name="View.php" hash="31fd9b89972ca0e23eb6bf65adbe2f91"/></dir></dir><dir name="Myorders"><file name="Selleroptions.php" hash="809bb905b251e1fa8c87df4a53cc5a06"/><file name="View.php" hash="334b9fbde48d3a8c72e49d51987cecf1"/></dir><file name="Myorders.php" hash="b356cc51ecc7ca535d73116c913a53fa"/><dir name="Order"><dir name="Item"><dir name="Renderer"><file name="Default.php" hash="625af04c6df38d91f8c8a41a077c6ca3"/></dir></dir><file name="Selleroptions.php" hash="a737136d77b4118411d8728e6242ce07"/><file name="View.php" hash="ef710f34790643dc3aada538d6c95c7e"/></dir><dir name="Product"><dir name="Askquestion"><file name="Link.php" hash="72b665a7744beb6fa23f070d064913cc"/><file name="Myquestions.php" hash="18e12d38a1635a2f8a62249186c32b13"/><file name="Productquestions.php" hash="2a8948af0c03cbee3f5f6dd8b1283d36"/><file name="Replyform.php" hash="e28c5f99cba7d20af07bbde533c5596c"/></dir></dir><file name="Product.php" hash="014b3707d9f934741e8e6362d3d96195"/><dir name="Review"><dir name="Product"><dir name="View"><file name="List.php" hash="0d9791547dfce363fcd9df897697c58b"/></dir><file name="View.php" hash="1d55db853157c9d99696ddf878ab158d"/></dir></dir><dir name="Sales"><dir name="Order"><file name="History.php" hash="dd002fbaea06e26a9423b604681e78f5"/></dir></dir><dir name="Seller"><file name="Info.php" hash="2d33eba36b069bf277d267df6df36d32"/></dir></dir><dir name="Controller"><file name="Router.php" hash="758ff31abf12426b26c3aecc5b4c137f"/></dir><dir name="Helper"><file name="Data.php" hash="3ef853fe5ff8c45dd23ce72f617ed960"/></dir><dir name="Model"><file name="Buyerseller.php" hash="65889d5640b272ea8903e6e72c673876"/><file name="Commission.php" hash="85964e3aef73f49d8c8a747b0a4a566f"/><file name="Customatributestatus.php" hash="5d2beafdbcb372eb3121f7719ee12619"/><file name="Customer.php" hash="1bae3ab500041cff629ffbc1997737ac"/><file name="Image.php" hash="fcf0be7f58f6511fde2c118a8d4ea597"/><file name="Logging.php" hash="bf8622cce3d8e2d0fb17567556c4738e"/><file name="Marketplace.php" hash="0eba385172a3d3d9dcde1a3efdd235c6"/><file name="Observer.php" hash="5a38202d042a01b63bdcc1f4758d7bd8"/><file name="Order.php" hash="72ef039c78491f2eecac02a23d1890cf"/><dir name="Product"><file name="Action.php" hash="6cc115390b3c2dea31d815734fdbd877"/></dir><file name="Question.php" hash="70c5328aaa0000e47da324224b0bcfc7"/><file name="Reply.php" hash="f5120fa047fee4c6309f9fd6134e0a66"/><dir name="Resource"><dir name="Buyerseller"><file name="Collection.php" hash="171123b4b345c8797d32656d5b10b0f4"/></dir><file name="Buyerseller.php" hash="af96d782600d62e16c0414b3e7b6b77c"/><dir name="Commission"><file name="Collection.php" hash="8831b90ceeba929aba53678661f1a4d0"/></dir><file name="Commission.php" hash="6174e0aa3de188e08e64c3eac8d30aae"/><file name="Customer.php" hash="45726623813cc70254646741675b4eb9"/><file name="Logging.php" hash="236c0ed167e1a51587c3c646cc87035b"/><dir name="Orderby"><file name="Collection.php" hash="7616308efd7933d580fe55d39a0bec11"/></dir><dir name="Question"><file name="Collection.php" hash="ceaa1c3157d23db44b21367a07d29e2f"/></dir><file name="Question.php" hash="3b7da7902de11b74fd89a1c60ec3123a"/><dir name="Reply"><file name="Collection.php" hash="7f3d5dc190082a5464968f01133dc7fe"/></dir><file name="Reply.php" hash="a805231e4378b46ff6411590ad97f73c"/></dir><dir name="Seller"><dir name="Attribute"><dir name="Source"><dir name="Product"><file name="State.php" hash="f509894d6b3dc464d336231f0d029e4f"/><file name="Status.php" hash="ef3d748a92c4f9e779a96c27c54323a8"/></dir></dir></dir></dir><file name="Selleroptions.php" hash="bd2d442431a6954b2cb4405647102706"/><file name="Session.php" hash="fbaed1c6fe6b81e52ff52908144ed85f"/><dir name="Source"><file name="Option.php" hash="ceb28daee1e7b9b06c8c97286ceef513"/></dir><dir name="System"><dir name="Config"><dir name="Source"><dir name="Product"><file name="State.php" hash="a459bf4e69b6e0cc8f9541879416a67c"/><file name="Status.php" hash="4885e5c457b55db3e77a9986901003bd"/><file name="Visibility.php" hash="920e27fdced9b2a1e104cf03b4ec9a21"/></dir></dir></dir></dir></dir><dir name="controllers"><file name="AccountController.php" hash="398b86eaa3ac443fd388c540b9f7c0d0"/><dir name="Adminhtml"><dir name="Catalog"><file name="ProductController.php" hash="f104170160b914b2e0294e3adb4111b6"/></dir><file name="CommissionController.php" hash="76cb41bff619281f41a9b813fffbd491"/><file name="OrderbyController.php" hash="2d0f4ceec5edd61d71da1d58edd6258c"/><file name="SellerController.php" hash="dffe7c1f7465f0b13b0c6eab21dc2625"/></dir><file name="BuyersellerController.php" hash="1a48a933f0a2a793bf2b4fd3d6dce450"/><file name="DashboardController.php" hash="75715494f2f9c98586dc1207c1d1eb77"/><file name="OrderController.php" hash="d379e16fae6be8d3fc0f5ce303058f32"/><file name="ProductController.php" hash="94ea1da0110c934ddcd1d82c22a0f6e3"/><file name="ProductquestionController.php" hash="a19c97e9f32009f0de3378c5c88c91ab"/><file name="SellerController.php" hash="d09843f2530b04beb4de6dda9fc9f913"/></dir><dir name="etc"><file name="adminhtml.xml" hash="a22533c081f75a33107bf413a5c126d2"/><file name="config.xml" hash="4b4fb31c47e1ed2ec9b2b87499c6274f"/><file name="system.xml" hash="c57321b1080cf5173c4abf84aa7089f7"/></dir><dir name="sql"><dir name="marketplace_setup"><file name="mysql4-install-0.1.0.php" hash="ea04496ea153372066413f594956d036"/><file name="mysql4-upgrade-0.1.0-0.1.1.php" hash="a6e712b4022636be2e6151d9e94303da"/><file name="mysql4-upgrade-0.1.1-0.1.2.php" hash="87080b7cd660843c265bf1fb08a73a1b"/><file name="mysql4-upgrade-0.1.2-0.1.3.php" hash="79f6a5e2651866c042f0d1f2c2dc2890"/><file name="mysql4-upgrade-0.1.3-0.1.4.php" hash="4e10d00e95f99efd9bdb4861770470f2"/><file name="mysql4-upgrade-0.1.4-0.1.5.php" hash="f3edd8e5643e3b46cc1793f0ceb0e02e"/><file name="mysql4-upgrade-0.1.5-0.1.6.php" hash="ea02b85b9dccde25899e4da9a1855e88"/><file name="mysql4-upgrade-0.1.6-0.1.7.php" hash="80220174c7af6eaf05f6a26683627e58"/></dir></dir></dir></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="marketplace.xml" hash="f3ef021f0d374ff7cdd9d8871acaeca5"/></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="marketplace.xml" hash="d102088dd679a3935f1f3f1a770193a3"/></dir><dir name="template"><dir name="marketplace"><dir name="buyerseller"><file name="notify.phtml" hash="5b8972392844f0eee4c1cea3dade7a5b"/><file name="reply.phtml" hash="1bb6802be4b15c643f669cc2e93a5fc6"/><dir name="sales"><dir name="order"><file name="history.phtml" hash="e388f18c4e7ec27fa353a1761cf41494"/></dir></dir></dir><dir name="catalog"><dir name="product"><dir name="askquestion"><file name="form.phtml" hash="9e35a0dc033b0862c4f902568001598b"/><file name="link.phtml" hash="fe3de6946afa9f678786204ef6d9db29"/><file name="myquestions.phtml" hash="c466cd90d4151602ab3584d66cfcf0cd"/><file name="productquestions.phtml" hash="049c183e424e7898f4591f6720812409"/><file name="reply_form.phtml" hash="a57fb90ed343e54f10ddfae954bdb242"/></dir><dir name="view"><file name="sellerinfo.phtml" hash="a7f48203c66bca6989ea63a8f84dce44"/></dir><file name="view.phtml" hash="e0a332aaf00bf9d9bf5f26b412cd44e2"/></dir></dir><dir name="checkout"><dir name="cart"><dir name="item"><file name="default.phtml" hash="26da86d5981c83c4a029778b532eba34"/></dir></dir><dir name="multishipping"><dir name="item"><file name="default.phtml" hash="74ca10032cb2292f2a03c43d86815720"/></dir></dir><dir name="onepage"><dir name="review"><file name="item.phtml" hash="ad81267ad4a3f2ce54d273d4f4682e5d"/></dir></dir></dir><dir name="customer"><dir name="account"><dir name="myorders"><file name="items.phtml" hash="7fb93dbb348df08f221660ca5dcbea67"/><file name="shipitems.phtml" hash="f14bd6e96cb1c0b28af018e3843dc785"/></dir><file name="navigation.phtml" hash="2089d2c11c17fd4e20a395a3e36e453b"/><file name="print.phtml" hash="5e596742e04763ce01674f4cb2df0f8d"/><file name="selleroptions.phtml" hash="12242dc9e8a0fb537dbe2b96ed29d494"/><file name="shiporder.phtml" hash="0f02907cc7a735bfee00895aaa66e562"/><file name="vieworder.phtml" hash="aa2f965823e32103a54160fc982dfbaa"/></dir><dir name="form"><file name="edit.phtml" hash="b3a2a720798e1b25ae4f2413898ebc00"/></dir></dir><dir name="dashboard"><file name="bestseller.phtml" hash="87352d5b3a90761aa26cb3ee6a0ea04e"/><file name="dashboard.phtml" hash="e3b228c43357fb121c920185fe837434"/><file name="myorders.phtml" hash="d6863530100ff501090f08407c104a1f"/><file name="notificationcount.phtml" hash="2253183ccf44910b769552c4427eab90"/><file name="questioncount.phtml" hash="a0c237a252be2264ec3c966106798771"/></dir><dir name="persistent"><dir name="customer"><dir name="form"><file name="register.phtml" hash="943ffb36cc48c8c46393ed6d867d0ad7"/></dir></dir></dir><dir name="product"><file name="add.phtml" hash="ef3bc3d6cdd3e427e41971414d9d405d"/><file name="edit.phtml" hash="6cb3278a52abcc9fc4bc90440c319d3b"/><file name="grid.phtml" hash="fe28b864ce6c469dfa8e190da8357e43"/><file name="import.phtml" hash="3a923be5fea4d0f6eddd3b25e0cff1cc"/></dir><dir name="review"><dir name="product"><dir name="view"><file name="list.phtml" hash="b9d8091752efa906328a4a3f0a21e847"/></dir></dir></dir><dir name="sales"><dir name="myorder"><dir name="items"><dir name="renderer"><file name="default.phtml" hash="b61198dff58c6a5aa3e5e46578c0cbbe"/><dir name="ship"><file name="default.phtml" hash="6c58361fff7b14e6f573287eccc28f04"/></dir></dir></dir></dir><dir name="order"><file name="form.phtml" hash="71772f95673836ad608deacf58bdaf34"/><file name="history.phtml" hash="25427e4315e98427065bf3edc82217ef"/><dir name="items"><dir name="renderer"><file name="default.phtml" hash="8a7556035d32a504f270498c1d9e1aa3"/></dir></dir><file name="items.phtml" hash="2b0a0054f065f420ce8bdc24433ab94e"/></dir><file name="print.phtml" hash="50f7d2ff531b61a678a4d65123fbae91"/><file name="selleroptions.phtml" hash="389508e5804161be886069959a8770f2"/><file name="vieworder.phtml" hash="ef9810ecf4160961d139d9dab847a9b0"/></dir><dir name="seller"><dir name="account"><file name="myorders.phtml" hash="51696ea86d20d3306b2ef8be2fb5e8b0"/></dir><file name="info.phtml" hash="cbfde090d5ee320918b031e1145159e0"/><file name="logo.phtml" hash="3d60bc24a72755bc5b03001537a0290e"/><file name="ratings.phtml" hash="885779d8e85ff3fb8e3f1fe50cd18c7d"/><file name="seller_ratings.phtml" hash="7307d70ae60465825fc2a31fe9b2d4ad"/></dir></dir></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Cybage_Marketplace.xml" hash="655674c415c4a30754d292b1b585f959"/></dir></target><target name="magelocale"><dir name="en_US"><dir name="template"><dir name="email"><file name="newseller_account.html" hash="298a277968587aa17dab9571d37f1116"/><file name="pendingorder_reminder.html" hash="7698d6a043afb5d2a52571a8e373b968"/><file name="seller_payment.html" hash="1b6350fdebfe1b496d03a164f616d415"/><file name="seller_status.html" hash="8b01d0a683d8fe1d4774fc32cdfb09a7"/><dir name="sales"><file name="customer_cancelled_new.html" hash="cbfe7cfa8307995aff1d35cadb62b910"/><file name="customer_completed_new.html" hash="afd8b01955854d0235aaa4e94a41dc87"/><file name="customer_processing_new.html" hash="3521f931be71816a0a6bc81d56d0961f"/><file name="product_comment.html" hash="e251a719323814263e9f84b12601b892"/></dir></dir></dir></dir></target><target name="mageweb"><dir name="js"><dir name="jquery"><file name="jquery-1.9.1.min.js" hash="993baffc269ef5414ec40f3d2de19294"/></dir><dir name="marketplace"><dir name="fancybox"><file name="jquery-1.7.2.min.js" hash="09bf7cb5fd333ee8c1c6be7475f85026"/><file name="jquery.fancybox-1.3.4.pack.js" hash="0b714d85fd5a4fe7625801f8d6e7ad57"/><file name="jquery.mousewheel-3.0.4.pack.js" hash="8ed7eaa3ff4d601639bfc1d594713957"/><file name="jquery.noconflict.js" hash="3179f2255b046d5f2e9a71e365287bef"/></dir><file name="nicEdit-latest.js.js" hash="46134bdf90c2e6279bb5efe7874a0ebc"/></dir></dir></target><target name="magemedia"><dir name="marketplace"><file name="productimport.csv" hash="7b0c8a1c0d5392371a49bda7badc1298"/></dir></target><target name="mageskin"><dir name="frontend"><dir name="base"><dir name="default"><dir name="css"><dir name="marketplace"><file name="jquery.fancybox-1.3.4.css" hash="0233ba7e3d8418cebf47fc9983f65e60"/><file name="styles.css" hash="30d9bc46cec97d7627b3fce3e595c009"/></dir></dir><dir name="images"><dir name="marketplace"><dir name="fancybox"><file name="blank.gif" hash="325472601571f31e1bf00674c368d335"/><file name="fancy_close.png" hash="6e2879a324a76e9972ebc98201aae1d8"/><file name="fancy_loading.png" hash="b1d54c240cf06e7f41e372d56919b738"/><file name="fancy_nav_left.png" hash="3f3e406102152cd8236383568a40ba35"/><file name="fancy_nav_right.png" hash="216e4bde5bddeeaa60dc3d692890a68e"/><file name="fancy_shadow_e.png" hash="fd4f491080d29fade5080877f1ba4c8b"/><file name="fancy_shadow_n.png" hash="18cde16379b2ceadef714d9b346d09ec"/><file name="fancy_shadow_ne.png" hash="63adf788acf193d4e4f3642d7d793125"/><file name="fancy_shadow_nw.png" hash="c820c878aedb7a7f9ebd7135a58e7c65"/><file name="fancy_shadow_s.png" hash="9b9e5c888028aaef40fe5b6a363f1e29"/><file name="fancy_shadow_se.png" hash="a8afd5a008884380ee712d177105268f"/><file name="fancy_shadow_sw.png" hash="f81cc0fee5581d76ad3cebe47e7e791b"/><file name="fancy_shadow_w.png" hash="59b0e63eb059e58d932cfd53da4d87e6"/><file name="fancy_title_left.png" hash="1582ac2d3bef6a6445bf02ceca2741cd"/><file name="fancy_title_main.png" hash="38dad6c1ed4bdc81c0bec721b2deb8c2"/><file name="fancy_title_over.png" hash="b886fd165d4b7ac77d41fb52d87ffc60"/><file name="fancy_title_right.png" hash="6cbe0c935511e7f9a2555ccb6a7324c4"/><file name="fancybox-x.png" hash="168696d8a694214090ef90e029cdf393"/><file name="fancybox-y.png" hash="36a58859beb9a6b19322a37466b9f78e"/><file name="fancybox.png" hash="11e57e492ee0311540967cc7a1e6e3e2"/></dir><file name="icon_export.gif" hash="9a13f20c6a17b41b9c357545c2da5636"/></dir></dir></dir></dir></dir></target></contents>
36
  <compatible/>
37
  <dependencies><required><php><min>5.1.0</min><max>6.0.0</max></php></required></dependencies>
38
  </package>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Cybage_Marketplace</name>
4
+ <version>1.0.2</version>
5
  <stability>stable</stability>
6
  <license uri="http://opensource.org/licenses/osl-3.0.php">Open Software License</license>
7
  <channel>community</channel>
26
  &#x2022; Configure the Marketplace plug-in on Magento&#xD;
27
  &#x2022; Approve sellers &#xD;
28
  &#x2022; Set categories for Marketplace&#xD;
29
+ &#x2022; Generate reports: Seller orders and seller payments</description>
 
30
  <notes>After installation of the Marketplace plug-in, please clear the cache.</notes>
31
  <authors><author><name>Cybage Software Pvt. Ltd.</name><user>cybage</user><email>Support_Magento@cybage.com</email></author></authors>
32
+ <date>2015-01-02</date>
33
+ <time>23:17:18</time>
34
+ <contents><target name="magecommunity"><dir name="Cybage"><dir name="Marketplace"><dir name="Block"><dir name="Adminhtml"><dir name="Catalog"><dir name="Product"><file name="Grid.php" hash="f25721e6c81c11873ef44bf8ede6fccf"/></dir></dir><dir name="Commission"><dir name="Edit"><file name="Form.php" hash="1f957bafc5767783d859db1d2fe1e9cb"/><dir name="Tab"><file name="Form.php" hash="8ff027c410ca41a590b7bd03b982f28d"/><file name="Payhistory.php" hash="d46191b0cb444a341570b744ffeef8b7"/></dir><file name="Tabs.php" hash="ff3117562f338306956e6d873865d122"/></dir><file name="Edit.php" hash="2f7d6f24cc09403347bf644548ebad3b"/><file name="Grid.php" hash="14a97b7f3446998808935ae8392cd5c7"/></dir><file name="Commission.php" hash="e9fe70755eb546a502df43729de27bc0"/><dir name="Orderby"><file name="Form.php" hash="65cf80ea8f270ad26ebbaee75dfca9aa"/><dir name="Grid"><file name="Abstract.php" hash="d050be8b9179b134146bf824cc1617b3"/><file name="Name.php" hash="8566afb8fb98cb97001aa2633268de61"/></dir><file name="Grid.php" hash="81da75eaa732dffb080d9ffe81a4b70f"/></dir><file name="Orderby.php" hash="aec4ca4b5b170acc710166756ece6ca7"/><dir name="Seller"><dir name="Edit"><file name="Form.php" hash="8d26f7808027804638f72510142b2482"/><dir name="Tab"><file name="Form.php" hash="6a336dccd50b877ed6cb3d3ab88d6901"/></dir><file name="Tabs.php" hash="45ffef715b5546c532536e8c5781c52c"/></dir><file name="Edit.php" hash="f2504dc4db5161b6a5e61a822c5e75a0"/><file name="Grid.php" hash="59aca20e6f773bfc0315b85d65b1cc57"/></dir><file name="Seller.php" hash="daef40b01e64399278bbbacd0ef1f432"/><dir name="Widget"><dir name="Column"><dir name="Renderer"><file name="Paylink.php" hash="0d34ec8d86b240441c3bcdaf3b6b20b6"/></dir></dir></dir></dir><dir name="Buyerseller"><dir name="Sales"><dir name="Order"><file name="History.php" hash="2cb2d7ae9ca0f4cd5a6ea31b84b14bf2"/></dir></dir></dir><file name="Buyerseller.php" hash="217b92c8ec9045fa17741b3c16e924e4"/><dir name="Catalog"><dir name="Product"><file name="List.php" hash="85d9aad6bd14c934d012b9c15af14949"/><file name="View.php" hash="31fd9b89972ca0e23eb6bf65adbe2f91"/></dir></dir><dir name="Myorders"><file name="Selleroptions.php" hash="809bb905b251e1fa8c87df4a53cc5a06"/><file name="View.php" hash="334b9fbde48d3a8c72e49d51987cecf1"/></dir><file name="Myorders.php" hash="b356cc51ecc7ca535d73116c913a53fa"/><dir name="Order"><dir name="Item"><dir name="Renderer"><file name="Default.php" hash="625af04c6df38d91f8c8a41a077c6ca3"/></dir></dir><file name="Selleroptions.php" hash="a737136d77b4118411d8728e6242ce07"/><file name="View.php" hash="ef710f34790643dc3aada538d6c95c7e"/></dir><dir name="Product"><dir name="Askquestion"><file name="Link.php" hash="72b665a7744beb6fa23f070d064913cc"/><file name="Myquestions.php" hash="18e12d38a1635a2f8a62249186c32b13"/><file name="Productquestions.php" hash="2a8948af0c03cbee3f5f6dd8b1283d36"/><file name="Replyform.php" hash="e28c5f99cba7d20af07bbde533c5596c"/></dir></dir><file name="Product.php" hash="014b3707d9f934741e8e6362d3d96195"/><dir name="Review"><dir name="Product"><dir name="View"><file name="List.php" hash="0d9791547dfce363fcd9df897697c58b"/></dir><file name="View.php" hash="1d55db853157c9d99696ddf878ab158d"/></dir></dir><dir name="Sales"><dir name="Order"><file name="History.php" hash="dd002fbaea06e26a9423b604681e78f5"/></dir></dir><dir name="Seller"><file name="Info.php" hash="2d33eba36b069bf277d267df6df36d32"/></dir></dir><dir name="Controller"><file name="Router.php" hash="758ff31abf12426b26c3aecc5b4c137f"/></dir><dir name="Helper"><file name="Data.php" hash="3ef853fe5ff8c45dd23ce72f617ed960"/></dir><dir name="Model"><file name="Buyerseller.php" hash="65889d5640b272ea8903e6e72c673876"/><file name="Commission.php" hash="85964e3aef73f49d8c8a747b0a4a566f"/><file name="Customatributestatus.php" hash="5d2beafdbcb372eb3121f7719ee12619"/><file name="Customer.php" hash="740f40edf6b5a488d5e6fc65b4c6c6ca"/><file name="Image.php" hash="fcf0be7f58f6511fde2c118a8d4ea597"/><file name="Logging.php" hash="bf8622cce3d8e2d0fb17567556c4738e"/><file name="Marketplace.php" hash="0eba385172a3d3d9dcde1a3efdd235c6"/><file name="Observer.php" hash="5a38202d042a01b63bdcc1f4758d7bd8"/><file name="Order.php" hash="72ef039c78491f2eecac02a23d1890cf"/><dir name="Product"><file name="Action.php" hash="6cc115390b3c2dea31d815734fdbd877"/></dir><file name="Question.php" hash="70c5328aaa0000e47da324224b0bcfc7"/><file name="Reply.php" hash="f5120fa047fee4c6309f9fd6134e0a66"/><dir name="Resource"><dir name="Buyerseller"><file name="Collection.php" hash="171123b4b345c8797d32656d5b10b0f4"/></dir><file name="Buyerseller.php" hash="af96d782600d62e16c0414b3e7b6b77c"/><dir name="Commission"><file name="Collection.php" hash="8831b90ceeba929aba53678661f1a4d0"/></dir><file name="Commission.php" hash="6174e0aa3de188e08e64c3eac8d30aae"/><file name="Customer.php" hash="45726623813cc70254646741675b4eb9"/><file name="Logging.php" hash="236c0ed167e1a51587c3c646cc87035b"/><dir name="Orderby"><file name="Collection.php" hash="7616308efd7933d580fe55d39a0bec11"/></dir><dir name="Question"><file name="Collection.php" hash="ceaa1c3157d23db44b21367a07d29e2f"/></dir><file name="Question.php" hash="3b7da7902de11b74fd89a1c60ec3123a"/><dir name="Reply"><file name="Collection.php" hash="7f3d5dc190082a5464968f01133dc7fe"/></dir><file name="Reply.php" hash="a805231e4378b46ff6411590ad97f73c"/></dir><dir name="Seller"><dir name="Attribute"><dir name="Source"><dir name="Product"><file name="State.php" hash="f509894d6b3dc464d336231f0d029e4f"/><file name="Status.php" hash="ef3d748a92c4f9e779a96c27c54323a8"/></dir></dir></dir></dir><file name="Selleroptions.php" hash="bd2d442431a6954b2cb4405647102706"/><file name="Session.php" hash="fbaed1c6fe6b81e52ff52908144ed85f"/><dir name="Source"><file name="Option.php" hash="ceb28daee1e7b9b06c8c97286ceef513"/></dir><dir name="System"><dir name="Config"><dir name="Source"><dir name="Product"><file name="State.php" hash="a459bf4e69b6e0cc8f9541879416a67c"/><file name="Status.php" hash="4885e5c457b55db3e77a9986901003bd"/><file name="Visibility.php" hash="920e27fdced9b2a1e104cf03b4ec9a21"/></dir></dir></dir></dir></dir><dir name="controllers"><file name="AccountController.php" hash="63bb079729e180a5cc646272f49a02c8"/><dir name="Adminhtml"><dir name="Catalog"><file name="ProductController.php" hash="f104170160b914b2e0294e3adb4111b6"/></dir><file name="CommissionController.php" hash="76cb41bff619281f41a9b813fffbd491"/><file name="OrderbyController.php" hash="2d0f4ceec5edd61d71da1d58edd6258c"/><file name="SellerController.php" hash="dffe7c1f7465f0b13b0c6eab21dc2625"/></dir><file name="BuyersellerController.php" hash="1a48a933f0a2a793bf2b4fd3d6dce450"/><file name="DashboardController.php" hash="75715494f2f9c98586dc1207c1d1eb77"/><file name="OrderController.php" hash="d379e16fae6be8d3fc0f5ce303058f32"/><file name="ProductController.php" hash="94ea1da0110c934ddcd1d82c22a0f6e3"/><file name="ProductquestionController.php" hash="0f18573c72835e62a752c77831b8d776"/><file name="SellerController.php" hash="d09843f2530b04beb4de6dda9fc9f913"/></dir><dir name="etc"><file name="adminhtml.xml" hash="a22533c081f75a33107bf413a5c126d2"/><file name="config.xml" hash="3ca62e50d8f5ff01aa3380e0de318ddc"/><file name="system.xml" hash="c57321b1080cf5173c4abf84aa7089f7"/></dir><dir name="sql"><dir name="marketplace_setup"><file name="mysql4-install-0.1.0.php" hash="ea04496ea153372066413f594956d036"/><file name="mysql4-upgrade-0.1.0-0.1.1.php" hash="a6e712b4022636be2e6151d9e94303da"/><file name="mysql4-upgrade-0.1.1-0.1.2.php" hash="87080b7cd660843c265bf1fb08a73a1b"/><file name="mysql4-upgrade-0.1.2-0.1.3.php" hash="79f6a5e2651866c042f0d1f2c2dc2890"/><file name="mysql4-upgrade-0.1.3-0.1.4.php" hash="4e10d00e95f99efd9bdb4861770470f2"/><file name="mysql4-upgrade-0.1.4-0.1.5.php" hash="f3edd8e5643e3b46cc1793f0ceb0e02e"/><file name="mysql4-upgrade-0.1.5-0.1.6.php" hash="ea02b85b9dccde25899e4da9a1855e88"/><file name="mysql4-upgrade-0.1.6-0.1.7.php" hash="80220174c7af6eaf05f6a26683627e58"/><file name="mysql4-upgrade-0.1.8-0.1.9.php" hash="c91178af624d4d518618a5f80dfa8fd4"/></dir></dir></dir></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="marketplace.xml" hash="f3ef021f0d374ff7cdd9d8871acaeca5"/></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="marketplace.xml" hash="a6c7f5655dece6926610e04785278bb0"/></dir><dir name="template"><dir name="marketplace"><dir name="buyerseller"><file name="notify.phtml" hash="5b8972392844f0eee4c1cea3dade7a5b"/><file name="reply.phtml" hash="1bb6802be4b15c643f669cc2e93a5fc6"/><dir name="sales"><dir name="order"><file name="history.phtml" hash="e388f18c4e7ec27fa353a1761cf41494"/></dir></dir></dir><dir name="catalog"><dir name="product"><dir name="askquestion"><file name="form.phtml" hash="9e35a0dc033b0862c4f902568001598b"/><file name="link.phtml" hash="fe3de6946afa9f678786204ef6d9db29"/><file name="myquestions.phtml" hash="c466cd90d4151602ab3584d66cfcf0cd"/><file name="productquestions.phtml" hash="049c183e424e7898f4591f6720812409"/><file name="reply_form.phtml" hash="a57fb90ed343e54f10ddfae954bdb242"/></dir><dir name="view"><file name="sellerinfo.phtml" hash="a7f48203c66bca6989ea63a8f84dce44"/></dir><file name="view.phtml" hash="e0a332aaf00bf9d9bf5f26b412cd44e2"/></dir></dir><dir name="checkout"><dir name="cart"><dir name="item"><file name="default.phtml" hash="26da86d5981c83c4a029778b532eba34"/></dir></dir><dir name="multishipping"><dir name="item"><file name="default.phtml" hash="74ca10032cb2292f2a03c43d86815720"/></dir></dir><dir name="onepage"><dir name="review"><file name="item.phtml" hash="ad81267ad4a3f2ce54d273d4f4682e5d"/></dir></dir></dir><dir name="customer"><dir name="account"><dir name="myorders"><file name="items.phtml" hash="7fb93dbb348df08f221660ca5dcbea67"/><file name="shipitems.phtml" hash="f14bd6e96cb1c0b28af018e3843dc785"/></dir><file name="navigation.phtml" hash="2089d2c11c17fd4e20a395a3e36e453b"/><file name="print.phtml" hash="5e596742e04763ce01674f4cb2df0f8d"/><file name="selleroptions.phtml" hash="12242dc9e8a0fb537dbe2b96ed29d494"/><file name="shiporder.phtml" hash="0f02907cc7a735bfee00895aaa66e562"/><file name="vieworder.phtml" hash="aa2f965823e32103a54160fc982dfbaa"/></dir><dir name="form"><file name="edit.phtml" hash="b869a1b8e5b891ac4ea6f6f69d6d351d"/></dir></dir><dir name="dashboard"><file name="bestseller.phtml" hash="87352d5b3a90761aa26cb3ee6a0ea04e"/><file name="dashboard.phtml" hash="e3b228c43357fb121c920185fe837434"/><file name="myorders.phtml" hash="d6863530100ff501090f08407c104a1f"/><file name="notificationcount.phtml" hash="2253183ccf44910b769552c4427eab90"/><file name="questioncount.phtml" hash="a0c237a252be2264ec3c966106798771"/></dir><dir name="page"><file name="blank.phtml" hash="509893c584213ad7d78e17a1a53249d1"/></dir><dir name="persistent"><dir name="customer"><dir name="form"><file name="register.phtml" hash="943ffb36cc48c8c46393ed6d867d0ad7"/></dir></dir></dir><dir name="product"><file name="add.phtml" hash="ef3bc3d6cdd3e427e41971414d9d405d"/><file name="edit.phtml" hash="6cb3278a52abcc9fc4bc90440c319d3b"/><file name="grid.phtml" hash="fe28b864ce6c469dfa8e190da8357e43"/><file name="import.phtml" hash="3a923be5fea4d0f6eddd3b25e0cff1cc"/></dir><dir name="review"><dir name="product"><dir name="view"><file name="list.phtml" hash="b9d8091752efa906328a4a3f0a21e847"/></dir></dir></dir><dir name="sales"><dir name="myorder"><dir name="items"><dir name="renderer"><file name="default.phtml" hash="b61198dff58c6a5aa3e5e46578c0cbbe"/><dir name="ship"><file name="default.phtml" hash="6c58361fff7b14e6f573287eccc28f04"/></dir></dir></dir></dir><dir name="order"><file name="form.phtml" hash="71772f95673836ad608deacf58bdaf34"/><file name="history.phtml" hash="25427e4315e98427065bf3edc82217ef"/><dir name="items"><dir name="renderer"><file name="default.phtml" hash="8a7556035d32a504f270498c1d9e1aa3"/></dir></dir><file name="items.phtml" hash="2b0a0054f065f420ce8bdc24433ab94e"/></dir><file name="print.phtml" hash="50f7d2ff531b61a678a4d65123fbae91"/><file name="selleroptions.phtml" hash="389508e5804161be886069959a8770f2"/><file name="vieworder.phtml" hash="ef9810ecf4160961d139d9dab847a9b0"/></dir><dir name="seller"><dir name="account"><file name="myorders.phtml" hash="51696ea86d20d3306b2ef8be2fb5e8b0"/></dir><file name="info.phtml" hash="cbfde090d5ee320918b031e1145159e0"/><file name="logo.phtml" hash="3d60bc24a72755bc5b03001537a0290e"/><file name="ratings.phtml" hash="885779d8e85ff3fb8e3f1fe50cd18c7d"/><file name="seller_ratings.phtml" hash="7307d70ae60465825fc2a31fe9b2d4ad"/></dir></dir></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Cybage_Marketplace.xml" hash="655674c415c4a30754d292b1b585f959"/></dir></target><target name="magelocale"><dir name="en_US"><dir name="template"><dir name="email"><file name="newseller_account.html" hash="298a277968587aa17dab9571d37f1116"/><file name="pendingorder_reminder.html" hash="7698d6a043afb5d2a52571a8e373b968"/><file name="seller_payment.html" hash="1b6350fdebfe1b496d03a164f616d415"/><file name="seller_status.html" hash="8b01d0a683d8fe1d4774fc32cdfb09a7"/><dir name="sales"><file name="customer_cancelled_new.html" hash="cbfe7cfa8307995aff1d35cadb62b910"/><file name="customer_completed_new.html" hash="afd8b01955854d0235aaa4e94a41dc87"/><file name="customer_processing_new.html" hash="3521f931be71816a0a6bc81d56d0961f"/><file name="product_comment.html" hash="e251a719323814263e9f84b12601b892"/></dir></dir></dir></dir></target><target name="mageweb"><dir name="js"><dir name="jquery"><file name="jquery-1.9.1.min.js" hash="993baffc269ef5414ec40f3d2de19294"/></dir><dir name="marketplace"><dir name="fancybox"><file name="jquery-1.7.2.min.js" hash="09bf7cb5fd333ee8c1c6be7475f85026"/><file name="jquery.fancybox-1.3.4.pack.js" hash="dc148ee1f177ab970808bf082b773963"/><file name="jquery.mousewheel-3.0.4.pack.js" hash="8ed7eaa3ff4d601639bfc1d594713957"/><file name="jquery.noconflict.js" hash="3179f2255b046d5f2e9a71e365287bef"/></dir><file name="nicEdit-latest.js.js" hash="46134bdf90c2e6279bb5efe7874a0ebc"/></dir></dir></target><target name="magemedia"><dir name="marketplace"><file name="productimport.csv" hash="7b0c8a1c0d5392371a49bda7badc1298"/></dir></target><target name="mageskin"><dir name="frontend"><dir name="base"><dir name="default"><dir name="css"><dir name="marketplace"><file name="jquery.fancybox-1.3.4.css" hash="0233ba7e3d8418cebf47fc9983f65e60"/><file name="styles.css" hash="30d9bc46cec97d7627b3fce3e595c009"/></dir></dir><dir name="images"><dir name="marketplace"><dir name="fancybox"><file name="blank.gif" hash="325472601571f31e1bf00674c368d335"/><file name="fancy_close.png" hash="6e2879a324a76e9972ebc98201aae1d8"/><file name="fancy_loading.png" hash="b1d54c240cf06e7f41e372d56919b738"/><file name="fancy_nav_left.png" hash="3f3e406102152cd8236383568a40ba35"/><file name="fancy_nav_right.png" hash="216e4bde5bddeeaa60dc3d692890a68e"/><file name="fancy_shadow_e.png" hash="fd4f491080d29fade5080877f1ba4c8b"/><file name="fancy_shadow_n.png" hash="18cde16379b2ceadef714d9b346d09ec"/><file name="fancy_shadow_ne.png" hash="63adf788acf193d4e4f3642d7d793125"/><file name="fancy_shadow_nw.png" hash="c820c878aedb7a7f9ebd7135a58e7c65"/><file name="fancy_shadow_s.png" hash="9b9e5c888028aaef40fe5b6a363f1e29"/><file name="fancy_shadow_se.png" hash="a8afd5a008884380ee712d177105268f"/><file name="fancy_shadow_sw.png" hash="f81cc0fee5581d76ad3cebe47e7e791b"/><file name="fancy_shadow_w.png" hash="59b0e63eb059e58d932cfd53da4d87e6"/><file name="fancy_title_left.png" hash="1582ac2d3bef6a6445bf02ceca2741cd"/><file name="fancy_title_main.png" hash="38dad6c1ed4bdc81c0bec721b2deb8c2"/><file name="fancy_title_over.png" hash="b886fd165d4b7ac77d41fb52d87ffc60"/><file name="fancy_title_right.png" hash="6cbe0c935511e7f9a2555ccb6a7324c4"/><file name="fancybox-x.png" hash="168696d8a694214090ef90e029cdf393"/><file name="fancybox-y.png" hash="36a58859beb9a6b19322a37466b9f78e"/><file name="fancybox.png" hash="11e57e492ee0311540967cc7a1e6e3e2"/></dir><file name="icon_export.gif" hash="9a13f20c6a17b41b9c357545c2da5636"/></dir></dir></dir></dir></dir></target></contents>
35
  <compatible/>
36
  <dependencies><required><php><min>5.1.0</min><max>6.0.0</max></php></required></dependencies>
37
  </package>