Version Notes
Dealer Inquiry
Download this release
Release Info
Developer | Capacity Web Solutions |
Extension | Dealer_Inquery |
Version | 1.2.0 |
Comparing to | |
See all releases |
Code changes from version 1.1.9 to 1.2.0
- app/code/community/CapacityWebSolutions/Inquiry/Block/Inquiry.php +8 -4
- app/code/community/CapacityWebSolutions/Inquiry/Block/Manage/Inquiry.php +8 -4
- app/code/community/CapacityWebSolutions/Inquiry/Helper/Data.php +10 -4
- app/code/community/CapacityWebSolutions/Inquiry/Model/Inquiry.php +10 -4
- app/code/community/CapacityWebSolutions/Inquiry/Model/Mysql4/Inquiry.php +9 -4
- app/code/community/CapacityWebSolutions/Inquiry/Model/Mysql4/Inquiry/Collection.php +10 -4
- app/code/community/CapacityWebSolutions/Inquiry/controllers/IndexController.php +9 -4
- app/code/community/CapacityWebSolutions/Inquiry/controllers/Manage/InquiryController.php +9 -4
- app/code/community/CapacityWebSolutions/Inquiry/etc/config.xml +12 -1
- app/code/community/CapacityWebSolutions/Inquiry/etc/system.xml +7 -4
- app/code/community/CapacityWebSolutions/Inquiry/sql/inquiry_setup/mysql4-install-0.1.0.php +10 -1
- app/design/adminhtml/default/default/layout/inquiry.xml +7 -4
- app/design/adminhtml/default/default/template/inquiry/inquiry.phtml +8 -5
- app/design/adminhtml/default/default/template/inquiry/view.phtml +10 -5
- app/design/frontend/base/default/layout/inquiry.xml +10 -0
- app/design/frontend/base/default/template/inquiry/inquiry.phtml +10 -6
- app/design/frontend/base/default/template/inquiry/thanks.phtml +7 -5
- package.xml +5 -5
- skin/frontend/base/default/css/inquiry.css +7 -0
app/code/community/CapacityWebSolutions/Inquiry/Block/Inquiry.php
CHANGED
@@ -1,8 +1,12 @@
|
|
1 |
<?php
|
2 |
-
|
3 |
-
|
4 |
-
|
5 |
-
|
|
|
|
|
|
|
|
|
6 |
|
7 |
class CapacityWebSolutions_Inquiry_Block_Inquiry extends Mage_Core_Block_Template
|
8 |
{
|
1 |
<?php
|
2 |
+
|
3 |
+
/***************************************************************************
|
4 |
+
@extension : Dealer Inquiry Extension.
|
5 |
+
@copyright : Copyright (c) 2014 Capacity Web Solutions.
|
6 |
+
( http://www.capacitywebsolutions.com )
|
7 |
+
@author : Capacity Web Solutions Pvt. Ltd.
|
8 |
+
@support : magento@capacitywebsolutions.com
|
9 |
+
***************************************************************************/
|
10 |
|
11 |
class CapacityWebSolutions_Inquiry_Block_Inquiry extends Mage_Core_Block_Template
|
12 |
{
|
app/code/community/CapacityWebSolutions/Inquiry/Block/Manage/Inquiry.php
CHANGED
@@ -1,8 +1,12 @@
|
|
1 |
<?php
|
2 |
-
|
3 |
-
|
4 |
-
|
5 |
-
|
|
|
|
|
|
|
|
|
6 |
|
7 |
class CapacityWebSolutions_Inquiry_Block_Manage_Inquiry extends Mage_Adminhtml_Block_Widget_Grid_Container
|
8 |
{
|
1 |
<?php
|
2 |
+
|
3 |
+
/***************************************************************************
|
4 |
+
@extension : Dealer Inquiry Extension.
|
5 |
+
@copyright : Copyright (c) 2014 Capacity Web Solutions.
|
6 |
+
( http://www.capacitywebsolutions.com )
|
7 |
+
@author : Capacity Web Solutions Pvt. Ltd.
|
8 |
+
@support : magento@capacitywebsolutions.com
|
9 |
+
***************************************************************************/
|
10 |
|
11 |
class CapacityWebSolutions_Inquiry_Block_Manage_Inquiry extends Mage_Adminhtml_Block_Widget_Grid_Container
|
12 |
{
|
app/code/community/CapacityWebSolutions/Inquiry/Helper/Data.php
CHANGED
@@ -1,8 +1,14 @@
|
|
1 |
<?php
|
2 |
-
|
3 |
-
|
4 |
-
|
5 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
6 |
class CapacityWebSolutions_Inquiry_Helper_Data extends Mage_Core_Helper_Abstract
|
7 |
{
|
8 |
}
|
1 |
<?php
|
2 |
+
|
3 |
+
/***************************************************************************
|
4 |
+
@extension : Dealer Inquiry Extension.
|
5 |
+
@copyright : Copyright (c) 2014 Capacity Web Solutions.
|
6 |
+
( http://www.capacitywebsolutions.com )
|
7 |
+
@author : Capacity Web Solutions Pvt. Ltd.
|
8 |
+
@support : magento@capacitywebsolutions.com
|
9 |
+
***************************************************************************/
|
10 |
+
|
11 |
+
|
12 |
class CapacityWebSolutions_Inquiry_Helper_Data extends Mage_Core_Helper_Abstract
|
13 |
{
|
14 |
}
|
app/code/community/CapacityWebSolutions/Inquiry/Model/Inquiry.php
CHANGED
@@ -1,8 +1,14 @@
|
|
1 |
<?php
|
2 |
-
|
3 |
-
|
4 |
-
|
5 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
6 |
class CapacityWebSolutions_Inquiry_Model_Inquiry extends Mage_Core_Model_Abstract
|
7 |
{
|
8 |
public function _construct()
|
1 |
<?php
|
2 |
+
|
3 |
+
/***************************************************************************
|
4 |
+
@extension : Dealer Inquiry Extension.
|
5 |
+
@copyright : Copyright (c) 2014 Capacity Web Solutions.
|
6 |
+
( http://www.capacitywebsolutions.com )
|
7 |
+
@author : Capacity Web Solutions Pvt. Ltd.
|
8 |
+
@support : magento@capacitywebsolutions.com
|
9 |
+
***************************************************************************/
|
10 |
+
|
11 |
+
|
12 |
class CapacityWebSolutions_Inquiry_Model_Inquiry extends Mage_Core_Model_Abstract
|
13 |
{
|
14 |
public function _construct()
|
app/code/community/CapacityWebSolutions/Inquiry/Model/Mysql4/Inquiry.php
CHANGED
@@ -1,8 +1,13 @@
|
|
1 |
<?php
|
2 |
-
|
3 |
-
|
4 |
-
|
5 |
-
|
|
|
|
|
|
|
|
|
|
|
6 |
class CapacityWebSolutions_Inquiry_Model_Mysql4_Inquiry extends Mage_Core_Model_Mysql4_Abstract
|
7 |
{
|
8 |
public function _construct()
|
1 |
<?php
|
2 |
+
|
3 |
+
/***************************************************************************
|
4 |
+
@extension : Dealer Inquiry Extension.
|
5 |
+
@copyright : Copyright (c) 2014 Capacity Web Solutions.
|
6 |
+
( http://www.capacitywebsolutions.com )
|
7 |
+
@author : Capacity Web Solutions Pvt. Ltd.
|
8 |
+
@support : magento@capacitywebsolutions.com
|
9 |
+
***************************************************************************/
|
10 |
+
|
11 |
class CapacityWebSolutions_Inquiry_Model_Mysql4_Inquiry extends Mage_Core_Model_Mysql4_Abstract
|
12 |
{
|
13 |
public function _construct()
|
app/code/community/CapacityWebSolutions/Inquiry/Model/Mysql4/Inquiry/Collection.php
CHANGED
@@ -1,8 +1,14 @@
|
|
1 |
<?php
|
2 |
-
|
3 |
-
|
4 |
-
|
5 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
6 |
class CapacityWebSolutions_Inquiry_Model_Mysql4_Inquiry_Collection extends Mage_Core_Model_Mysql4_Collection_Abstract
|
7 |
{
|
8 |
public function _construct()
|
1 |
<?php
|
2 |
+
|
3 |
+
/***************************************************************************
|
4 |
+
@extension : Dealer Inquiry Extension.
|
5 |
+
@copyright : Copyright (c) 2014 Capacity Web Solutions.
|
6 |
+
( http://www.capacitywebsolutions.com )
|
7 |
+
@author : Capacity Web Solutions Pvt. Ltd.
|
8 |
+
@support : magento@capacitywebsolutions.com
|
9 |
+
***************************************************************************/
|
10 |
+
|
11 |
+
|
12 |
class CapacityWebSolutions_Inquiry_Model_Mysql4_Inquiry_Collection extends Mage_Core_Model_Mysql4_Collection_Abstract
|
13 |
{
|
14 |
public function _construct()
|
app/code/community/CapacityWebSolutions/Inquiry/controllers/IndexController.php
CHANGED
@@ -1,8 +1,13 @@
|
|
1 |
<?php
|
2 |
-
|
3 |
-
|
4 |
-
|
5 |
-
|
|
|
|
|
|
|
|
|
|
|
6 |
class CapacityWebSolutions_Inquiry_IndexController extends Mage_Core_Controller_Front_Action
|
7 |
{
|
8 |
public function indexAction()
|
1 |
<?php
|
2 |
+
|
3 |
+
/***************************************************************************
|
4 |
+
@extension : Dealer Inquiry Extension.
|
5 |
+
@copyright : Copyright (c) 2014 Capacity Web Solutions.
|
6 |
+
( http://www.capacitywebsolutions.com )
|
7 |
+
@author : Capacity Web Solutions Pvt. Ltd.
|
8 |
+
@support : magento@capacitywebsolutions.com
|
9 |
+
***************************************************************************/
|
10 |
+
|
11 |
class CapacityWebSolutions_Inquiry_IndexController extends Mage_Core_Controller_Front_Action
|
12 |
{
|
13 |
public function indexAction()
|
app/code/community/CapacityWebSolutions/Inquiry/controllers/Manage/InquiryController.php
CHANGED
@@ -1,8 +1,13 @@
|
|
1 |
<?php
|
2 |
-
|
3 |
-
|
4 |
-
|
5 |
-
|
|
|
|
|
|
|
|
|
|
|
6 |
class CapacityWebSolutions_Inquiry_Manage_InquiryController extends Mage_Adminhtml_Controller_Action
|
7 |
{
|
8 |
public function indexAction()
|
1 |
<?php
|
2 |
+
|
3 |
+
/***************************************************************************
|
4 |
+
@extension : Dealer Inquiry Extension.
|
5 |
+
@copyright : Copyright (c) 2014 Capacity Web Solutions.
|
6 |
+
( http://www.capacitywebsolutions.com )
|
7 |
+
@author : Capacity Web Solutions Pvt. Ltd.
|
8 |
+
@support : magento@capacitywebsolutions.com
|
9 |
+
***************************************************************************/
|
10 |
+
|
11 |
class CapacityWebSolutions_Inquiry_Manage_InquiryController extends Mage_Adminhtml_Controller_Action
|
12 |
{
|
13 |
public function indexAction()
|
app/code/community/CapacityWebSolutions/Inquiry/etc/config.xml
CHANGED
@@ -1,8 +1,19 @@
|
|
1 |
<?xml version="1.0"?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
<config>
|
3 |
<modules>
|
4 |
<CapacityWebSolutions_Inquiry>
|
5 |
-
<version>
|
6 |
</CapacityWebSolutions_Inquiry>
|
7 |
</modules>
|
8 |
<global>
|
1 |
<?xml version="1.0"?>
|
2 |
+
|
3 |
+
<!--
|
4 |
+
/***************************************************************************
|
5 |
+
@extension : Dealer Inquiry Extension.
|
6 |
+
@copyright : Copyright (c) 2014 Capacity Web Solutions.
|
7 |
+
( http://www.capacitywebsolutions.com )
|
8 |
+
@author : Capacity Web Solutions Pvt. Ltd.
|
9 |
+
@support : magento@capacitywebsolutions.com
|
10 |
+
***************************************************************************/
|
11 |
+
-->
|
12 |
+
|
13 |
<config>
|
14 |
<modules>
|
15 |
<CapacityWebSolutions_Inquiry>
|
16 |
+
<version>1.2.0</version>
|
17 |
</CapacityWebSolutions_Inquiry>
|
18 |
</modules>
|
19 |
<global>
|
app/code/community/CapacityWebSolutions/Inquiry/etc/system.xml
CHANGED
@@ -1,9 +1,12 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
<!--
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
|
|
|
|
|
|
7 |
-->
|
8 |
<config>
|
9 |
<tabs>
|
1 |
<?xml version="1.0"?>
|
2 |
<!--
|
3 |
+
/***************************************************************************
|
4 |
+
@extension : Dealer Inquiry Extension.
|
5 |
+
@copyright : Copyright (c) 2014 Capacity Web Solutions.
|
6 |
+
( http://www.capacitywebsolutions.com )
|
7 |
+
@author : Capacity Web Solutions Pvt. Ltd.
|
8 |
+
@support : magento@capacitywebsolutions.com
|
9 |
+
***************************************************************************/
|
10 |
-->
|
11 |
<config>
|
12 |
<tabs>
|
app/code/community/CapacityWebSolutions/Inquiry/sql/inquiry_setup/mysql4-install-0.1.0.php
CHANGED
@@ -1,5 +1,14 @@
|
|
1 |
<?php
|
2 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3 |
$installer = $this;
|
4 |
|
5 |
$installer->startSetup();
|
@@ -28,7 +37,7 @@ CREATE TABLE IF NOT EXISTS `{$this->getTable('dealerinquiry')}` (
|
|
28 |
`createddt` datetime NOT NULL,
|
29 |
`updateddt` datetime NOT NULL,
|
30 |
PRIMARY KEY (`dealerid`)
|
31 |
-
) ENGINE=MyISAM
|
32 |
|
33 |
|
34 |
");
|
1 |
<?php
|
2 |
|
3 |
+
/***************************************************************************
|
4 |
+
@extension : Dealer Inquiry Extension.
|
5 |
+
@copyright : Copyright (c) 2014 Capacity Web Solutions.
|
6 |
+
( http://www.capacitywebsolutions.com )
|
7 |
+
@author : Capacity Web Solutions Pvt. Ltd.
|
8 |
+
@support : magento@capacitywebsolutions.com
|
9 |
+
***************************************************************************/
|
10 |
+
|
11 |
+
|
12 |
$installer = $this;
|
13 |
|
14 |
$installer->startSetup();
|
37 |
`createddt` datetime NOT NULL,
|
38 |
`updateddt` datetime NOT NULL,
|
39 |
PRIMARY KEY (`dealerid`)
|
40 |
+
) ENGINE=MyISAM CHARACTER SET utf8 COLLATE utf8_general_ci AUTO_INCREMENT=0;
|
41 |
|
42 |
|
43 |
");
|
app/design/adminhtml/default/default/layout/inquiry.xml
CHANGED
@@ -1,9 +1,12 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
<!--
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
|
|
|
|
|
|
7 |
-->
|
8 |
|
9 |
<layout>
|
1 |
<?xml version="1.0"?>
|
2 |
<!--
|
3 |
+
/***************************************************************************
|
4 |
+
@extension : Dealer Inquiry Extension.
|
5 |
+
@copyright : Copyright (c) 2014 Capacity Web Solutions.
|
6 |
+
( http://www.capacitywebsolutions.com )
|
7 |
+
@author : Capacity Web Solutions Pvt. Ltd.
|
8 |
+
@support : magento@capacitywebsolutions.com
|
9 |
+
***************************************************************************/
|
10 |
-->
|
11 |
|
12 |
<layout>
|
app/design/adminhtml/default/default/template/inquiry/inquiry.phtml
CHANGED
@@ -1,9 +1,12 @@
|
|
1 |
<?php
|
2 |
-
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
|
|
|
|
|
|
7 |
?>
|
8 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
9 |
<html lang="en">
|
1 |
<?php
|
2 |
+
/***************************************************************************
|
3 |
+
@extension : Dealer Inquiry Extension.
|
4 |
+
@copyright : Copyright (c) 2014 Capacity Web Solutions.
|
5 |
+
( http://www.capacitywebsolutions.com )
|
6 |
+
@author : Capacity Web Solutions Pvt. Ltd.
|
7 |
+
@support : magento@capacitywebsolutions.com
|
8 |
+
***************************************************************************/
|
9 |
+
|
10 |
?>
|
11 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
12 |
<html lang="en">
|
app/design/adminhtml/default/default/template/inquiry/view.phtml
CHANGED
@@ -1,9 +1,14 @@
|
|
1 |
<?php
|
2 |
-
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
|
|
|
|
|
|
|
|
|
|
7 |
$item = $this->getAllDealer($this->getRequest()->getParam("delid"));
|
8 |
$website_id = Mage::getModel('core/store')->load($item['storeid'])->getWebsiteId();
|
9 |
|
1 |
<?php
|
2 |
+
|
3 |
+
/***************************************************************************
|
4 |
+
@extension : Dealer Inquiry Extension.
|
5 |
+
@copyright : Copyright (c) 2014 Capacity Web Solutions.
|
6 |
+
( http://www.capacitywebsolutions.com )
|
7 |
+
@author : Capacity Web Solutions Pvt. Ltd.
|
8 |
+
@support : magento@capacitywebsolutions.com
|
9 |
+
***************************************************************************/
|
10 |
+
|
11 |
+
$_taxvat = $this->getLayout()->createBlock('customer/widget_taxvat');
|
12 |
$item = $this->getAllDealer($this->getRequest()->getParam("delid"));
|
13 |
$website_id = Mage::getModel('core/store')->load($item['storeid'])->getWebsiteId();
|
14 |
|
app/design/frontend/base/default/layout/inquiry.xml
CHANGED
@@ -1,5 +1,15 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3 |
<layout version="0.1.0">
|
4 |
<default>
|
5 |
<reference name="top.links">
|
1 |
<?xml version="1.0"?>
|
2 |
|
3 |
+
<!--
|
4 |
+
/***************************************************************************
|
5 |
+
@extension : Dealer Inquiry Extension.
|
6 |
+
@copyright : Copyright (c) 2014 Capacity Web Solutions.
|
7 |
+
( http://www.capacitywebsolutions.com )
|
8 |
+
@author : Capacity Web Solutions Pvt. Ltd.
|
9 |
+
@support : magento@capacitywebsolutions.com
|
10 |
+
***************************************************************************/
|
11 |
+
-->
|
12 |
+
|
13 |
<layout version="0.1.0">
|
14 |
<default>
|
15 |
<reference name="top.links">
|
app/design/frontend/base/default/template/inquiry/inquiry.phtml
CHANGED
@@ -1,8 +1,12 @@
|
|
1 |
<?php
|
2 |
-
|
3 |
-
|
4 |
-
|
5 |
-
|
|
|
|
|
|
|
|
|
6 |
$code = trim($this->getRandomCode());
|
7 |
$_taxvat = $this->getLayout()->createBlock('customer/widget_taxvat');
|
8 |
$heading = Mage::getStoreConfig('inquiry/general/heading');
|
@@ -67,9 +71,9 @@ jq("#img_refresh").click(function(){
|
|
67 |
<?php endif; ?>
|
68 |
|
69 |
<div id="about-copy" class="inquiryForm">
|
70 |
-
<h1><img src="<?php echo $this->getSkinUrl('images/inquiry-icon.png') ?>" alt="" /><?php if($heading): ?><?php echo $heading; ?><?php endif; ?></h1>
|
71 |
<p><?php if($des_gen): ?><?php echo $des_gen; ?><?php endif; ?></p>
|
72 |
-
<div class="indicates"><span class="required"><em>*</em></span
|
73 |
<?php
|
74 |
$msg = Mage::getSingleton('core/session')->getSomeSessionVar();
|
75 |
if($msg == 'wrong') { ?>
|
1 |
<?php
|
2 |
+
/***************************************************************************
|
3 |
+
@extension : Dealer Inquiry Extension.
|
4 |
+
@copyright : Copyright (c) 2014 Capacity Web Solutions.
|
5 |
+
( http://www.capacitywebsolutions.com )
|
6 |
+
@author : Capacity Web Solutions Pvt. Ltd.
|
7 |
+
@support : magento@capacitywebsolutions.com
|
8 |
+
***************************************************************************/
|
9 |
+
|
10 |
$code = trim($this->getRandomCode());
|
11 |
$_taxvat = $this->getLayout()->createBlock('customer/widget_taxvat');
|
12 |
$heading = Mage::getStoreConfig('inquiry/general/heading');
|
71 |
<?php endif; ?>
|
72 |
|
73 |
<div id="about-copy" class="inquiryForm">
|
74 |
+
<h1><img src="<?php echo $this->getSkinUrl('images/inquiry-icon.png') ?>" alt="" /><?php if($heading): ?><?php echo $this->__($heading); ?><?php echo $heading; ?><?php endif; ?></h1>
|
75 |
<p><?php if($des_gen): ?><?php echo $des_gen; ?><?php endif; ?></p>
|
76 |
+
<div class="indicates"><span class="required"><em>*</em></span><?php echo $this->__('Indicates required.') ?></div>
|
77 |
<?php
|
78 |
$msg = Mage::getSingleton('core/session')->getSomeSessionVar();
|
79 |
if($msg == 'wrong') { ?>
|
app/design/frontend/base/default/template/inquiry/thanks.phtml
CHANGED
@@ -1,9 +1,11 @@
|
|
1 |
<?php
|
2 |
-
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
|
|
|
|
7 |
?>
|
8 |
|
9 |
|
1 |
<?php
|
2 |
+
/***************************************************************************
|
3 |
+
@extension : Dealer Inquiry Extension.
|
4 |
+
@copyright : Copyright (c) 2014 Capacity Web Solutions.
|
5 |
+
( http://www.capacitywebsolutions.com )
|
6 |
+
@author : Capacity Web Solutions Pvt. Ltd.
|
7 |
+
@support : magento@capacitywebsolutions.com
|
8 |
+
***************************************************************************/
|
9 |
?>
|
10 |
|
11 |
|
package.xml
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Dealer_Inquery</name>
|
4 |
-
<version>1.
|
5 |
<stability>stable</stability>
|
6 |
<license uri="http://opensource.org/licenses/osl-3.0.php">OSL 3.0</license>
|
7 |
<channel>community</channel>
|
@@ -10,9 +10,9 @@
|
|
10 |
<description>Dealer filled the details like name, address, contact number, email, website and description inquiry form. It informs to customer and admin by email when customer submits inquiry form. This extension also provides customer listing who submit inquiry form in admin under "&lt;strong&gt;Dealer Management &lt;/strong&gt;"section. You can view inquiry details of customer and also delete the inquiry information. This extension provides create customer link from dealer listing page.</description>
|
11 |
<notes>Dealer Inquiry</notes>
|
12 |
<authors><author><name>Capacity Web Solutions</name><user>capacitywebsolutions</user><email>magento@capacitywebsolutions.com</email></author></authors>
|
13 |
-
<date>2014-
|
14 |
-
<time>
|
15 |
-
<contents><target name="mageetc"><dir name="modules"><file name="CapacityWebSolutions_Inquiry.xml" hash="02eb95f93a47babe658b8cacd8a79dba"/></dir></target><target name="magecommunity"><dir name="CapacityWebSolutions"><dir name="Inquiry"><dir name="Block"><file name="Inquiry.php" hash="
|
16 |
<compatible/>
|
17 |
-
<dependencies><required><php><min>5.0.0</min><max>5.
|
18 |
</package>
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Dealer_Inquery</name>
|
4 |
+
<version>1.2.0</version>
|
5 |
<stability>stable</stability>
|
6 |
<license uri="http://opensource.org/licenses/osl-3.0.php">OSL 3.0</license>
|
7 |
<channel>community</channel>
|
10 |
<description>Dealer filled the details like name, address, contact number, email, website and description inquiry form. It informs to customer and admin by email when customer submits inquiry form. This extension also provides customer listing who submit inquiry form in admin under "&lt;strong&gt;Dealer Management &lt;/strong&gt;"section. You can view inquiry details of customer and also delete the inquiry information. This extension provides create customer link from dealer listing page.</description>
|
11 |
<notes>Dealer Inquiry</notes>
|
12 |
<authors><author><name>Capacity Web Solutions</name><user>capacitywebsolutions</user><email>magento@capacitywebsolutions.com</email></author></authors>
|
13 |
+
<date>2014-09-25</date>
|
14 |
+
<time>06:32:31</time>
|
15 |
+
<contents><target name="mageetc"><dir name="modules"><file name="CapacityWebSolutions_Inquiry.xml" hash="02eb95f93a47babe658b8cacd8a79dba"/></dir></target><target name="magecommunity"><dir name="CapacityWebSolutions"><dir name="Inquiry"><dir name="Block"><file name="Inquiry.php" hash="23a62e5deeb24a4ab7ad826d919353c1"/><dir name="Manage"><file name="Inquiry.php" hash="90d6fe51fa5abf054d262f6279e18f39"/></dir></dir><dir name="Helper"><file name="Data.php" hash="fda6bfc3e3979943b3a167a837d00f45"/></dir><dir name="Model"><file name="Inquiry.php" hash="3c54695e0e9c360a875b349d1301c8f7"/><dir name="Mysql4"><dir name="Inquiry"><file name="Collection.php" hash="d01946e0515a76d6f2c8f794c06fd91f"/></dir><file name="Inquiry.php" hash="86118762d4971fd3b686fd434da94b6a"/></dir></dir><dir name="controllers"><file name="IndexController.php" hash="6ccaed60590252cd6d379800761bff7e"/><dir name="Manage"><file name="InquiryController.php" hash="daabd73f1d6352384803c0854dadb6e8"/></dir></dir><dir name="etc"><file name="config.xml" hash="f641908ce30deb272617759ede46ce1a"/><file name="system.xml" hash="e56619a9d0c2a0d79da03b17c0294315"/></dir><dir name="sql"><dir name="inquiry_setup"><file name="mysql4-install-0.1.0.php" hash="cd84ab6495a0e3fc3a388fe13f8d0d59"/></dir></dir></dir></dir></target><target name="magedesign"><dir name="frontend"><dir name="base"><dir name="default"><dir name="template"><dir name="inquiry"><file name="inquiry.phtml" hash="ac6f5a0967d77995bd5c2f12e843b313"/><file name="thanks.phtml" hash="0028949ed1f8deead827b44489478402"/></dir></dir><dir name="layout"><file name="inquiry.xml" hash="9ff204bfe2c79b0aa2f3c9ebc65b95f4"/></dir></dir></dir></dir><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="inquiry.xml" hash="5f6627fa30633895bb5d2b5d30425fdb"/></dir><dir name="template"><dir name="inquiry"><file name="inquiry.phtml" hash="47409502577439a116235e687301d2d7"/><file name="view.phtml" hash="82bc224a7d37cce0c549dc804bf8da19"/></dir></dir></dir></dir></dir></target><target name="mageweb"><dir name="js"><dir name="inquiry"><file name="jquery.min.js" hash="8fc25e27d42774aeae6edbc0a18b72aa"/></dir></dir></target><target name="mageskin"><dir name="frontend"><dir name="base"><dir name="default"><dir name="images"><file name="refresh.png" hash="cb4184defa247c1b3ebfcf89cd279872"/><file name="inquiry-icon.png" hash="2fe54ac19c9baab1c6ac4927b6a034f5"/></dir><dir name="css"><file name="inquiry.css" hash="f6a43a7ffe6144e603fb7c09155557d6"/></dir></dir></dir></dir></target></contents>
|
16 |
<compatible/>
|
17 |
+
<dependencies><required><php><min>5.0.0</min><max>5.6.0</max></php></required></dependencies>
|
18 |
</package>
|
skin/frontend/base/default/css/inquiry.css
CHANGED
@@ -1,3 +1,10 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
|
2 |
@import url(http://fonts.googleapis.com/css?family=Roboto:100,100italic,300,300italic,400,400italic,500,500italic,700,700italic,900,900italic);
|
3 |
@import url(http://fonts.googleapis.com/css?family=Special+Elite);
|
1 |
+
/***************************************************************************
|
2 |
+
@extension : Dealer Inquiry Extension.
|
3 |
+
@copyright : Copyright (c) 2014 Capacity Web Solutions.
|
4 |
+
( http://www.capacitywebsolutions.com )
|
5 |
+
@author : Capacity Web Solutions Pvt. Ltd.
|
6 |
+
@support : magento@capacitywebsolutions.com
|
7 |
+
***************************************************************************/
|
8 |
|
9 |
@import url(http://fonts.googleapis.com/css?family=Roboto:100,100italic,300,300italic,400,400italic,500,500italic,700,700italic,900,900italic);
|
10 |
@import url(http://fonts.googleapis.com/css?family=Special+Elite);
|