Version Notes
First stable release 1.2.0
Download this release
Release Info
Developer | Clarion Tech |
Extension | MageTracking_TicketSystem |
Version | 1.2.0 |
Comparing to | |
See all releases |
Code changes from version 1.2.1 to 1.2.0
- app/code/community/MageTracking/TicketSystem/Block/Adminhtml/Cat.php +19 -11
- app/code/community/MageTracking/TicketSystem/Block/Adminhtml/Cat/Cat.php +19 -11
- app/code/community/MageTracking/TicketSystem/Block/Adminhtml/Cat/Edit.php +19 -11
- app/code/community/MageTracking/TicketSystem/Block/Adminhtml/Cat/Edit/Form.php +19 -11
- app/code/community/MageTracking/TicketSystem/Block/Adminhtml/Cat/Edit/Tab/Form.php +20 -34
- app/code/community/MageTracking/TicketSystem/Block/Adminhtml/Cat/Edit/Tabs.php +19 -11
- app/code/community/MageTracking/TicketSystem/Block/Adminhtml/Cat/Grid.php +19 -11
- app/code/community/MageTracking/TicketSystem/Block/Adminhtml/Ticketsystem.php +19 -11
- app/code/community/MageTracking/TicketSystem/Block/Adminhtml/Ticketsystem/Cat.php +19 -11
- app/code/community/MageTracking/TicketSystem/Block/Adminhtml/Ticketsystem/Edit.php +19 -12
- app/code/community/MageTracking/TicketSystem/Block/Adminhtml/Ticketsystem/Edit/Form.php +20 -11
- app/code/community/MageTracking/TicketSystem/Block/Adminhtml/Ticketsystem/Edit/Newtabs.php +20 -11
- app/code/community/MageTracking/TicketSystem/Block/Adminhtml/Ticketsystem/Edit/Tab/Form.php +20 -12
- app/code/community/MageTracking/TicketSystem/Block/Adminhtml/Ticketsystem/Edit/Tab/Newform.php +19 -11
- app/code/community/MageTracking/TicketSystem/Block/Adminhtml/Ticketsystem/Edit/Tabs.php +20 -11
- app/code/community/MageTracking/TicketSystem/Block/Adminhtml/Ticketsystem/Grid.php +19 -12
- app/code/community/MageTracking/TicketSystem/Block/Adminhtml/Ticketsystem/Mail.php +19 -12
- app/code/community/MageTracking/TicketSystem/Block/Adminhtml/Ticketsystem/Mail/Form.php +19 -11
- app/code/community/MageTracking/TicketSystem/Block/Adminhtml/Ticketsystem/Mail/Tab/Form.php +20 -36
- app/code/community/MageTracking/TicketSystem/Block/Adminhtml/Ticketsystem/Mail/Tabs.php +19 -11
- app/code/community/MageTracking/TicketSystem/Block/Adminhtml/Ticketsystem/Setting.php +19 -11
- app/code/community/MageTracking/TicketSystem/Block/Adminhtml/Ticketsystem/Setting/Form.php +19 -12
- app/code/community/MageTracking/TicketSystem/Block/Adminhtml/Ticketsystem/Setting/Tab/Form.php +19 -11
- app/code/community/MageTracking/TicketSystem/Block/Adminhtml/Ticketsystem/Setting/Tabs.php +19 -12
- app/code/community/MageTracking/TicketSystem/Block/Cat.php +19 -12
- app/code/community/MageTracking/TicketSystem/Block/Ticketsystem.php +19 -12
- app/code/community/MageTracking/TicketSystem/Block/Ticketsystem/Edit.php +29 -22
- app/code/community/MageTracking/TicketSystem/Block/Ticketsystem/Navigation.php +27 -0
- app/code/community/MageTracking/TicketSystem/Block/Ticketsystem/View.php +27 -19
- app/code/community/MageTracking/TicketSystem/Helper/Data.php +19 -12
- app/code/community/MageTracking/TicketSystem/Helper/Mail.php +20 -15
- app/code/community/MageTracking/TicketSystem/Helper/Mail_data.php +21 -16
- app/code/community/MageTracking/TicketSystem/Helper/Phpmailer.php +32 -36
- app/code/community/MageTracking/TicketSystem/Helper/Smtp.php +27 -32
- app/code/community/MageTracking/TicketSystem/Helper/Ticket.php +18 -34
- app/code/community/MageTracking/TicketSystem/Helper/TicketFunctions.php +29 -20
- app/code/community/MageTracking/TicketSystem/Model/Answers.php +27 -0
- app/code/community/MageTracking/TicketSystem/Model/Cats.php +27 -0
- app/code/community/MageTracking/TicketSystem/Model/Groups.php +27 -0
- app/code/community/MageTracking/TicketSystem/Model/Mail.php +27 -0
- app/code/community/MageTracking/TicketSystem/Model/Messages.php +27 -0
- app/code/community/MageTracking/TicketSystem/Model/Settings.php +27 -0
- app/code/community/MageTracking/TicketSystem/Model/Status.php +27 -0
- app/code/community/MageTracking/TicketSystem/Model/Ticketsystem.php +28 -2
- app/code/community/MageTracking/TicketSystem/controllers/Adminhtml/CatController.php +19 -11
- app/code/community/MageTracking/TicketSystem/controllers/Adminhtml/MailController.php +19 -11
- app/code/community/MageTracking/TicketSystem/controllers/Adminhtml/SettingController.php +19 -11
- app/code/community/MageTracking/TicketSystem/controllers/Adminhtml/TicketsystemController.php +18 -34
- app/code/community/MageTracking/TicketSystem/controllers/IndexController.php +25 -63
- app/code/community/MageTracking/TicketSystem/etc/config.xml +1 -4
- app/code/community/MageTracking/TicketSystem/sql/ticketsystem_setup/{mysql4-install-1.2.1.php → mysql4-install-1.2.0.php} +0 -0
- app/design/frontend/base/default/template/ticketsystem/add.phtml +20 -12
- app/design/frontend/base/default/template/ticketsystem/edit.phtml +20 -12
- app/design/frontend/base/default/template/ticketsystem/navigation.phtml +14 -10
- app/design/frontend/base/default/template/ticketsystem/view.phtml +20 -12
- package.xml +5 -5
app/code/community/MageTracking/TicketSystem/Block/Adminhtml/Cat.php
CHANGED
@@ -1,23 +1,31 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
-
*
|
4 |
*
|
5 |
* NOTICE OF LICENSE
|
6 |
*
|
7 |
-
* This source file is subject to the
|
8 |
-
* that is bundled with this package in the file
|
9 |
* It is also available through the world-wide-web at this URL:
|
10 |
-
* http://
|
11 |
* If you did not receive a copy of the license and are unable to
|
12 |
* obtain it through the world-wide-web, please send an email
|
13 |
-
* to license@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
14 |
*
|
15 |
-
* @category
|
16 |
-
* @
|
17 |
-
* @
|
18 |
-
* @
|
19 |
-
|
20 |
-
* @
|
|
|
21 |
*/
|
22 |
|
23 |
class MageTracking_TicketSystem_Block_Adminhtml_Cat extends Mage_Adminhtml_Block_Widget_Grid_Container
|
1 |
<?php
|
2 |
/**
|
3 |
+
* Magento Community Edition
|
4 |
*
|
5 |
* NOTICE OF LICENSE
|
6 |
*
|
7 |
+
* This source file is subject to the Magento Community Edition License
|
8 |
+
* that is bundled with this package in the file LICENSE_EE.txt.
|
9 |
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://www.magentocommerce.com/license/community-edition
|
11 |
* If you did not receive a copy of the license and are unable to
|
12 |
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
*
|
22 |
+
* @category MageTracking
|
23 |
+
* @package MageTracking_TicketSystem
|
24 |
+
* @created Manmeet Kaur 23rd Sep,2014
|
25 |
+
* @author Clarion magento team<Manmeet Kaur>
|
26 |
+
|
27 |
+
* @copyright Copyright (c) 2012 Magento Inc. (http://www.magentocommerce.com)
|
28 |
+
* @license http://www.magentocommerce.com/license/community-edition
|
29 |
*/
|
30 |
|
31 |
class MageTracking_TicketSystem_Block_Adminhtml_Cat extends Mage_Adminhtml_Block_Widget_Grid_Container
|
app/code/community/MageTracking/TicketSystem/Block/Adminhtml/Cat/Cat.php
CHANGED
@@ -1,23 +1,31 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
-
*
|
4 |
*
|
5 |
* NOTICE OF LICENSE
|
6 |
*
|
7 |
-
* This source file is subject to the
|
8 |
-
* that is bundled with this package in the file
|
9 |
* It is also available through the world-wide-web at this URL:
|
10 |
-
* http://
|
11 |
* If you did not receive a copy of the license and are unable to
|
12 |
* obtain it through the world-wide-web, please send an email
|
13 |
-
* to license@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
14 |
*
|
15 |
-
* @category
|
16 |
-
* @
|
17 |
-
* @
|
18 |
-
* @
|
19 |
-
|
20 |
-
* @
|
|
|
21 |
*/
|
22 |
class MageTracking_TicketSystem_Block_Adminhtml_Cat extends Mage_Adminhtml_Block_Widget_Form_Container
|
23 |
{
|
1 |
<?php
|
2 |
/**
|
3 |
+
* Magento Community Edition
|
4 |
*
|
5 |
* NOTICE OF LICENSE
|
6 |
*
|
7 |
+
* This source file is subject to the Magento Community Edition License
|
8 |
+
* that is bundled with this package in the file LICENSE_EE.txt.
|
9 |
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://www.magentocommerce.com/license/community-edition
|
11 |
* If you did not receive a copy of the license and are unable to
|
12 |
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
*
|
22 |
+
* @category MageTracking
|
23 |
+
* @package MageTracking_TicketSystem
|
24 |
+
* @created Manmeet Kaur 25th Sep,2014
|
25 |
+
* @author Clarion magento team<Manmeet Kaur>
|
26 |
+
|
27 |
+
* @copyright Copyright (c) 2012 Magento Inc. (http://www.magentocommerce.com)
|
28 |
+
* @license http://www.magentocommerce.com/license/community-edition
|
29 |
*/
|
30 |
class MageTracking_TicketSystem_Block_Adminhtml_Cat extends Mage_Adminhtml_Block_Widget_Form_Container
|
31 |
{
|
app/code/community/MageTracking/TicketSystem/Block/Adminhtml/Cat/Edit.php
CHANGED
@@ -1,23 +1,31 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
-
*
|
4 |
*
|
5 |
* NOTICE OF LICENSE
|
6 |
*
|
7 |
-
* This source file is subject to the
|
8 |
-
* that is bundled with this package in the file
|
9 |
* It is also available through the world-wide-web at this URL:
|
10 |
-
* http://
|
11 |
* If you did not receive a copy of the license and are unable to
|
12 |
* obtain it through the world-wide-web, please send an email
|
13 |
-
* to license@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
14 |
*
|
15 |
-
* @category
|
16 |
-
* @
|
17 |
-
* @
|
18 |
-
* @
|
19 |
-
|
20 |
-
* @
|
|
|
21 |
*/
|
22 |
class MageTracking_TicketSystem_Block_Adminhtml_Cat_Edit extends Mage_Adminhtml_Block_Widget_Form_Container
|
23 |
{
|
1 |
<?php
|
2 |
/**
|
3 |
+
* Magento Community Edition
|
4 |
*
|
5 |
* NOTICE OF LICENSE
|
6 |
*
|
7 |
+
* This source file is subject to the Magento Community Edition License
|
8 |
+
* that is bundled with this package in the file LICENSE_EE.txt.
|
9 |
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://www.magentocommerce.com/license/community-edition
|
11 |
* If you did not receive a copy of the license and are unable to
|
12 |
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
*
|
22 |
+
* @category MageTracking
|
23 |
+
* @package MageTracking_TicketSystem
|
24 |
+
* @created Manmeet Kaur 25th Sep,2014
|
25 |
+
* @author Clarion magento team<Manmeet Kaur>
|
26 |
+
|
27 |
+
* @copyright Copyright (c) 2012 Magento Inc. (http://www.magentocommerce.com)
|
28 |
+
* @license http://www.magentocommerce.com/license/community-edition
|
29 |
*/
|
30 |
class MageTracking_TicketSystem_Block_Adminhtml_Cat_Edit extends Mage_Adminhtml_Block_Widget_Form_Container
|
31 |
{
|
app/code/community/MageTracking/TicketSystem/Block/Adminhtml/Cat/Edit/Form.php
CHANGED
@@ -1,23 +1,31 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
-
*
|
4 |
*
|
5 |
* NOTICE OF LICENSE
|
6 |
*
|
7 |
-
* This source file is subject to the
|
8 |
-
* that is bundled with this package in the file
|
9 |
* It is also available through the world-wide-web at this URL:
|
10 |
-
* http://
|
11 |
* If you did not receive a copy of the license and are unable to
|
12 |
* obtain it through the world-wide-web, please send an email
|
13 |
-
* to license@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
14 |
*
|
15 |
-
* @category
|
16 |
-
* @
|
17 |
-
* @
|
18 |
-
* @
|
19 |
-
|
20 |
-
* @
|
|
|
21 |
*/
|
22 |
class MageTracking_TicketSystem_Block_Adminhtml_Cat_Edit_Form extends Mage_Adminhtml_Block_Widget_Form
|
23 |
{
|
1 |
<?php
|
2 |
/**
|
3 |
+
* Magento Community Edition
|
4 |
*
|
5 |
* NOTICE OF LICENSE
|
6 |
*
|
7 |
+
* This source file is subject to the Magento Community Edition License
|
8 |
+
* that is bundled with this package in the file LICENSE_EE.txt.
|
9 |
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://www.magentocommerce.com/license/community-edition
|
11 |
* If you did not receive a copy of the license and are unable to
|
12 |
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
*
|
22 |
+
* @category MageTracking
|
23 |
+
* @package MageTracking_TicketSystem
|
24 |
+
* @created Manmeet Kaur 25th Sep,2014
|
25 |
+
* @author Clarion magento team<Manmeet Kaur>
|
26 |
+
|
27 |
+
* @copyright Copyright (c) 2012 Magento Inc. (http://www.magentocommerce.com)
|
28 |
+
* @license http://www.magentocommerce.com/license/community-edition
|
29 |
*/
|
30 |
class MageTracking_TicketSystem_Block_Adminhtml_Cat_Edit_Form extends Mage_Adminhtml_Block_Widget_Form
|
31 |
{
|
app/code/community/MageTracking/TicketSystem/Block/Adminhtml/Cat/Edit/Tab/Form.php
CHANGED
@@ -1,23 +1,31 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
-
*
|
4 |
*
|
5 |
* NOTICE OF LICENSE
|
6 |
*
|
7 |
-
* This source file is subject to the
|
8 |
-
* that is bundled with this package in the file
|
9 |
* It is also available through the world-wide-web at this URL:
|
10 |
-
* http://
|
11 |
* If you did not receive a copy of the license and are unable to
|
12 |
* obtain it through the world-wide-web, please send an email
|
13 |
-
* to license@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
14 |
*
|
15 |
-
* @category
|
16 |
-
* @
|
17 |
-
* @
|
18 |
-
* @
|
19 |
-
|
20 |
-
* @
|
|
|
21 |
*/
|
22 |
class MageTracking_TicketSystem_Block_Adminhtml_Cat_Edit_Tab_Form extends Mage_Adminhtml_Block_Widget_Form
|
23 |
{
|
@@ -34,29 +42,7 @@ class MageTracking_TicketSystem_Block_Adminhtml_Cat_Edit_Tab_Form extends Mage_A
|
|
34 |
'required' => true,
|
35 |
'name' => 'name',
|
36 |
));
|
37 |
-
|
38 |
-
/*$fieldset->addField('pophost', 'text', array(
|
39 |
-
'label' => Mage::helper('ticketsystem')->__('Pop 3 Host'),
|
40 |
-
'class' => 'required-entry',
|
41 |
-
'required' => true,
|
42 |
-
'name' => 'pophost',
|
43 |
-
));
|
44 |
-
|
45 |
-
$fieldset->addField('popuser', 'text', array(
|
46 |
-
'label' => Mage::helper('ticketsystem')->__('Pop 3 User'),
|
47 |
-
'class' => 'required-entry',
|
48 |
-
'required' => true,
|
49 |
-
'name' => 'popuser',
|
50 |
-
));
|
51 |
-
|
52 |
-
$fieldset->addField('poppass', 'password', array(
|
53 |
-
'label' => Mage::helper('ticketsystem')->__('Pop 3 Password'),
|
54 |
-
'class' => 'required-entry',
|
55 |
-
'required' => true,
|
56 |
-
'name' => 'poppass',
|
57 |
-
));*/
|
58 |
-
|
59 |
-
|
60 |
$fieldset->addField('email', 'text', array(
|
61 |
'label' => Mage::helper('ticketsystem')->__('Email'),
|
62 |
'class' => 'required-entry',
|
1 |
<?php
|
2 |
/**
|
3 |
+
* Magento Community Edition
|
4 |
*
|
5 |
* NOTICE OF LICENSE
|
6 |
*
|
7 |
+
* This source file is subject to the Magento Community Edition License
|
8 |
+
* that is bundled with this package in the file LICENSE_EE.txt.
|
9 |
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://www.magentocommerce.com/license/community-edition
|
11 |
* If you did not receive a copy of the license and are unable to
|
12 |
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
*
|
22 |
+
* @category MageTracking
|
23 |
+
* @package MageTracking_TicketSystem
|
24 |
+
* @created Manmeet Kaur 25th Sep,2014
|
25 |
+
* @author Clarion magento team<Manmeet Kaur>
|
26 |
+
|
27 |
+
* @copyright Copyright (c) 2012 Magento Inc. (http://www.magentocommerce.com)
|
28 |
+
* @license http://www.magentocommerce.com/license/community-edition
|
29 |
*/
|
30 |
class MageTracking_TicketSystem_Block_Adminhtml_Cat_Edit_Tab_Form extends Mage_Adminhtml_Block_Widget_Form
|
31 |
{
|
42 |
'required' => true,
|
43 |
'name' => 'name',
|
44 |
));
|
45 |
+
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
46 |
$fieldset->addField('email', 'text', array(
|
47 |
'label' => Mage::helper('ticketsystem')->__('Email'),
|
48 |
'class' => 'required-entry',
|
app/code/community/MageTracking/TicketSystem/Block/Adminhtml/Cat/Edit/Tabs.php
CHANGED
@@ -1,23 +1,31 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
-
*
|
4 |
*
|
5 |
* NOTICE OF LICENSE
|
6 |
*
|
7 |
-
* This source file is subject to the
|
8 |
-
* that is bundled with this package in the file
|
9 |
* It is also available through the world-wide-web at this URL:
|
10 |
-
* http://
|
11 |
* If you did not receive a copy of the license and are unable to
|
12 |
* obtain it through the world-wide-web, please send an email
|
13 |
-
* to license@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
14 |
*
|
15 |
-
* @category
|
16 |
-
* @
|
17 |
-
* @
|
18 |
-
* @
|
19 |
-
|
20 |
-
* @
|
|
|
21 |
*/
|
22 |
class MageTracking_TicketSystem_Block_Adminhtml_Cat_Edit_Tabs extends Mage_Adminhtml_Block_Widget_Tabs
|
23 |
{
|
1 |
<?php
|
2 |
/**
|
3 |
+
* Magento Community Edition
|
4 |
*
|
5 |
* NOTICE OF LICENSE
|
6 |
*
|
7 |
+
* This source file is subject to the Magento Community Edition License
|
8 |
+
* that is bundled with this package in the file LICENSE_EE.txt.
|
9 |
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://www.magentocommerce.com/license/community-edition
|
11 |
* If you did not receive a copy of the license and are unable to
|
12 |
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
*
|
22 |
+
* @category MageTracking
|
23 |
+
* @package MageTracking_TicketSystem
|
24 |
+
* @created Manmeet Kaur 25th Sep,2014
|
25 |
+
* @author Clarion magento team<Manmeet Kaur>
|
26 |
+
|
27 |
+
* @copyright Copyright (c) 2012 Magento Inc. (http://www.magentocommerce.com)
|
28 |
+
* @license http://www.magentocommerce.com/license/community-edition
|
29 |
*/
|
30 |
class MageTracking_TicketSystem_Block_Adminhtml_Cat_Edit_Tabs extends Mage_Adminhtml_Block_Widget_Tabs
|
31 |
{
|
app/code/community/MageTracking/TicketSystem/Block/Adminhtml/Cat/Grid.php
CHANGED
@@ -1,23 +1,31 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
-
*
|
4 |
*
|
5 |
* NOTICE OF LICENSE
|
6 |
*
|
7 |
-
* This source file is subject to the
|
8 |
-
* that is bundled with this package in the file
|
9 |
* It is also available through the world-wide-web at this URL:
|
10 |
-
* http://
|
11 |
* If you did not receive a copy of the license and are unable to
|
12 |
* obtain it through the world-wide-web, please send an email
|
13 |
-
* to license@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
14 |
*
|
15 |
-
* @category
|
16 |
-
* @
|
17 |
-
* @
|
18 |
-
* @
|
19 |
-
|
20 |
-
* @
|
|
|
21 |
*/
|
22 |
class MageTracking_TicketSystem_Block_Adminhtml_Cat_Grid extends Mage_Adminhtml_Block_Widget_Grid
|
23 |
{
|
1 |
<?php
|
2 |
/**
|
3 |
+
* Magento Community Edition
|
4 |
*
|
5 |
* NOTICE OF LICENSE
|
6 |
*
|
7 |
+
* This source file is subject to the Magento Community Edition License
|
8 |
+
* that is bundled with this package in the file LICENSE_EE.txt.
|
9 |
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://www.magentocommerce.com/license/community-edition
|
11 |
* If you did not receive a copy of the license and are unable to
|
12 |
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
*
|
22 |
+
* @category MageTracking
|
23 |
+
* @package MageTracking_TicketSystem
|
24 |
+
* @created Manmeet Kaur 25th Sep,2014
|
25 |
+
* @author Clarion magento team<Manmeet Kaur>
|
26 |
+
|
27 |
+
* @copyright Copyright (c) 2012 Magento Inc. (http://www.magentocommerce.com)
|
28 |
+
* @license http://www.magentocommerce.com/license/community-edition
|
29 |
*/
|
30 |
class MageTracking_TicketSystem_Block_Adminhtml_Cat_Grid extends Mage_Adminhtml_Block_Widget_Grid
|
31 |
{
|
app/code/community/MageTracking/TicketSystem/Block/Adminhtml/Ticketsystem.php
CHANGED
@@ -1,23 +1,31 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
-
*
|
4 |
*
|
5 |
* NOTICE OF LICENSE
|
6 |
*
|
7 |
-
* This source file is subject to the
|
8 |
-
* that is bundled with this package in the file
|
9 |
* It is also available through the world-wide-web at this URL:
|
10 |
-
* http://
|
11 |
* If you did not receive a copy of the license and are unable to
|
12 |
* obtain it through the world-wide-web, please send an email
|
13 |
-
* to license@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
14 |
*
|
15 |
-
* @category
|
16 |
-
* @
|
17 |
-
* @
|
18 |
-
* @
|
19 |
-
|
20 |
-
* @
|
|
|
21 |
*/
|
22 |
|
23 |
class MageTracking_TicketSystem_Block_Adminhtml_Ticketsystem extends Mage_Adminhtml_Block_Widget_Grid_Container
|
1 |
<?php
|
2 |
/**
|
3 |
+
* Magento Community Edition
|
4 |
*
|
5 |
* NOTICE OF LICENSE
|
6 |
*
|
7 |
+
* This source file is subject to the Magento Community Edition License
|
8 |
+
* that is bundled with this package in the file LICENSE_EE.txt.
|
9 |
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://www.magentocommerce.com/license/community-edition
|
11 |
* If you did not receive a copy of the license and are unable to
|
12 |
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
*
|
22 |
+
* @category MageTracking
|
23 |
+
* @package MageTracking_TicketSystem
|
24 |
+
* @created Manmeet Kaur 23rd Sep,2014
|
25 |
+
* @author Clarion magento team<Manmeet Kaur>
|
26 |
+
|
27 |
+
* @copyright Copyright (c) 2012 Magento Inc. (http://www.magentocommerce.com)
|
28 |
+
* @license http://www.magentocommerce.com/license/community-edition
|
29 |
*/
|
30 |
|
31 |
class MageTracking_TicketSystem_Block_Adminhtml_Ticketsystem extends Mage_Adminhtml_Block_Widget_Grid_Container
|
app/code/community/MageTracking/TicketSystem/Block/Adminhtml/Ticketsystem/Cat.php
CHANGED
@@ -1,23 +1,31 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
-
*
|
4 |
*
|
5 |
* NOTICE OF LICENSE
|
6 |
*
|
7 |
-
* This source file is subject to the
|
8 |
-
* that is bundled with this package in the file
|
9 |
* It is also available through the world-wide-web at this URL:
|
10 |
-
* http://
|
11 |
* If you did not receive a copy of the license and are unable to
|
12 |
* obtain it through the world-wide-web, please send an email
|
13 |
-
* to license@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
14 |
*
|
15 |
-
* @category
|
16 |
-
* @
|
17 |
-
* @
|
18 |
-
* @
|
19 |
-
|
20 |
-
* @
|
|
|
21 |
*/
|
22 |
|
23 |
class MageTracking_TicketSystem_Block_Adminhtml_Ticketsystem_Cat extends Mage_Adminhtml_Block_Widget_Form_Container
|
1 |
<?php
|
2 |
/**
|
3 |
+
* Magento Community Edition
|
4 |
*
|
5 |
* NOTICE OF LICENSE
|
6 |
*
|
7 |
+
* This source file is subject to the Magento Community Edition License
|
8 |
+
* that is bundled with this package in the file LICENSE_EE.txt.
|
9 |
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://www.magentocommerce.com/license/community-edition
|
11 |
* If you did not receive a copy of the license and are unable to
|
12 |
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
*
|
22 |
+
* @category MageTracking
|
23 |
+
* @package MageTracking_TicketSystem
|
24 |
+
* @created Manmeet Kaur 23rd Sep,2014
|
25 |
+
* @author Clarion magento team<Manmeet Kaur>
|
26 |
+
|
27 |
+
* @copyright Copyright (c) 2012 Magento Inc. (http://www.magentocommerce.com)
|
28 |
+
* @license http://www.magentocommerce.com/license/community-edition
|
29 |
*/
|
30 |
|
31 |
class MageTracking_TicketSystem_Block_Adminhtml_Ticketsystem_Cat extends Mage_Adminhtml_Block_Widget_Form_Container
|
app/code/community/MageTracking/TicketSystem/Block/Adminhtml/Ticketsystem/Edit.php
CHANGED
@@ -1,25 +1,32 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
-
*
|
4 |
*
|
5 |
* NOTICE OF LICENSE
|
6 |
*
|
7 |
-
* This source file is subject to the
|
8 |
-
* that is bundled with this package in the file
|
9 |
* It is also available through the world-wide-web at this URL:
|
10 |
-
* http://
|
11 |
* If you did not receive a copy of the license and are unable to
|
12 |
* obtain it through the world-wide-web, please send an email
|
13 |
-
* to license@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
14 |
*
|
15 |
-
* @category
|
16 |
-
* @
|
17 |
-
* @
|
18 |
-
* @
|
19 |
-
* @version 1.0
|
20 |
-
* @license http://opensource.org/licenses/gpl-3.0.html GNU GENERAL PUBLIC LICENSE (GNU 3.0)
|
21 |
-
*/
|
22 |
|
|
|
|
|
|
|
23 |
|
24 |
class MageTracking_TicketSystem_Block_Adminhtml_Ticketsystem_Edit extends Mage_Adminhtml_Block_Widget_Form_Container
|
25 |
{
|
1 |
<?php
|
2 |
/**
|
3 |
+
* Magento Community Edition
|
4 |
*
|
5 |
* NOTICE OF LICENSE
|
6 |
*
|
7 |
+
* This source file is subject to the Magento Community Edition License
|
8 |
+
* that is bundled with this package in the file LICENSE_EE.txt.
|
9 |
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://www.magentocommerce.com/license/community-edition
|
11 |
* If you did not receive a copy of the license and are unable to
|
12 |
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
*
|
22 |
+
* @category MageTracking
|
23 |
+
* @package MageTracking_TicketSystem
|
24 |
+
* @created Manmeet Kaur 23rd Sep,2014
|
25 |
+
* @author Clarion magento team<Manmeet Kaur>
|
|
|
|
|
|
|
26 |
|
27 |
+
* @copyright Copyright (c) 2012 Magento Inc. (http://www.magentocommerce.com)
|
28 |
+
* @license http://www.magentocommerce.com/license/community-edition
|
29 |
+
*/
|
30 |
|
31 |
class MageTracking_TicketSystem_Block_Adminhtml_Ticketsystem_Edit extends Mage_Adminhtml_Block_Widget_Form_Container
|
32 |
{
|
app/code/community/MageTracking/TicketSystem/Block/Adminhtml/Ticketsystem/Edit/Form.php
CHANGED
@@ -1,24 +1,33 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
-
*
|
4 |
*
|
5 |
* NOTICE OF LICENSE
|
6 |
*
|
7 |
-
* This source file is subject to the
|
8 |
-
* that is bundled with this package in the file
|
9 |
* It is also available through the world-wide-web at this URL:
|
10 |
-
* http://
|
11 |
* If you did not receive a copy of the license and are unable to
|
12 |
* obtain it through the world-wide-web, please send an email
|
13 |
-
* to license@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
14 |
*
|
15 |
-
* @category
|
16 |
-
* @
|
17 |
-
* @
|
18 |
-
* @
|
19 |
-
|
20 |
-
* @
|
|
|
21 |
*/
|
|
|
22 |
class MageTracking_TicketSystem_Block_Adminhtml_Ticketsystem_Edit_Form extends Mage_Adminhtml_Block_Widget_Form
|
23 |
{
|
24 |
protected function _prepareForm()
|
1 |
<?php
|
2 |
/**
|
3 |
+
* Magento Community Edition
|
4 |
*
|
5 |
* NOTICE OF LICENSE
|
6 |
*
|
7 |
+
* This source file is subject to the Magento Community Edition License
|
8 |
+
* that is bundled with this package in the file LICENSE_EE.txt.
|
9 |
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://www.magentocommerce.com/license/community-edition
|
11 |
* If you did not receive a copy of the license and are unable to
|
12 |
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
*
|
22 |
+
* @category MageTracking
|
23 |
+
* @package MageTracking_TicketSystem
|
24 |
+
* @created Manmeet Kaur 25th Sep,2014
|
25 |
+
* @author Clarion magento team<Manmeet Kaur>
|
26 |
+
|
27 |
+
* @copyright Copyright (c) 2012 Magento Inc. (http://www.magentocommerce.com)
|
28 |
+
* @license http://www.magentocommerce.com/license/community-edition
|
29 |
*/
|
30 |
+
|
31 |
class MageTracking_TicketSystem_Block_Adminhtml_Ticketsystem_Edit_Form extends Mage_Adminhtml_Block_Widget_Form
|
32 |
{
|
33 |
protected function _prepareForm()
|
app/code/community/MageTracking/TicketSystem/Block/Adminhtml/Ticketsystem/Edit/Newtabs.php
CHANGED
@@ -1,24 +1,33 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
-
*
|
4 |
*
|
5 |
* NOTICE OF LICENSE
|
6 |
*
|
7 |
-
* This source file is subject to the
|
8 |
-
* that is bundled with this package in the file
|
9 |
* It is also available through the world-wide-web at this URL:
|
10 |
-
* http://
|
11 |
* If you did not receive a copy of the license and are unable to
|
12 |
* obtain it through the world-wide-web, please send an email
|
13 |
-
* to license@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
14 |
*
|
15 |
-
* @category
|
16 |
-
* @
|
17 |
-
* @
|
18 |
-
* @
|
19 |
-
|
20 |
-
* @
|
|
|
21 |
*/
|
|
|
22 |
class MageTracking_TicketSystem_Block_Adminhtml_Ticketsystem_Edit_NewTabs extends Mage_Adminhtml_Block_Widget_Tabs
|
23 |
{
|
24 |
|
1 |
<?php
|
2 |
/**
|
3 |
+
* Magento Community Edition
|
4 |
*
|
5 |
* NOTICE OF LICENSE
|
6 |
*
|
7 |
+
* This source file is subject to the Magento Community Edition License
|
8 |
+
* that is bundled with this package in the file LICENSE_EE.txt.
|
9 |
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://www.magentocommerce.com/license/community-edition
|
11 |
* If you did not receive a copy of the license and are unable to
|
12 |
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
*
|
22 |
+
* @category MageTracking
|
23 |
+
* @package MageTracking_TicketSystem
|
24 |
+
* @created Manmeet Kaur 25th Sep,2014
|
25 |
+
* @author Clarion magento team<Manmeet Kaur>
|
26 |
+
|
27 |
+
* @copyright Copyright (c) 2012 Magento Inc. (http://www.magentocommerce.com)
|
28 |
+
* @license http://www.magentocommerce.com/license/community-edition
|
29 |
*/
|
30 |
+
|
31 |
class MageTracking_TicketSystem_Block_Adminhtml_Ticketsystem_Edit_NewTabs extends Mage_Adminhtml_Block_Widget_Tabs
|
32 |
{
|
33 |
|
app/code/community/MageTracking/TicketSystem/Block/Adminhtml/Ticketsystem/Edit/Tab/Form.php
CHANGED
@@ -1,23 +1,31 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
-
*
|
4 |
*
|
5 |
* NOTICE OF LICENSE
|
6 |
*
|
7 |
-
* This source file is subject to the
|
8 |
-
* that is bundled with this package in the file
|
9 |
* It is also available through the world-wide-web at this URL:
|
10 |
-
* http://
|
11 |
* If you did not receive a copy of the license and are unable to
|
12 |
* obtain it through the world-wide-web, please send an email
|
13 |
-
* to license@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
14 |
*
|
15 |
-
* @category
|
16 |
-
* @
|
17 |
-
* @
|
18 |
-
* @
|
19 |
-
|
20 |
-
* @
|
|
|
21 |
*/
|
22 |
class MageTracking_TicketSystem_Block_Adminhtml_Ticketsystem_Edit_Tab_Form extends Mage_Adminhtml_Block_Widget_Form
|
23 |
{
|
@@ -188,7 +196,7 @@ class MageTracking_TicketSystem_Block_Adminhtml_Ticketsystem_Edit_Tab_Form exten
|
|
188 |
|
189 |
public function getRepresantatives()
|
190 |
{
|
191 |
-
|
192 |
$model_reps= Mage::getModel('admin/user');
|
193 |
$return_array=array();
|
194 |
|
1 |
<?php
|
2 |
/**
|
3 |
+
* Magento Community Edition
|
4 |
*
|
5 |
* NOTICE OF LICENSE
|
6 |
*
|
7 |
+
* This source file is subject to the Magento Community Edition License
|
8 |
+
* that is bundled with this package in the file LICENSE_EE.txt.
|
9 |
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://www.magentocommerce.com/license/community-edition
|
11 |
* If you did not receive a copy of the license and are unable to
|
12 |
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
*
|
22 |
+
* @category MageTracking
|
23 |
+
* @package MageTracking_TicketSystem
|
24 |
+
* @created Manmeet Kaur 25th Sep,2014
|
25 |
+
* @author Clarion magento team<Manmeet Kaur>
|
26 |
+
|
27 |
+
* @copyright Copyright (c) 2012 Magento Inc. (http://www.magentocommerce.com)
|
28 |
+
* @license http://www.magentocommerce.com/license/community-edition
|
29 |
*/
|
30 |
class MageTracking_TicketSystem_Block_Adminhtml_Ticketsystem_Edit_Tab_Form extends Mage_Adminhtml_Block_Widget_Form
|
31 |
{
|
196 |
|
197 |
public function getRepresantatives()
|
198 |
{
|
199 |
+
|
200 |
$model_reps= Mage::getModel('admin/user');
|
201 |
$return_array=array();
|
202 |
|
app/code/community/MageTracking/TicketSystem/Block/Adminhtml/Ticketsystem/Edit/Tab/Newform.php
CHANGED
@@ -1,23 +1,31 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
-
*
|
4 |
*
|
5 |
* NOTICE OF LICENSE
|
6 |
*
|
7 |
-
* This source file is subject to the
|
8 |
-
* that is bundled with this package in the file
|
9 |
* It is also available through the world-wide-web at this URL:
|
10 |
-
* http://
|
11 |
* If you did not receive a copy of the license and are unable to
|
12 |
* obtain it through the world-wide-web, please send an email
|
13 |
-
* to license@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
14 |
*
|
15 |
-
* @category
|
16 |
-
* @
|
17 |
-
* @
|
18 |
-
* @
|
19 |
-
|
20 |
-
* @
|
|
|
21 |
*/
|
22 |
class MageTracking_TicketSystem_Block_Adminhtml_Ticketsystem_Edit_Tab_NewForm extends Mage_Adminhtml_Block_Widget_Form
|
23 |
{
|
1 |
<?php
|
2 |
/**
|
3 |
+
* Magento Community Edition
|
4 |
*
|
5 |
* NOTICE OF LICENSE
|
6 |
*
|
7 |
+
* This source file is subject to the Magento Community Edition License
|
8 |
+
* that is bundled with this package in the file LICENSE_EE.txt.
|
9 |
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://www.magentocommerce.com/license/community-edition
|
11 |
* If you did not receive a copy of the license and are unable to
|
12 |
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
*
|
22 |
+
* @category MageTracking
|
23 |
+
* @package MageTracking_TicketSystem
|
24 |
+
* @created Manmeet Kaur 25th Sep,2014
|
25 |
+
* @author Clarion magento team<Manmeet Kaur>
|
26 |
+
|
27 |
+
* @copyright Copyright (c) 2012 Magento Inc. (http://www.magentocommerce.com)
|
28 |
+
* @license http://www.magentocommerce.com/license/community-edition
|
29 |
*/
|
30 |
class MageTracking_TicketSystem_Block_Adminhtml_Ticketsystem_Edit_Tab_NewForm extends Mage_Adminhtml_Block_Widget_Form
|
31 |
{
|
app/code/community/MageTracking/TicketSystem/Block/Adminhtml/Ticketsystem/Edit/Tabs.php
CHANGED
@@ -1,24 +1,33 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
-
*
|
4 |
*
|
5 |
* NOTICE OF LICENSE
|
6 |
*
|
7 |
-
* This source file is subject to the
|
8 |
-
* that is bundled with this package in the file
|
9 |
* It is also available through the world-wide-web at this URL:
|
10 |
-
* http://
|
11 |
* If you did not receive a copy of the license and are unable to
|
12 |
* obtain it through the world-wide-web, please send an email
|
13 |
-
* to license@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
14 |
*
|
15 |
-
* @category
|
16 |
-
* @
|
17 |
-
* @
|
18 |
-
* @
|
19 |
-
|
20 |
-
* @
|
|
|
21 |
*/
|
|
|
22 |
class MageTracking_TicketSystem_Block_Adminhtml_Ticketsystem_Edit_Tabs extends Mage_Adminhtml_Block_Widget_Tabs
|
23 |
{
|
24 |
|
1 |
<?php
|
2 |
/**
|
3 |
+
* Magento Community Edition
|
4 |
*
|
5 |
* NOTICE OF LICENSE
|
6 |
*
|
7 |
+
* This source file is subject to the Magento Community Edition License
|
8 |
+
* that is bundled with this package in the file LICENSE_EE.txt.
|
9 |
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://www.magentocommerce.com/license/community-edition
|
11 |
* If you did not receive a copy of the license and are unable to
|
12 |
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
*
|
22 |
+
* @category MageTracking
|
23 |
+
* @package MageTracking_TicketSystem
|
24 |
+
* @created Manmeet Kaur 25th Sep,2014
|
25 |
+
* @author Clarion magento team<Manmeet Kaur>
|
26 |
+
|
27 |
+
* @copyright Copyright (c) 2012 Magento Inc. (http://www.magentocommerce.com)
|
28 |
+
* @license http://www.magentocommerce.com/license/community-edition
|
29 |
*/
|
30 |
+
|
31 |
class MageTracking_TicketSystem_Block_Adminhtml_Ticketsystem_Edit_Tabs extends Mage_Adminhtml_Block_Widget_Tabs
|
32 |
{
|
33 |
|
app/code/community/MageTracking/TicketSystem/Block/Adminhtml/Ticketsystem/Grid.php
CHANGED
@@ -1,25 +1,32 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
-
*
|
4 |
*
|
5 |
* NOTICE OF LICENSE
|
6 |
*
|
7 |
-
* This source file is subject to the
|
8 |
-
* that is bundled with this package in the file
|
9 |
* It is also available through the world-wide-web at this URL:
|
10 |
-
* http://
|
11 |
* If you did not receive a copy of the license and are unable to
|
12 |
* obtain it through the world-wide-web, please send an email
|
13 |
-
* to license@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
14 |
*
|
15 |
-
* @category
|
16 |
-
* @
|
17 |
-
* @
|
18 |
-
* @
|
19 |
-
* @version 0.5 beta
|
20 |
-
* @license http://opensource.org/licenses/gpl-3.0.html GNU GENERAL PUBLIC LICENSE (GNU 3.0)
|
21 |
-
*/
|
22 |
|
|
|
|
|
|
|
23 |
class MageTracking_TicketSystem_Block_Adminhtml_Ticketsystem_Grid extends Mage_Adminhtml_Block_Widget_Grid
|
24 |
{
|
25 |
public function __construct()
|
1 |
<?php
|
2 |
/**
|
3 |
+
* Magento Community Edition
|
4 |
*
|
5 |
* NOTICE OF LICENSE
|
6 |
*
|
7 |
+
* This source file is subject to the Magento Community Edition License
|
8 |
+
* that is bundled with this package in the file LICENSE_EE.txt.
|
9 |
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://www.magentocommerce.com/license/community-edition
|
11 |
* If you did not receive a copy of the license and are unable to
|
12 |
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
*
|
22 |
+
* @category MageTracking
|
23 |
+
* @package MageTracking_TicketSystem
|
24 |
+
* @created Manmeet Kaur 23rd Sep,2014
|
25 |
+
* @author Clarion magento team<Manmeet Kaur>
|
|
|
|
|
|
|
26 |
|
27 |
+
* @copyright Copyright (c) 2012 Magento Inc. (http://www.magentocommerce.com)
|
28 |
+
* @license http://www.magentocommerce.com/license/community-edition
|
29 |
+
*/
|
30 |
class MageTracking_TicketSystem_Block_Adminhtml_Ticketsystem_Grid extends Mage_Adminhtml_Block_Widget_Grid
|
31 |
{
|
32 |
public function __construct()
|
app/code/community/MageTracking/TicketSystem/Block/Adminhtml/Ticketsystem/Mail.php
CHANGED
@@ -1,25 +1,32 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
-
*
|
4 |
*
|
5 |
* NOTICE OF LICENSE
|
6 |
*
|
7 |
-
* This source file is subject to the
|
8 |
-
* that is bundled with this package in the file
|
9 |
* It is also available through the world-wide-web at this URL:
|
10 |
-
* http://
|
11 |
* If you did not receive a copy of the license and are unable to
|
12 |
* obtain it through the world-wide-web, please send an email
|
13 |
-
* to license@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
14 |
*
|
15 |
-
* @category
|
16 |
-
* @
|
17 |
-
* @
|
18 |
-
* @
|
19 |
-
* @version 0.5 beta
|
20 |
-
* @license http://opensource.org/licenses/gpl-3.0.html GNU GENERAL PUBLIC LICENSE (GNU 3.0)
|
21 |
-
*/
|
22 |
|
|
|
|
|
|
|
23 |
|
24 |
class MageTracking_TicketSystem_Block_Adminhtml_Ticketsystem_Mail extends Mage_Adminhtml_Block_Widget_Form_Container
|
25 |
{
|
1 |
<?php
|
2 |
/**
|
3 |
+
* Magento Community Edition
|
4 |
*
|
5 |
* NOTICE OF LICENSE
|
6 |
*
|
7 |
+
* This source file is subject to the Magento Community Edition License
|
8 |
+
* that is bundled with this package in the file LICENSE_EE.txt.
|
9 |
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://www.magentocommerce.com/license/community-edition
|
11 |
* If you did not receive a copy of the license and are unable to
|
12 |
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
*
|
22 |
+
* @category MageTracking
|
23 |
+
* @package MageTracking_TicketSystem
|
24 |
+
* @created Manmeet Kaur 23rd Sep,2014
|
25 |
+
* @author Clarion magento team<Manmeet Kaur>
|
|
|
|
|
|
|
26 |
|
27 |
+
* @copyright Copyright (c) 2012 Magento Inc. (http://www.magentocommerce.com)
|
28 |
+
* @license http://www.magentocommerce.com/license/community-edition
|
29 |
+
*/
|
30 |
|
31 |
class MageTracking_TicketSystem_Block_Adminhtml_Ticketsystem_Mail extends Mage_Adminhtml_Block_Widget_Form_Container
|
32 |
{
|
app/code/community/MageTracking/TicketSystem/Block/Adminhtml/Ticketsystem/Mail/Form.php
CHANGED
@@ -1,23 +1,31 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
-
*
|
4 |
*
|
5 |
* NOTICE OF LICENSE
|
6 |
*
|
7 |
-
* This source file is subject to the
|
8 |
-
* that is bundled with this package in the file
|
9 |
* It is also available through the world-wide-web at this URL:
|
10 |
-
* http://
|
11 |
* If you did not receive a copy of the license and are unable to
|
12 |
* obtain it through the world-wide-web, please send an email
|
13 |
-
* to license@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
14 |
*
|
15 |
-
* @category
|
16 |
-
* @
|
17 |
-
* @
|
18 |
-
* @
|
19 |
-
|
20 |
-
* @
|
|
|
21 |
*/
|
22 |
|
23 |
class MageTracking_TicketSystem_Block_Adminhtml_Ticketsystem_Mail_Form extends Mage_Adminhtml_Block_Widget_Form
|
1 |
<?php
|
2 |
/**
|
3 |
+
* Magento Community Edition
|
4 |
*
|
5 |
* NOTICE OF LICENSE
|
6 |
*
|
7 |
+
* This source file is subject to the Magento Community Edition License
|
8 |
+
* that is bundled with this package in the file LICENSE_EE.txt.
|
9 |
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://www.magentocommerce.com/license/community-edition
|
11 |
* If you did not receive a copy of the license and are unable to
|
12 |
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
*
|
22 |
+
* @category MageTracking
|
23 |
+
* @package MageTracking_TicketSystem
|
24 |
+
* @created Manmeet Kaur 24th Sep,2014
|
25 |
+
* @author Clarion magento team<Manmeet Kaur>
|
26 |
+
|
27 |
+
* @copyright Copyright (c) 2012 Magento Inc. (http://www.magentocommerce.com)
|
28 |
+
* @license http://www.magentocommerce.com/license/community-edition
|
29 |
*/
|
30 |
|
31 |
class MageTracking_TicketSystem_Block_Adminhtml_Ticketsystem_Mail_Form extends Mage_Adminhtml_Block_Widget_Form
|
app/code/community/MageTracking/TicketSystem/Block/Adminhtml/Ticketsystem/Mail/Tab/Form.php
CHANGED
@@ -1,23 +1,31 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
-
*
|
4 |
*
|
5 |
* NOTICE OF LICENSE
|
6 |
*
|
7 |
-
* This source file is subject to the
|
8 |
-
* that is bundled with this package in the file
|
9 |
* It is also available through the world-wide-web at this URL:
|
10 |
-
* http://
|
11 |
* If you did not receive a copy of the license and are unable to
|
12 |
* obtain it through the world-wide-web, please send an email
|
13 |
-
* to license@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
14 |
*
|
15 |
-
* @category
|
16 |
-
* @
|
17 |
-
* @
|
18 |
-
* @
|
19 |
-
|
20 |
-
* @
|
|
|
21 |
*/
|
22 |
|
23 |
class MageTracking_TicketSystem_Block_Adminhtml_Ticketsystem_Mail_Tab_Form extends Mage_Adminhtml_Block_Widget_Form
|
@@ -124,31 +132,7 @@ class MageTracking_TicketSystem_Block_Adminhtml_Ticketsystem_Mail_Tab_Form exten
|
|
124 |
'required' => true,
|
125 |
'name' => 'answer_msg',
|
126 |
));
|
127 |
-
|
128 |
-
$fieldset = $form->addFieldset('ticketsystem_transresponse', array('legend'=>Mage::helper('ticketsystem')->__('Representative Transfer Notification').' : '.Mage::helper('ticketsystem')->__('Message sent when a ticket has been transfered to a different representative.')));
|
129 |
-
$fieldset->addField('rep_trans_response', 'checkbox', array(
|
130 |
-
'label' => Mage::helper('ticketsystem')->__('Enable'),
|
131 |
-
'required' => false,
|
132 |
-
'name' => 'rep_trans_response',
|
133 |
-
'value' => 1,
|
134 |
-
'checked' => $data->getData('rep_trans_response')
|
135 |
-
));
|
136 |
-
|
137 |
-
$fieldset->addField('rep_trans_subj', 'text', array(
|
138 |
-
'label' => Mage::helper('ticketsystem')->__('Subject'),
|
139 |
-
'class' => 'required-entry',
|
140 |
-
'required' => true,
|
141 |
-
'name' => 'rep_trans_subj',
|
142 |
-
));
|
143 |
-
|
144 |
-
$fieldset->addField('rep_trans_msg', 'textarea', array(
|
145 |
-
'label' => Mage::helper('ticketsystem')->__('Message'),
|
146 |
-
'class' => 'required-entry',
|
147 |
-
'required' => true,
|
148 |
-
'name' => 'rep_trans_msg',
|
149 |
-
));*/
|
150 |
-
|
151 |
-
|
152 |
|
153 |
|
154 |
if ( Mage::getSingleton('adminhtml/session')->getTicketsystemMailData() )
|
1 |
<?php
|
2 |
/**
|
3 |
+
* Magento Community Edition
|
4 |
*
|
5 |
* NOTICE OF LICENSE
|
6 |
*
|
7 |
+
* This source file is subject to the Magento Community Edition License
|
8 |
+
* that is bundled with this package in the file LICENSE_EE.txt.
|
9 |
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://www.magentocommerce.com/license/community-edition
|
11 |
* If you did not receive a copy of the license and are unable to
|
12 |
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
*
|
22 |
+
* @category MageTracking
|
23 |
+
* @package MageTracking_TicketSystem
|
24 |
+
* @created Manmeet Kaur 24th Sep,2014
|
25 |
+
* @author Clarion magento team<Manmeet Kaur>
|
26 |
+
|
27 |
+
* @copyright Copyright (c) 2012 Magento Inc. (http://www.magentocommerce.com)
|
28 |
+
* @license http://www.magentocommerce.com/license/community-edition
|
29 |
*/
|
30 |
|
31 |
class MageTracking_TicketSystem_Block_Adminhtml_Ticketsystem_Mail_Tab_Form extends Mage_Adminhtml_Block_Widget_Form
|
132 |
'required' => true,
|
133 |
'name' => 'answer_msg',
|
134 |
));
|
135 |
+
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
136 |
|
137 |
|
138 |
if ( Mage::getSingleton('adminhtml/session')->getTicketsystemMailData() )
|
app/code/community/MageTracking/TicketSystem/Block/Adminhtml/Ticketsystem/Mail/Tabs.php
CHANGED
@@ -1,23 +1,31 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
-
*
|
4 |
*
|
5 |
* NOTICE OF LICENSE
|
6 |
*
|
7 |
-
* This source file is subject to the
|
8 |
-
* that is bundled with this package in the file
|
9 |
* It is also available through the world-wide-web at this URL:
|
10 |
-
* http://
|
11 |
* If you did not receive a copy of the license and are unable to
|
12 |
* obtain it through the world-wide-web, please send an email
|
13 |
-
* to license@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
14 |
*
|
15 |
-
* @category
|
16 |
-
* @
|
17 |
-
* @
|
18 |
-
* @
|
19 |
-
|
20 |
-
* @
|
|
|
21 |
*/
|
22 |
|
23 |
|
1 |
<?php
|
2 |
/**
|
3 |
+
* Magento Community Edition
|
4 |
*
|
5 |
* NOTICE OF LICENSE
|
6 |
*
|
7 |
+
* This source file is subject to the Magento Community Edition License
|
8 |
+
* that is bundled with this package in the file LICENSE_EE.txt.
|
9 |
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://www.magentocommerce.com/license/community-edition
|
11 |
* If you did not receive a copy of the license and are unable to
|
12 |
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
*
|
22 |
+
* @category MageTracking
|
23 |
+
* @package MageTracking_TicketSystem
|
24 |
+
* @created Manmeet Kaur 24th Sep,2014
|
25 |
+
* @author Clarion magento team<Manmeet Kaur>
|
26 |
+
|
27 |
+
* @copyright Copyright (c) 2012 Magento Inc. (http://www.magentocommerce.com)
|
28 |
+
* @license http://www.magentocommerce.com/license/community-edition
|
29 |
*/
|
30 |
|
31 |
|
app/code/community/MageTracking/TicketSystem/Block/Adminhtml/Ticketsystem/Setting.php
CHANGED
@@ -1,23 +1,31 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
-
*
|
4 |
*
|
5 |
* NOTICE OF LICENSE
|
6 |
*
|
7 |
-
* This source file is subject to the
|
8 |
-
* that is bundled with this package in the file
|
9 |
* It is also available through the world-wide-web at this URL:
|
10 |
-
* http://
|
11 |
* If you did not receive a copy of the license and are unable to
|
12 |
* obtain it through the world-wide-web, please send an email
|
13 |
-
* to license@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
14 |
*
|
15 |
-
* @category
|
16 |
-
* @
|
17 |
-
* @
|
18 |
-
* @
|
19 |
-
|
20 |
-
* @
|
|
|
21 |
*/
|
22 |
|
23 |
class MageTracking_TicketSystem_Block_Adminhtml_Ticketsystem_Setting extends Mage_Adminhtml_Block_Widget_Form_Container
|
1 |
<?php
|
2 |
/**
|
3 |
+
* Magento Community Edition
|
4 |
*
|
5 |
* NOTICE OF LICENSE
|
6 |
*
|
7 |
+
* This source file is subject to the Magento Community Edition License
|
8 |
+
* that is bundled with this package in the file LICENSE_EE.txt.
|
9 |
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://www.magentocommerce.com/license/community-edition
|
11 |
* If you did not receive a copy of the license and are unable to
|
12 |
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
*
|
22 |
+
* @category MageTracking
|
23 |
+
* @package MageTracking_TicketSystem
|
24 |
+
* @created Manmeet Kaur 23rd Sep,2014
|
25 |
+
* @author Clarion magento team<Manmeet Kaur>
|
26 |
+
|
27 |
+
* @copyright Copyright (c) 2012 Magento Inc. (http://www.magentocommerce.com)
|
28 |
+
* @license http://www.magentocommerce.com/license/community-edition
|
29 |
*/
|
30 |
|
31 |
class MageTracking_TicketSystem_Block_Adminhtml_Ticketsystem_Setting extends Mage_Adminhtml_Block_Widget_Form_Container
|
app/code/community/MageTracking/TicketSystem/Block/Adminhtml/Ticketsystem/Setting/Form.php
CHANGED
@@ -1,25 +1,32 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
-
*
|
4 |
*
|
5 |
* NOTICE OF LICENSE
|
6 |
*
|
7 |
-
* This source file is subject to the
|
8 |
-
* that is bundled with this package in the file
|
9 |
* It is also available through the world-wide-web at this URL:
|
10 |
-
* http://
|
11 |
* If you did not receive a copy of the license and are unable to
|
12 |
* obtain it through the world-wide-web, please send an email
|
13 |
-
* to license@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
14 |
*
|
15 |
-
* @category
|
16 |
-
* @
|
17 |
-
* @
|
18 |
-
* @
|
19 |
-
* @version 0.5 beta
|
20 |
-
* @license http://opensource.org/licenses/gpl-3.0.html GNU GENERAL PUBLIC LICENSE (GNU 3.0)
|
21 |
-
*/
|
22 |
|
|
|
|
|
|
|
23 |
|
24 |
class MageTracking_TicketSystem_Block_Adminhtml_Ticketsystem_Setting_Form extends Mage_Adminhtml_Block_Widget_Form
|
25 |
{
|
1 |
<?php
|
2 |
/**
|
3 |
+
* Magento Community Edition
|
4 |
*
|
5 |
* NOTICE OF LICENSE
|
6 |
*
|
7 |
+
* This source file is subject to the Magento Community Edition License
|
8 |
+
* that is bundled with this package in the file LICENSE_EE.txt.
|
9 |
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://www.magentocommerce.com/license/community-edition
|
11 |
* If you did not receive a copy of the license and are unable to
|
12 |
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
*
|
22 |
+
* @category MageTracking
|
23 |
+
* @package MageTracking_TicketSystem
|
24 |
+
* @created Manmeet Kaur 24th Sep,2014
|
25 |
+
* @author Clarion magento team<Manmeet Kaur>
|
|
|
|
|
|
|
26 |
|
27 |
+
* @copyright Copyright (c) 2012 Magento Inc. (http://www.magentocommerce.com)
|
28 |
+
* @license http://www.magentocommerce.com/license/community-edition
|
29 |
+
*/
|
30 |
|
31 |
class MageTracking_TicketSystem_Block_Adminhtml_Ticketsystem_Setting_Form extends Mage_Adminhtml_Block_Widget_Form
|
32 |
{
|
app/code/community/MageTracking/TicketSystem/Block/Adminhtml/Ticketsystem/Setting/Tab/Form.php
CHANGED
@@ -1,23 +1,31 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
-
*
|
4 |
*
|
5 |
* NOTICE OF LICENSE
|
6 |
*
|
7 |
-
* This source file is subject to the
|
8 |
-
* that is bundled with this package in the file
|
9 |
* It is also available through the world-wide-web at this URL:
|
10 |
-
* http://
|
11 |
* If you did not receive a copy of the license and are unable to
|
12 |
* obtain it through the world-wide-web, please send an email
|
13 |
-
* to license@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
14 |
*
|
15 |
-
* @category
|
16 |
-
* @
|
17 |
-
* @
|
18 |
-
* @
|
19 |
-
|
20 |
-
* @
|
|
|
21 |
*/
|
22 |
|
23 |
class MageTracking_TicketSystem_Block_Adminhtml_Ticketsystem_Setting_Tab_Form extends Mage_Adminhtml_Block_Widget_Form
|
1 |
<?php
|
2 |
/**
|
3 |
+
* Magento Community Edition
|
4 |
*
|
5 |
* NOTICE OF LICENSE
|
6 |
*
|
7 |
+
* This source file is subject to the Magento Community Edition License
|
8 |
+
* that is bundled with this package in the file LICENSE_EE.txt.
|
9 |
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://www.magentocommerce.com/license/community-edition
|
11 |
* If you did not receive a copy of the license and are unable to
|
12 |
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
*
|
22 |
+
* @category MageTracking
|
23 |
+
* @package MageTracking_TicketSystem
|
24 |
+
* @created Manmeet Kaur 24th Sep,2014
|
25 |
+
* @author Clarion magento team<Manmeet Kaur>
|
26 |
+
|
27 |
+
* @copyright Copyright (c) 2012 Magento Inc. (http://www.magentocommerce.com)
|
28 |
+
* @license http://www.magentocommerce.com/license/community-edition
|
29 |
*/
|
30 |
|
31 |
class MageTracking_TicketSystem_Block_Adminhtml_Ticketsystem_Setting_Tab_Form extends Mage_Adminhtml_Block_Widget_Form
|
app/code/community/MageTracking/TicketSystem/Block/Adminhtml/Ticketsystem/Setting/Tabs.php
CHANGED
@@ -1,25 +1,32 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
-
*
|
4 |
*
|
5 |
* NOTICE OF LICENSE
|
6 |
*
|
7 |
-
* This source file is subject to the
|
8 |
-
* that is bundled with this package in the file
|
9 |
* It is also available through the world-wide-web at this URL:
|
10 |
-
* http://
|
11 |
* If you did not receive a copy of the license and are unable to
|
12 |
* obtain it through the world-wide-web, please send an email
|
13 |
-
* to license@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
14 |
*
|
15 |
-
* @category
|
16 |
-
* @
|
17 |
-
* @
|
18 |
-
* @
|
19 |
-
* @version 0.5 beta
|
20 |
-
* @license http://opensource.org/licenses/gpl-3.0.html GNU GENERAL PUBLIC LICENSE (GNU 3.0)
|
21 |
-
*/
|
22 |
|
|
|
|
|
|
|
23 |
|
24 |
class MageTracking_TicketSystem_Block_Adminhtml_Ticketsystem_Setting_Tabs extends Mage_Adminhtml_Block_Widget_Tabs
|
25 |
{
|
1 |
<?php
|
2 |
/**
|
3 |
+
* Magento Community Edition
|
4 |
*
|
5 |
* NOTICE OF LICENSE
|
6 |
*
|
7 |
+
* This source file is subject to the Magento Community Edition License
|
8 |
+
* that is bundled with this package in the file LICENSE_EE.txt.
|
9 |
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://www.magentocommerce.com/license/community-edition
|
11 |
* If you did not receive a copy of the license and are unable to
|
12 |
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
*
|
22 |
+
* @category MageTracking
|
23 |
+
* @package MageTracking_TicketSystem
|
24 |
+
* @created Manmeet Kaur 24th Sep,2014
|
25 |
+
* @author Clarion magento team<Manmeet Kaur>
|
|
|
|
|
|
|
26 |
|
27 |
+
* @copyright Copyright (c) 2012 Magento Inc. (http://www.magentocommerce.com)
|
28 |
+
* @license http://www.magentocommerce.com/license/community-edition
|
29 |
+
*/
|
30 |
|
31 |
class MageTracking_TicketSystem_Block_Adminhtml_Ticketsystem_Setting_Tabs extends Mage_Adminhtml_Block_Widget_Tabs
|
32 |
{
|
app/code/community/MageTracking/TicketSystem/Block/Cat.php
CHANGED
@@ -1,25 +1,32 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
-
*
|
4 |
*
|
5 |
* NOTICE OF LICENSE
|
6 |
*
|
7 |
-
* This source file is subject to the
|
8 |
-
* that is bundled with this package in the file
|
9 |
* It is also available through the world-wide-web at this URL:
|
10 |
-
* http://
|
11 |
* If you did not receive a copy of the license and are unable to
|
12 |
* obtain it through the world-wide-web, please send an email
|
13 |
-
* to license@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
14 |
*
|
15 |
-
* @category
|
16 |
-
* @
|
17 |
-
* @
|
18 |
-
* @
|
19 |
-
* @version 0.5 beta
|
20 |
-
* @license http://opensource.org/licenses/gpl-3.0.html GNU GENERAL PUBLIC LICENSE (GNU 3.0)
|
21 |
-
*/
|
22 |
|
|
|
|
|
|
|
23 |
|
24 |
class MageTracking_TicketSystem_Block_Cat extends Mage_Core_Block_Template
|
25 |
{
|
1 |
<?php
|
2 |
/**
|
3 |
+
* Magento Community Edition
|
4 |
*
|
5 |
* NOTICE OF LICENSE
|
6 |
*
|
7 |
+
* This source file is subject to the Magento Community Edition License
|
8 |
+
* that is bundled with this package in the file LICENSE_EE.txt.
|
9 |
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://www.magentocommerce.com/license/community-edition
|
11 |
* If you did not receive a copy of the license and are unable to
|
12 |
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
*
|
22 |
+
* @category MageTracking
|
23 |
+
* @package MageTracking_TicketSystem
|
24 |
+
* @created Manmeet Kaur 22nd Sep,2014
|
25 |
+
* @author Clarion magento team<Manmeet Kaur>
|
|
|
|
|
|
|
26 |
|
27 |
+
* @copyright Copyright (c) 2012 Magento Inc. (http://www.magentocommerce.com)
|
28 |
+
* @license http://www.magentocommerce.com/license/community-edition
|
29 |
+
*/
|
30 |
|
31 |
class MageTracking_TicketSystem_Block_Cat extends Mage_Core_Block_Template
|
32 |
{
|
app/code/community/MageTracking/TicketSystem/Block/Ticketsystem.php
CHANGED
@@ -1,25 +1,32 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
-
*
|
4 |
*
|
5 |
* NOTICE OF LICENSE
|
6 |
*
|
7 |
-
* This source file is subject to the
|
8 |
-
* that is bundled with this package in the file
|
9 |
* It is also available through the world-wide-web at this URL:
|
10 |
-
* http://
|
11 |
* If you did not receive a copy of the license and are unable to
|
12 |
* obtain it through the world-wide-web, please send an email
|
13 |
-
* to license@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
14 |
*
|
15 |
-
* @category
|
16 |
-
* @
|
17 |
-
* @
|
18 |
-
* @
|
19 |
-
* @version 0.5 beta
|
20 |
-
* @license http://opensource.org/licenses/gpl-3.0.html GNU GENERAL PUBLIC LICENSE (GNU 3.0)
|
21 |
-
*/
|
22 |
|
|
|
|
|
|
|
23 |
|
24 |
class MageTracking_TicketSystem_Block_Ticketsystem extends Mage_Core_Block_Template
|
25 |
{
|
1 |
<?php
|
2 |
/**
|
3 |
+
* Magento Community Edition
|
4 |
*
|
5 |
* NOTICE OF LICENSE
|
6 |
*
|
7 |
+
* This source file is subject to the Magento Community Edition License
|
8 |
+
* that is bundled with this package in the file LICENSE_EE.txt.
|
9 |
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://www.magentocommerce.com/license/community-edition
|
11 |
* If you did not receive a copy of the license and are unable to
|
12 |
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
*
|
22 |
+
* @category MageTracking
|
23 |
+
* @package MageTracking_TicketSystem
|
24 |
+
* @created Manmeet Kaur 22nd Sep,2014
|
25 |
+
* @author Clarion magento team<Manmeet Kaur>
|
|
|
|
|
|
|
26 |
|
27 |
+
* @copyright Copyright (c) 2012 Magento Inc. (http://www.magentocommerce.com)
|
28 |
+
* @license http://www.magentocommerce.com/license/community-edition
|
29 |
+
*/
|
30 |
|
31 |
class MageTracking_TicketSystem_Block_Ticketsystem extends Mage_Core_Block_Template
|
32 |
{
|
app/code/community/MageTracking/TicketSystem/Block/Ticketsystem/Edit.php
CHANGED
@@ -1,25 +1,32 @@
|
|
1 |
<?php
|
2 |
-
/**
|
3 |
-
*
|
4 |
-
*
|
5 |
-
* NOTICE OF LICENSE
|
6 |
-
*
|
7 |
-
* This source file is subject to the
|
8 |
-
* that is bundled with this package in the file
|
9 |
-
* It is also available through the world-wide-web at this URL:
|
10 |
-
* http://
|
11 |
-
* If you did not receive a copy of the license and are unable to
|
12 |
-
* obtain it through the world-wide-web, please send an email
|
13 |
-
* to license@
|
14 |
-
*
|
15 |
-
*
|
16 |
-
*
|
17 |
-
*
|
18 |
-
*
|
19 |
-
*
|
20 |
-
*
|
21 |
-
|
|
|
|
|
|
|
|
|
22 |
|
|
|
|
|
|
|
23 |
|
24 |
class MageTracking_TicketSystem_Block_Ticketsystem_Edit extends Mage_Core_Block_Template
|
25 |
{
|
@@ -69,12 +76,12 @@ class MageTracking_TicketSystem_Block_Ticketsystem_Edit extends Mage_Core_Block_
|
|
69 |
|
70 |
public function getMessage($ticketId){
|
71 |
|
72 |
-
|
73 |
$answers='';
|
74 |
$model_ans = Mage::getModel('ticketsystem/answers');
|
75 |
foreach ($model_ans->getCollection()->addFieldToFilter('ticket',$ticketId)->load() as $item){
|
76 |
$message=$item->getData('message');
|
77 |
-
|
78 |
$timestamp=$item->getData('timestamp');
|
79 |
$represantative='';
|
80 |
$answers .='('.$timestamp.') '.$message."<br>";
|
1 |
<?php
|
2 |
+
/**
|
3 |
+
* Magento Community Edition
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Magento Community Edition License
|
8 |
+
* that is bundled with this package in the file LICENSE_EE.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://www.magentocommerce.com/license/community-edition
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
*
|
22 |
+
* @category MageTracking
|
23 |
+
* @package MageTracking_TicketSystem
|
24 |
+
* @created Manmeet Kaur 22nd Sep,2014
|
25 |
+
* @author Clarion magento team<Manmeet Kaur>
|
26 |
|
27 |
+
* @copyright Copyright (c) 2012 Magento Inc. (http://www.magentocommerce.com)
|
28 |
+
* @license http://www.magentocommerce.com/license/community-edition
|
29 |
+
*/
|
30 |
|
31 |
class MageTracking_TicketSystem_Block_Ticketsystem_Edit extends Mage_Core_Block_Template
|
32 |
{
|
76 |
|
77 |
public function getMessage($ticketId){
|
78 |
|
79 |
+
|
80 |
$answers='';
|
81 |
$model_ans = Mage::getModel('ticketsystem/answers');
|
82 |
foreach ($model_ans->getCollection()->addFieldToFilter('ticket',$ticketId)->load() as $item){
|
83 |
$message=$item->getData('message');
|
84 |
+
|
85 |
$timestamp=$item->getData('timestamp');
|
86 |
$represantative='';
|
87 |
$answers .='('.$timestamp.') '.$message."<br>";
|
app/code/community/MageTracking/TicketSystem/Block/Ticketsystem/Navigation.php
CHANGED
@@ -1,5 +1,32 @@
|
|
1 |
<?php
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
|
|
|
|
|
|
|
3 |
|
4 |
|
5 |
class MageTracking_TicketSystem_Block_Ticketsystem_Navigation extends Mage_Customer_Block_Account_Navigation
|
1 |
<?php
|
2 |
+
/**
|
3 |
+
* Magento Community Edition
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Magento Community Edition License
|
8 |
+
* that is bundled with this package in the file LICENSE_EE.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://www.magentocommerce.com/license/community-edition
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
*
|
22 |
+
* @category MageTracking
|
23 |
+
* @package MageTracking_TicketSystem
|
24 |
+
* @created Manmeet Kaur 22nd Sep,2014
|
25 |
+
* @author Clarion magento team<Manmeet Kaur>
|
26 |
|
27 |
+
* @copyright Copyright (c) 2012 Magento Inc. (http://www.magentocommerce.com)
|
28 |
+
* @license http://www.magentocommerce.com/license/community-edition
|
29 |
+
*/
|
30 |
|
31 |
|
32 |
class MageTracking_TicketSystem_Block_Ticketsystem_Navigation extends Mage_Customer_Block_Account_Navigation
|
app/code/community/MageTracking/TicketSystem/Block/Ticketsystem/View.php
CHANGED
@@ -1,23 +1,31 @@
|
|
1 |
<?php
|
2 |
-
/**
|
3 |
-
*
|
4 |
-
*
|
5 |
-
* NOTICE OF LICENSE
|
6 |
-
*
|
7 |
-
* This source file is subject to the
|
8 |
-
* that is bundled with this package in the file
|
9 |
-
* It is also available through the world-wide-web at this URL:
|
10 |
-
* http://
|
11 |
-
* If you did not receive a copy of the license and are unable to
|
12 |
-
* obtain it through the world-wide-web, please send an email
|
13 |
-
* to license@
|
14 |
-
*
|
15 |
-
*
|
16 |
-
*
|
17 |
-
*
|
18 |
-
*
|
19 |
-
*
|
20 |
-
*
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
21 |
*/
|
22 |
|
23 |
|
1 |
<?php
|
2 |
+
/**
|
3 |
+
* Magento Community Edition
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Magento Community Edition License
|
8 |
+
* that is bundled with this package in the file LICENSE_EE.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://www.magentocommerce.com/license/community-edition
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
*
|
22 |
+
* @category MageTracking
|
23 |
+
* @package MageTracking_TicketSystem
|
24 |
+
* @created Manmeet Kaur 22nd Sep,2014
|
25 |
+
* @author Clarion magento team<Manmeet Kaur>
|
26 |
+
|
27 |
+
* @copyright Copyright (c) 2012 Magento Inc. (http://www.magentocommerce.com)
|
28 |
+
* @license http://www.magentocommerce.com/license/community-edition
|
29 |
*/
|
30 |
|
31 |
|
app/code/community/MageTracking/TicketSystem/Helper/Data.php
CHANGED
@@ -1,24 +1,31 @@
|
|
1 |
<?php
|
2 |
-
|
3 |
/**
|
4 |
-
*
|
5 |
*
|
6 |
* NOTICE OF LICENSE
|
7 |
*
|
8 |
-
* This source file is subject to the
|
9 |
-
* that is bundled with this package in the file
|
10 |
* It is also available through the world-wide-web at this URL:
|
11 |
-
* http://
|
12 |
* If you did not receive a copy of the license and are unable to
|
13 |
* obtain it through the world-wide-web, please send an email
|
14 |
-
* to license@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
15 |
*
|
16 |
-
* @category
|
17 |
-
* @
|
18 |
-
* @
|
19 |
-
* @
|
20 |
-
|
21 |
-
* @
|
|
|
22 |
*/
|
23 |
|
24 |
|
1 |
<?php
|
|
|
2 |
/**
|
3 |
+
* Magento Community Edition
|
4 |
*
|
5 |
* NOTICE OF LICENSE
|
6 |
*
|
7 |
+
* This source file is subject to the Magento Community Edition License
|
8 |
+
* that is bundled with this package in the file LICENSE_EE.txt.
|
9 |
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://www.magentocommerce.com/license/community-edition
|
11 |
* If you did not receive a copy of the license and are unable to
|
12 |
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
*
|
22 |
+
* @category MageTracking
|
23 |
+
* @package MageTracking_TicketSystem
|
24 |
+
* @created Manmeet Kaur 25th Sep,2014
|
25 |
+
* @author Clarion magento team<Manmeet Kaur>
|
26 |
+
|
27 |
+
* @copyright Copyright (c) 2012 Magento Inc. (http://www.magentocommerce.com)
|
28 |
+
* @license http://www.magentocommerce.com/license/community-edition
|
29 |
*/
|
30 |
|
31 |
|
app/code/community/MageTracking/TicketSystem/Helper/Mail.php
CHANGED
@@ -1,24 +1,31 @@
|
|
1 |
<?php
|
2 |
-
|
3 |
/**
|
4 |
-
*
|
5 |
*
|
6 |
* NOTICE OF LICENSE
|
7 |
*
|
8 |
-
* This source file is subject to the
|
9 |
-
* that is bundled with this package in the file
|
10 |
* It is also available through the world-wide-web at this URL:
|
11 |
-
* http://
|
12 |
* If you did not receive a copy of the license and are unable to
|
13 |
* obtain it through the world-wide-web, please send an email
|
14 |
-
* to license@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
15 |
*
|
16 |
-
* @category
|
17 |
-
* @
|
18 |
-
* @
|
19 |
-
* @
|
20 |
-
|
21 |
-
* @
|
|
|
22 |
*/
|
23 |
|
24 |
|
@@ -90,9 +97,7 @@ class Mail{
|
|
90 |
$alert_subj = $db_settings['alert_subj'];
|
91 |
$repl_meth = $cat->getData('reply_method');
|
92 |
$alert_msg = $db_settings['alert_msg'];
|
93 |
-
|
94 |
-
$alert_msg.= '<br>Client Request:' . $m->getData('message');
|
95 |
-
}*/
|
96 |
$vars = array();
|
97 |
$vars['ticket'] = $t->getData('ID');
|
98 |
$vars['subject'] = $subject ? $subject : htmlspecialchars_decode($t->getData('subject'));
|
1 |
<?php
|
|
|
2 |
/**
|
3 |
+
* Magento Community Edition
|
4 |
*
|
5 |
* NOTICE OF LICENSE
|
6 |
*
|
7 |
+
* This source file is subject to the Magento Community Edition License
|
8 |
+
* that is bundled with this package in the file LICENSE_EE.txt.
|
9 |
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://www.magentocommerce.com/license/community-edition
|
11 |
* If you did not receive a copy of the license and are unable to
|
12 |
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
*
|
22 |
+
* @category MageTracking
|
23 |
+
* @package MageTracking_TicketSystem
|
24 |
+
* @created Manmeet Kaur 25th Sep,2014
|
25 |
+
* @author Clarion magento team<Manmeet Kaur>
|
26 |
+
|
27 |
+
* @copyright Copyright (c) 2012 Magento Inc. (http://www.magentocommerce.com)
|
28 |
+
* @license http://www.magentocommerce.com/license/community-edition
|
29 |
*/
|
30 |
|
31 |
|
97 |
$alert_subj = $db_settings['alert_subj'];
|
98 |
$repl_meth = $cat->getData('reply_method');
|
99 |
$alert_msg = $db_settings['alert_msg'];
|
100 |
+
|
|
|
|
|
101 |
$vars = array();
|
102 |
$vars['ticket'] = $t->getData('ID');
|
103 |
$vars['subject'] = $subject ? $subject : htmlspecialchars_decode($t->getData('subject'));
|
app/code/community/MageTracking/TicketSystem/Helper/Mail_data.php
CHANGED
@@ -1,24 +1,31 @@
|
|
1 |
<?php
|
2 |
-
|
3 |
/**
|
4 |
-
*
|
5 |
*
|
6 |
* NOTICE OF LICENSE
|
7 |
*
|
8 |
-
* This source file is subject to the
|
9 |
-
* that is bundled with this package in the file
|
10 |
* It is also available through the world-wide-web at this URL:
|
11 |
-
* http://
|
12 |
* If you did not receive a copy of the license and are unable to
|
13 |
* obtain it through the world-wide-web, please send an email
|
14 |
-
* to license@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
15 |
*
|
16 |
-
* @category
|
17 |
-
* @
|
18 |
-
* @
|
19 |
-
* @
|
20 |
-
|
21 |
-
* @
|
|
|
22 |
*/
|
23 |
|
24 |
|
@@ -29,7 +36,7 @@ class Mail_data{
|
|
29 |
|
30 |
public function sendEmail($id, $subject, $name, $email, $cat, $pri, $message = '', $mailsubject, $mailmsg , $signature, $answer = false){
|
31 |
|
32 |
-
$db_settings=Mage::helper('ticketsystem')->getMailDBSettings()
|
33 |
$vars = array();
|
34 |
$vars['ticket'] = $id;
|
35 |
$vars['subject'] = $subject;
|
@@ -90,9 +97,7 @@ class Mail_data{
|
|
90 |
$alert_subj = $db_settings['alert_subj'];
|
91 |
$repl_meth = $cat->getData('reply_method');
|
92 |
$alert_msg = $db_settings['alert_msg'];
|
93 |
-
|
94 |
-
$alert_msg.= '<br>Client Request:' . $m->getData('message');
|
95 |
-
}*/
|
96 |
$vars = array();
|
97 |
$vars['ticket'] = $t->getData('ID');
|
98 |
$vars['subject'] = $subject ? $subject : htmlspecialchars_decode($t->getData('subject'));
|
1 |
<?php
|
|
|
2 |
/**
|
3 |
+
* Magento Community Edition
|
4 |
*
|
5 |
* NOTICE OF LICENSE
|
6 |
*
|
7 |
+
* This source file is subject to the Magento Community Edition License
|
8 |
+
* that is bundled with this package in the file LICENSE_EE.txt.
|
9 |
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://www.magentocommerce.com/license/community-edition
|
11 |
* If you did not receive a copy of the license and are unable to
|
12 |
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
*
|
22 |
+
* @category MageTracking
|
23 |
+
* @package MageTracking_TicketSystem
|
24 |
+
* @created Manmeet Kaur 25th Sep,2014
|
25 |
+
* @author Clarion magento team<Manmeet Kaur>
|
26 |
+
|
27 |
+
* @copyright Copyright (c) 2012 Magento Inc. (http://www.magentocommerce.com)
|
28 |
+
* @license http://www.magentocommerce.com/license/community-edition
|
29 |
*/
|
30 |
|
31 |
|
36 |
|
37 |
public function sendEmail($id, $subject, $name, $email, $cat, $pri, $message = '', $mailsubject, $mailmsg , $signature, $answer = false){
|
38 |
|
39 |
+
$db_settings=Mage::helper('ticketsystem')->getMailDBSettings();
|
40 |
$vars = array();
|
41 |
$vars['ticket'] = $id;
|
42 |
$vars['subject'] = $subject;
|
97 |
$alert_subj = $db_settings['alert_subj'];
|
98 |
$repl_meth = $cat->getData('reply_method');
|
99 |
$alert_msg = $db_settings['alert_msg'];
|
100 |
+
|
|
|
|
|
101 |
$vars = array();
|
102 |
$vars['ticket'] = $t->getData('ID');
|
103 |
$vars['subject'] = $subject ? $subject : htmlspecialchars_decode($t->getData('subject'));
|
app/code/community/MageTracking/TicketSystem/Helper/Phpmailer.php
CHANGED
@@ -1,35 +1,31 @@
|
|
1 |
<?php
|
2 |
-
/*~ class.phpmailer.php
|
3 |
-
.---------------------------------------------------------------------------.
|
4 |
-
| Software: PHPMailer - PHP email class |
|
5 |
-
| Version: 2.2.1 |
|
6 |
-
| Contact: via sourceforge.net support pages (also www.codeworxtech.com) |
|
7 |
-
| Info: http://phpmailer.sourceforge.net |
|
8 |
-
| Support: http://sourceforge.net/projects/phpmailer/ |
|
9 |
-
| ------------------------------------------------------------------------- |
|
10 |
-
| Author: Andy Prevost (project admininistrator) |
|
11 |
-
| Author: Brent R. Matzelle (original founder) |
|
12 |
-
| Copyright (c) 2004-2007, Andy Prevost. All Rights Reserved. |
|
13 |
-
| Copyright (c) 2001-2003, Brent R. Matzelle |
|
14 |
-
| ------------------------------------------------------------------------- |
|
15 |
-
| License: Distributed under the Lesser General Public License (LGPL) |
|
16 |
-
| http://www.gnu.org/copyleft/lesser.html |
|
17 |
-
| This program is distributed in the hope that it will be useful - WITHOUT |
|
18 |
-
| ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
19 |
-
| FITNESS FOR A PARTICULAR PURPOSE. |
|
20 |
-
| ------------------------------------------------------------------------- |
|
21 |
-
| We offer a number of paid services (www.codeworxtech.com): |
|
22 |
-
| - Web Hosting on highly optimized fast and secure servers |
|
23 |
-
| - Technology Consulting |
|
24 |
-
| - Oursourcing (highly qualified programmers and graphic designers) |
|
25 |
-
'---------------------------------------------------------------------------'
|
26 |
-
|
27 |
/**
|
28 |
-
*
|
29 |
-
*
|
30 |
-
*
|
31 |
-
*
|
32 |
-
*
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
33 |
*/
|
34 |
|
35 |
class PHPMailer {
|
@@ -283,7 +279,7 @@ class PHPMailer {
|
|
283 |
* Sets Mailer to send message using SMTP.
|
284 |
* @return void
|
285 |
*/
|
286 |
-
public function IsSMTP() {
|
287 |
$this->Mailer = 'smtp';
|
288 |
}
|
289 |
|
@@ -291,7 +287,7 @@ class PHPMailer {
|
|
291 |
* Sets Mailer to send message using PHP mail() function.
|
292 |
* @return void
|
293 |
*/
|
294 |
-
public function IsMail() {
|
295 |
$this->Mailer = 'mail';
|
296 |
}
|
297 |
|
@@ -299,7 +295,7 @@ class PHPMailer {
|
|
299 |
* Sets Mailer to send message using the $Sendmail program.
|
300 |
* @return void
|
301 |
*/
|
302 |
-
public function IsSendmail() {
|
303 |
$this->Mailer = 'sendmail';
|
304 |
}
|
305 |
|
@@ -307,7 +303,7 @@ class PHPMailer {
|
|
307 |
* Sets Mailer to send message using the qmail MTA.
|
308 |
* @return void
|
309 |
*/
|
310 |
-
public function IsQmail() {
|
311 |
$this->Sendmail = '/var/qmail/bin/sendmail';
|
312 |
$this->Mailer = 'sendmail';
|
313 |
}
|
@@ -511,7 +507,7 @@ class PHPMailer {
|
|
511 |
* @access public
|
512 |
* @return bool
|
513 |
*/
|
514 |
-
public function SmtpSend($header, $body) {
|
515 |
include_once($this->PluginDir . 'Smtp.php');
|
516 |
$error = '';
|
517 |
$bad_rcpt = array();
|
@@ -578,7 +574,7 @@ class PHPMailer {
|
|
578 |
* @access public
|
579 |
* @return bool
|
580 |
*/
|
581 |
-
public function SmtpConnect() {
|
582 |
if($this->smtp == NULL) {
|
583 |
$this->smtp = new SMTP();
|
584 |
}
|
1 |
<?php
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
/**
|
3 |
+
* Magento Community Edition
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Magento Community Edition License
|
8 |
+
* that is bundled with this package in the file LICENSE_EE.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://www.magentocommerce.com/license/community-edition
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
*
|
22 |
+
* @category MageTracking
|
23 |
+
* @package MageTracking_TicketSystem
|
24 |
+
* @created Manmeet Kaur 29th Sep,2014
|
25 |
+
* @author Clarion magento team<Manmeet Kaur>
|
26 |
+
|
27 |
+
* @copyright Copyright (c) 2012 Magento Inc. (http://www.magentocommerce.com)
|
28 |
+
* @license http://www.magentocommerce.com/license/community-edition
|
29 |
*/
|
30 |
|
31 |
class PHPMailer {
|
279 |
* Sets Mailer to send message using SMTP.
|
280 |
* @return void
|
281 |
*/
|
282 |
+
public function IsSMTP() {
|
283 |
$this->Mailer = 'smtp';
|
284 |
}
|
285 |
|
287 |
* Sets Mailer to send message using PHP mail() function.
|
288 |
* @return void
|
289 |
*/
|
290 |
+
public function IsMail() {
|
291 |
$this->Mailer = 'mail';
|
292 |
}
|
293 |
|
295 |
* Sets Mailer to send message using the $Sendmail program.
|
296 |
* @return void
|
297 |
*/
|
298 |
+
public function IsSendmail() {
|
299 |
$this->Mailer = 'sendmail';
|
300 |
}
|
301 |
|
303 |
* Sets Mailer to send message using the qmail MTA.
|
304 |
* @return void
|
305 |
*/
|
306 |
+
public function IsQmail() {
|
307 |
$this->Sendmail = '/var/qmail/bin/sendmail';
|
308 |
$this->Mailer = 'sendmail';
|
309 |
}
|
507 |
* @access public
|
508 |
* @return bool
|
509 |
*/
|
510 |
+
public function SmtpSend($header, $body) {
|
511 |
include_once($this->PluginDir . 'Smtp.php');
|
512 |
$error = '';
|
513 |
$bad_rcpt = array();
|
574 |
* @access public
|
575 |
* @return bool
|
576 |
*/
|
577 |
+
public function SmtpConnect() {
|
578 |
if($this->smtp == NULL) {
|
579 |
$this->smtp = new SMTP();
|
580 |
}
|
app/code/community/MageTracking/TicketSystem/Helper/Smtp.php
CHANGED
@@ -1,38 +1,33 @@
|
|
1 |
<?php
|
2 |
-
/*~ class.smtp.php
|
3 |
-
.---------------------------------------------------------------------------.
|
4 |
-
| Software: PHPMailer - PHP email class |
|
5 |
-
| Version: 2.2.1 |
|
6 |
-
| Contact: via sourceforge.net support pages (also www.codeworxtech.com) |
|
7 |
-
| Info: http://phpmailer.sourceforge.net |
|
8 |
-
| Support: http://sourceforge.net/projects/phpmailer/ |
|
9 |
-
| ------------------------------------------------------------------------- |
|
10 |
-
| Author: Andy Prevost (project admininistrator) |
|
11 |
-
| Author: Brent R. Matzelle (original founder) |
|
12 |
-
| Copyright (c) 2004-2007, Andy Prevost. All Rights Reserved. |
|
13 |
-
| Copyright (c) 2001-2003, Brent R. Matzelle |
|
14 |
-
| ------------------------------------------------------------------------- |
|
15 |
-
| License: Distributed under the Lesser General Public License (LGPL) |
|
16 |
-
| http://www.gnu.org/copyleft/lesser.html |
|
17 |
-
| This program is distributed in the hope that it will be useful - WITHOUT |
|
18 |
-
| ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
19 |
-
| FITNESS FOR A PARTICULAR PURPOSE. |
|
20 |
-
| ------------------------------------------------------------------------- |
|
21 |
-
| We offer a number of paid services (www.codeworxtech.com): |
|
22 |
-
| - Web Hosting on highly optimized fast and secure servers |
|
23 |
-
| - Technology Consulting |
|
24 |
-
| - Oursourcing (highly qualified programmers and graphic designers) |
|
25 |
-
'---------------------------------------------------------------------------'
|
26 |
-
|
27 |
/**
|
28 |
-
*
|
29 |
-
*
|
30 |
-
*
|
31 |
-
*
|
32 |
-
*
|
33 |
-
*
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
34 |
*/
|
35 |
-
|
36 |
class SMTP {
|
37 |
/**
|
38 |
* SMTP server port
|
1 |
<?php
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
/**
|
3 |
+
* Magento Community Edition
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Magento Community Edition License
|
8 |
+
* that is bundled with this package in the file LICENSE_EE.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://www.magentocommerce.com/license/community-edition
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
*
|
22 |
+
* @category MageTracking
|
23 |
+
* @package MageTracking_TicketSystem
|
24 |
+
* @created Manmeet Kaur 29th Sep,2014
|
25 |
+
* @author Clarion magento team<Manmeet Kaur>
|
26 |
+
|
27 |
+
* @copyright Copyright (c) 2012 Magento Inc. (http://www.magentocommerce.com)
|
28 |
+
* @license http://www.magentocommerce.com/license/community-edition
|
29 |
*/
|
30 |
+
|
31 |
class SMTP {
|
32 |
/**
|
33 |
* SMTP server port
|
app/code/community/MageTracking/TicketSystem/Helper/Ticket.php
CHANGED
@@ -1,49 +1,33 @@
|
|
1 |
<?php
|
2 |
-
|
3 |
/**
|
4 |
-
|
5 |
-
* Sofhere SofTicket Magento Component
|
6 |
-
|
7 |
*
|
8 |
-
|
9 |
* NOTICE OF LICENSE
|
10 |
-
|
11 |
*
|
12 |
-
|
13 |
-
*
|
14 |
-
|
15 |
-
* that is bundled with this package in the file LICENSE.txt.
|
16 |
-
|
17 |
* It is also available through the world-wide-web at this URL:
|
18 |
-
|
19 |
-
* http://opensource.org/licenses/gpl-3.0.html
|
20 |
-
|
21 |
* If you did not receive a copy of the license and are unable to
|
22 |
-
|
23 |
* obtain it through the world-wide-web, please send an email
|
24 |
-
|
25 |
-
*
|
26 |
-
|
|
|
|
|
|
|
|
|
|
|
27 |
*
|
|
|
|
|
|
|
|
|
28 |
|
29 |
-
* @
|
30 |
-
|
31 |
-
* @author sofhere.com
|
32 |
-
|
33 |
-
* @package Sofhere_SofTicket
|
34 |
-
|
35 |
-
* @copyright Copyright (c) 2008-2009 Sofhere IT Solutions.(http://www.sofhere.com)
|
36 |
-
|
37 |
-
* @version 1.0
|
38 |
-
|
39 |
-
* @license http://opensource.org/licenses/gpl-3.0.html GNU GENERAL PUBLIC LICENSE (GNU 3.0)
|
40 |
-
|
41 |
*/
|
42 |
|
43 |
-
|
44 |
-
|
45 |
-
|
46 |
-
|
47 |
require_once 'Mail_data.php';
|
48 |
|
49 |
|
1 |
<?php
|
|
|
2 |
/**
|
3 |
+
* Magento Community Edition
|
|
|
|
|
4 |
*
|
|
|
5 |
* NOTICE OF LICENSE
|
|
|
6 |
*
|
7 |
+
* This source file is subject to the Magento Community Edition License
|
8 |
+
* that is bundled with this package in the file LICENSE_EE.txt.
|
|
|
|
|
|
|
9 |
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://www.magentocommerce.com/license/community-edition
|
|
|
|
|
11 |
* If you did not receive a copy of the license and are unable to
|
|
|
12 |
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
*
|
22 |
+
* @category MageTracking
|
23 |
+
* @package MageTracking_TicketSystem
|
24 |
+
* @created Manmeet Kaur 25th Sep,2014
|
25 |
+
* @author Clarion magento team<Manmeet Kaur>
|
26 |
|
27 |
+
* @copyright Copyright (c) 2012 Magento Inc. (http://www.magentocommerce.com)
|
28 |
+
* @license http://www.magentocommerce.com/license/community-edition
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
29 |
*/
|
30 |
|
|
|
|
|
|
|
|
|
31 |
require_once 'Mail_data.php';
|
32 |
|
33 |
|
app/code/community/MageTracking/TicketSystem/Helper/TicketFunctions.php
CHANGED
@@ -1,23 +1,32 @@
|
|
1 |
<?php
|
2 |
-
|
3 |
-
*
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
*
|
8 |
-
*
|
9 |
-
*
|
10 |
-
|
11 |
-
*
|
12 |
-
*
|
13 |
-
*
|
14 |
-
|
15 |
-
*
|
16 |
-
|
17 |
-
*
|
18 |
-
*
|
19 |
-
*
|
20 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
21 |
|
22 |
//Note: Moved some of the standard functions in here...
|
23 |
/* Clean Input (html2text,text2html) Start */
|
@@ -399,7 +408,7 @@
|
|
399 |
$pri = 3;
|
400 |
}
|
401 |
$db_settings['mail_method'] = "mail";
|
402 |
-
|
403 |
# SEND THE EMAIL
|
404 |
if ($db_settings['mail_method'] == "smtp") {
|
405 |
$mail->IsSMTP();
|
1 |
<?php
|
2 |
+
/**
|
3 |
+
* Magento Community Edition
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Magento Community Edition License
|
8 |
+
* that is bundled with this package in the file LICENSE_EE.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://www.magentocommerce.com/license/community-edition
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
*
|
22 |
+
* @category MageTracking
|
23 |
+
* @package MageTracking_TicketSystem
|
24 |
+
* @created Manmeet Kaur 25th Sep,2014
|
25 |
+
* @author Clarion magento team<Manmeet Kaur>
|
26 |
+
|
27 |
+
* @copyright Copyright (c) 2012 Magento Inc. (http://www.magentocommerce.com)
|
28 |
+
* @license http://www.magentocommerce.com/license/community-edition
|
29 |
+
*/
|
30 |
|
31 |
//Note: Moved some of the standard functions in here...
|
32 |
/* Clean Input (html2text,text2html) Start */
|
408 |
$pri = 3;
|
409 |
}
|
410 |
$db_settings['mail_method'] = "mail";
|
411 |
+
|
412 |
# SEND THE EMAIL
|
413 |
if ($db_settings['mail_method'] == "smtp") {
|
414 |
$mail->IsSMTP();
|
app/code/community/MageTracking/TicketSystem/Model/Answers.php
CHANGED
@@ -1,5 +1,32 @@
|
|
1 |
<?php
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
|
|
|
|
|
|
|
3 |
class MageTracking_TicketSystem_Model_Answers extends Mage_Core_Model_Abstract
|
4 |
{
|
5 |
public function _construct()
|
1 |
<?php
|
2 |
+
/**
|
3 |
+
* Magento Community Edition
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Magento Community Edition License
|
8 |
+
* that is bundled with this package in the file LICENSE_EE.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://www.magentocommerce.com/license/community-edition
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
*
|
22 |
+
* @category MageTracking
|
23 |
+
* @package MageTracking_TicketSystem
|
24 |
+
* @created Manmeet Kaur 28th Sep,2014
|
25 |
+
* @author Clarion magento team<Manmeet Kaur>
|
26 |
|
27 |
+
* @copyright Copyright (c) 2012 Magento Inc. (http://www.magentocommerce.com)
|
28 |
+
* @license http://www.magentocommerce.com/license/community-edition
|
29 |
+
*/
|
30 |
class MageTracking_TicketSystem_Model_Answers extends Mage_Core_Model_Abstract
|
31 |
{
|
32 |
public function _construct()
|
app/code/community/MageTracking/TicketSystem/Model/Cats.php
CHANGED
@@ -1,5 +1,32 @@
|
|
1 |
<?php
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
|
|
|
|
|
|
|
3 |
class MageTracking_TicketSystem_Model_Cats extends Mage_Core_Model_Abstract
|
4 |
{
|
5 |
public function _construct()
|
1 |
<?php
|
2 |
+
/**
|
3 |
+
* Magento Community Edition
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Magento Community Edition License
|
8 |
+
* that is bundled with this package in the file LICENSE_EE.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://www.magentocommerce.com/license/community-edition
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
*
|
22 |
+
* @category MageTracking
|
23 |
+
* @package MageTracking_TicketSystem
|
24 |
+
* @created Manmeet Kaur 28th Sep,2014
|
25 |
+
* @author Clarion magento team<Manmeet Kaur>
|
26 |
|
27 |
+
* @copyright Copyright (c) 2012 Magento Inc. (http://www.magentocommerce.com)
|
28 |
+
* @license http://www.magentocommerce.com/license/community-edition
|
29 |
+
*/
|
30 |
class MageTracking_TicketSystem_Model_Cats extends Mage_Core_Model_Abstract
|
31 |
{
|
32 |
public function _construct()
|
app/code/community/MageTracking/TicketSystem/Model/Groups.php
CHANGED
@@ -1,5 +1,32 @@
|
|
1 |
<?php
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
|
|
|
|
|
|
|
3 |
class MageTracking_TicketSystem_Model_Groups extends Mage_Core_Model_Abstract
|
4 |
{
|
5 |
public function _construct()
|
1 |
<?php
|
2 |
+
/**
|
3 |
+
* Magento Community Edition
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Magento Community Edition License
|
8 |
+
* that is bundled with this package in the file LICENSE_EE.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://www.magentocommerce.com/license/community-edition
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
*
|
22 |
+
* @category MageTracking
|
23 |
+
* @package MageTracking_TicketSystem
|
24 |
+
* @created Manmeet Kaur 28th Sep,2014
|
25 |
+
* @author Clarion magento team<Manmeet Kaur>
|
26 |
|
27 |
+
* @copyright Copyright (c) 2012 Magento Inc. (http://www.magentocommerce.com)
|
28 |
+
* @license http://www.magentocommerce.com/license/community-edition
|
29 |
+
*/
|
30 |
class MageTracking_TicketSystem_Model_Groups extends Mage_Core_Model_Abstract
|
31 |
{
|
32 |
public function _construct()
|
app/code/community/MageTracking/TicketSystem/Model/Mail.php
CHANGED
@@ -1,5 +1,32 @@
|
|
1 |
<?php
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
|
|
|
|
|
|
|
3 |
class MageTracking_TicketSystem_Model_Mail extends Mage_Core_Model_Abstract
|
4 |
{
|
5 |
public function _construct()
|
1 |
<?php
|
2 |
+
/**
|
3 |
+
* Magento Community Edition
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Magento Community Edition License
|
8 |
+
* that is bundled with this package in the file LICENSE_EE.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://www.magentocommerce.com/license/community-edition
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
*
|
22 |
+
* @category MageTracking
|
23 |
+
* @package MageTracking_TicketSystem
|
24 |
+
* @created Manmeet Kaur 28th Sep,2014
|
25 |
+
* @author Clarion magento team<Manmeet Kaur>
|
26 |
|
27 |
+
* @copyright Copyright (c) 2012 Magento Inc. (http://www.magentocommerce.com)
|
28 |
+
* @license http://www.magentocommerce.com/license/community-edition
|
29 |
+
*/
|
30 |
class MageTracking_TicketSystem_Model_Mail extends Mage_Core_Model_Abstract
|
31 |
{
|
32 |
public function _construct()
|
app/code/community/MageTracking/TicketSystem/Model/Messages.php
CHANGED
@@ -1,5 +1,32 @@
|
|
1 |
<?php
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
|
|
|
|
|
|
|
3 |
class MageTracking_TicketSystem_Model_Messages extends Mage_Core_Model_Abstract
|
4 |
{
|
5 |
public function _construct()
|
1 |
<?php
|
2 |
+
/**
|
3 |
+
* Magento Community Edition
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Magento Community Edition License
|
8 |
+
* that is bundled with this package in the file LICENSE_EE.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://www.magentocommerce.com/license/community-edition
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
*
|
22 |
+
* @category MageTracking
|
23 |
+
* @package MageTracking_TicketSystem
|
24 |
+
* @created Manmeet Kaur 28th Sep,2014
|
25 |
+
* @author Clarion magento team<Manmeet Kaur>
|
26 |
|
27 |
+
* @copyright Copyright (c) 2012 Magento Inc. (http://www.magentocommerce.com)
|
28 |
+
* @license http://www.magentocommerce.com/license/community-edition
|
29 |
+
*/
|
30 |
class MageTracking_TicketSystem_Model_Messages extends Mage_Core_Model_Abstract
|
31 |
{
|
32 |
public function _construct()
|
app/code/community/MageTracking/TicketSystem/Model/Settings.php
CHANGED
@@ -1,5 +1,32 @@
|
|
1 |
<?php
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
|
|
|
|
|
|
|
3 |
class MageTracking_TicketSystem_Model_Settings extends Mage_Core_Model_Abstract
|
4 |
{
|
5 |
public function _construct()
|
1 |
<?php
|
2 |
+
/**
|
3 |
+
* Magento Community Edition
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Magento Community Edition License
|
8 |
+
* that is bundled with this package in the file LICENSE_EE.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://www.magentocommerce.com/license/community-edition
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
*
|
22 |
+
* @category MageTracking
|
23 |
+
* @package MageTracking_TicketSystem
|
24 |
+
* @created Manmeet Kaur 28th Sep,2014
|
25 |
+
* @author Clarion magento team<Manmeet Kaur>
|
26 |
|
27 |
+
* @copyright Copyright (c) 2012 Magento Inc. (http://www.magentocommerce.com)
|
28 |
+
* @license http://www.magentocommerce.com/license/community-edition
|
29 |
+
*/
|
30 |
class MageTracking_TicketSystem_Model_Settings extends Mage_Core_Model_Abstract
|
31 |
{
|
32 |
public function _construct()
|
app/code/community/MageTracking/TicketSystem/Model/Status.php
CHANGED
@@ -1,5 +1,32 @@
|
|
1 |
<?php
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
|
|
|
|
|
|
|
3 |
class MageTracking_TicketSystem_Model_Status extends Varien_Object
|
4 |
{
|
5 |
const STATUS_EMPTY = '';
|
1 |
<?php
|
2 |
+
/**
|
3 |
+
* Magento Community Edition
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Magento Community Edition License
|
8 |
+
* that is bundled with this package in the file LICENSE_EE.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://www.magentocommerce.com/license/community-edition
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
*
|
22 |
+
* @category MageTracking
|
23 |
+
* @package MageTracking_TicketSystem
|
24 |
+
* @created Manmeet Kaur 28th Sep,2014
|
25 |
+
* @author Clarion magento team<Manmeet Kaur>
|
26 |
|
27 |
+
* @copyright Copyright (c) 2012 Magento Inc. (http://www.magentocommerce.com)
|
28 |
+
* @license http://www.magentocommerce.com/license/community-edition
|
29 |
+
*/
|
30 |
class MageTracking_TicketSystem_Model_Status extends Varien_Object
|
31 |
{
|
32 |
const STATUS_EMPTY = '';
|
app/code/community/MageTracking/TicketSystem/Model/Ticketsystem.php
CHANGED
@@ -1,6 +1,32 @@
|
|
1 |
<?php
|
2 |
-
|
3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4 |
|
5 |
class MageTracking_TicketSystem_Model_Ticketsystem extends Mage_Core_Model_Abstract
|
6 |
|
1 |
<?php
|
2 |
+
/**
|
3 |
+
* Magento Community Edition
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Magento Community Edition License
|
8 |
+
* that is bundled with this package in the file LICENSE_EE.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://www.magentocommerce.com/license/community-edition
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
*
|
22 |
+
* @category MageTracking
|
23 |
+
* @package MageTracking_TicketSystem
|
24 |
+
* @created Manmeet Kaur 28th Sep,2014
|
25 |
+
* @author Clarion magento team<Manmeet Kaur>
|
26 |
+
|
27 |
+
* @copyright Copyright (c) 2012 Magento Inc. (http://www.magentocommerce.com)
|
28 |
+
* @license http://www.magentocommerce.com/license/community-edition
|
29 |
+
*/
|
30 |
|
31 |
class MageTracking_TicketSystem_Model_Ticketsystem extends Mage_Core_Model_Abstract
|
32 |
|
app/code/community/MageTracking/TicketSystem/controllers/Adminhtml/CatController.php
CHANGED
@@ -1,23 +1,31 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
-
*
|
4 |
*
|
5 |
* NOTICE OF LICENSE
|
6 |
*
|
7 |
-
* This source file is subject to the
|
8 |
-
* that is bundled with this package in the file
|
9 |
* It is also available through the world-wide-web at this URL:
|
10 |
-
* http://
|
11 |
* If you did not receive a copy of the license and are unable to
|
12 |
* obtain it through the world-wide-web, please send an email
|
13 |
-
* to license@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
14 |
*
|
15 |
-
* @category
|
16 |
-
* @
|
17 |
-
* @
|
18 |
-
* @
|
19 |
-
|
20 |
-
* @
|
|
|
21 |
*/
|
22 |
|
23 |
class MageTracking_TicketSystem_Adminhtml_CatController extends Mage_Adminhtml_Controller_action
|
1 |
<?php
|
2 |
/**
|
3 |
+
* Magento Community Edition
|
4 |
*
|
5 |
* NOTICE OF LICENSE
|
6 |
*
|
7 |
+
* This source file is subject to the Magento Community Edition License
|
8 |
+
* that is bundled with this package in the file LICENSE_EE.txt.
|
9 |
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://www.magentocommerce.com/license/community-edition
|
11 |
* If you did not receive a copy of the license and are unable to
|
12 |
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
*
|
22 |
+
* @category MageTracking
|
23 |
+
* @package MageTracking_TicketSystem
|
24 |
+
* @created Manmeet Kaur 25th Sep,2014
|
25 |
+
* @author Clarion magento team<Manmeet Kaur>
|
26 |
+
|
27 |
+
* @copyright Copyright (c) 2012 Magento Inc. (http://www.magentocommerce.com)
|
28 |
+
* @license http://www.magentocommerce.com/license/community-edition
|
29 |
*/
|
30 |
|
31 |
class MageTracking_TicketSystem_Adminhtml_CatController extends Mage_Adminhtml_Controller_action
|
app/code/community/MageTracking/TicketSystem/controllers/Adminhtml/MailController.php
CHANGED
@@ -1,23 +1,31 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
-
*
|
4 |
*
|
5 |
* NOTICE OF LICENSE
|
6 |
*
|
7 |
-
* This source file is subject to the
|
8 |
-
* that is bundled with this package in the file
|
9 |
* It is also available through the world-wide-web at this URL:
|
10 |
-
* http://
|
11 |
* If you did not receive a copy of the license and are unable to
|
12 |
* obtain it through the world-wide-web, please send an email
|
13 |
-
* to license@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
14 |
*
|
15 |
-
* @category
|
16 |
-
* @
|
17 |
-
* @
|
18 |
-
* @
|
19 |
-
|
20 |
-
* @
|
|
|
21 |
*/
|
22 |
|
23 |
class MageTracking_TicketSystem_Adminhtml_MailController extends Mage_Adminhtml_Controller_action
|
1 |
<?php
|
2 |
/**
|
3 |
+
* Magento Community Edition
|
4 |
*
|
5 |
* NOTICE OF LICENSE
|
6 |
*
|
7 |
+
* This source file is subject to the Magento Community Edition License
|
8 |
+
* that is bundled with this package in the file LICENSE_EE.txt.
|
9 |
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://www.magentocommerce.com/license/community-edition
|
11 |
* If you did not receive a copy of the license and are unable to
|
12 |
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
*
|
22 |
+
* @category MageTracking
|
23 |
+
* @package MageTracking_TicketSystem
|
24 |
+
* @created Manmeet Kaur 25th Sep,2014
|
25 |
+
* @author Clarion magento team<Manmeet Kaur>
|
26 |
+
|
27 |
+
* @copyright Copyright (c) 2012 Magento Inc. (http://www.magentocommerce.com)
|
28 |
+
* @license http://www.magentocommerce.com/license/community-edition
|
29 |
*/
|
30 |
|
31 |
class MageTracking_TicketSystem_Adminhtml_MailController extends Mage_Adminhtml_Controller_action
|
app/code/community/MageTracking/TicketSystem/controllers/Adminhtml/SettingController.php
CHANGED
@@ -1,23 +1,31 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
-
*
|
4 |
*
|
5 |
* NOTICE OF LICENSE
|
6 |
*
|
7 |
-
* This source file is subject to the
|
8 |
-
* that is bundled with this package in the file
|
9 |
* It is also available through the world-wide-web at this URL:
|
10 |
-
* http://
|
11 |
* If you did not receive a copy of the license and are unable to
|
12 |
* obtain it through the world-wide-web, please send an email
|
13 |
-
* to license@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
14 |
*
|
15 |
-
* @category
|
16 |
-
* @
|
17 |
-
* @
|
18 |
-
* @
|
19 |
-
|
20 |
-
* @
|
|
|
21 |
*/
|
22 |
|
23 |
class MageTracking_TicketSystem_Adminhtml_SettingController extends Mage_Adminhtml_Controller_action
|
1 |
<?php
|
2 |
/**
|
3 |
+
* Magento Community Edition
|
4 |
*
|
5 |
* NOTICE OF LICENSE
|
6 |
*
|
7 |
+
* This source file is subject to the Magento Community Edition License
|
8 |
+
* that is bundled with this package in the file LICENSE_EE.txt.
|
9 |
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://www.magentocommerce.com/license/community-edition
|
11 |
* If you did not receive a copy of the license and are unable to
|
12 |
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
*
|
22 |
+
* @category MageTracking
|
23 |
+
* @package MageTracking_TicketSystem
|
24 |
+
* @created Manmeet Kaur 27th Sep,2014
|
25 |
+
* @author Clarion magento team<Manmeet Kaur>
|
26 |
+
|
27 |
+
* @copyright Copyright (c) 2012 Magento Inc. (http://www.magentocommerce.com)
|
28 |
+
* @license http://www.magentocommerce.com/license/community-edition
|
29 |
*/
|
30 |
|
31 |
class MageTracking_TicketSystem_Adminhtml_SettingController extends Mage_Adminhtml_Controller_action
|
app/code/community/MageTracking/TicketSystem/controllers/Adminhtml/TicketsystemController.php
CHANGED
@@ -1,43 +1,31 @@
|
|
1 |
<?php
|
2 |
-
|
3 |
/**
|
4 |
-
|
5 |
-
* Sofhere SofTicket Magento Component
|
6 |
-
|
7 |
*
|
8 |
-
|
9 |
* NOTICE OF LICENSE
|
10 |
-
|
11 |
*
|
12 |
-
|
13 |
-
*
|
14 |
-
|
15 |
-
* that is bundled with this package in the file LICENSE.txt.
|
16 |
-
|
17 |
* It is also available through the world-wide-web at this URL:
|
18 |
-
|
19 |
-
* http://opensource.org/licenses/gpl-3.0.html
|
20 |
-
|
21 |
* If you did not receive a copy of the license and are unable to
|
22 |
-
|
23 |
* obtain it through the world-wide-web, please send an email
|
24 |
-
|
25 |
-
*
|
26 |
-
|
|
|
|
|
|
|
|
|
|
|
27 |
*
|
|
|
|
|
|
|
|
|
28 |
|
29 |
-
* @
|
30 |
-
|
31 |
-
* @author sofhere.com
|
32 |
-
|
33 |
-
* @package Sofhere_SofTicket
|
34 |
-
|
35 |
-
* @copyright Copyright (c) 2008-2009 Sofhere IT Solutions.(http://www.sofhere.com)
|
36 |
-
|
37 |
-
* @version 0.5 beta
|
38 |
-
|
39 |
-
* @license http://opensource.org/licenses/gpl-3.0.html GNU GENERAL PUBLIC LICENSE (GNU 3.0)
|
40 |
-
|
41 |
*/
|
42 |
|
43 |
require 'MageTracking/TicketSystem/Helper/Ticket.php';
|
@@ -88,10 +76,6 @@ class MageTracking_TicketSystem_Adminhtml_TicketsystemController extends Mage_Ad
|
|
88 |
|
89 |
$cats = Mage::helper('ticketsystem')->getAllCategories(true);
|
90 |
|
91 |
-
//$reps=Mage::helper('ticketsystem')->getAllRepresantatives();
|
92 |
-
|
93 |
-
//Mage::register('ticketsystem_represantatives',$reps);
|
94 |
-
|
95 |
Mage::register('ticketsystem_categories', $cats);
|
96 |
|
97 |
|
1 |
<?php
|
|
|
2 |
/**
|
3 |
+
* Magento Community Edition
|
|
|
|
|
4 |
*
|
|
|
5 |
* NOTICE OF LICENSE
|
|
|
6 |
*
|
7 |
+
* This source file is subject to the Magento Community Edition License
|
8 |
+
* that is bundled with this package in the file LICENSE_EE.txt.
|
|
|
|
|
|
|
9 |
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://www.magentocommerce.com/license/community-edition
|
|
|
|
|
11 |
* If you did not receive a copy of the license and are unable to
|
|
|
12 |
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
*
|
22 |
+
* @category MageTracking
|
23 |
+
* @package MageTracking_TicketSystem
|
24 |
+
* @created Manmeet Kaur 27th Sep,2014
|
25 |
+
* @author Clarion magento team<Manmeet Kaur>
|
26 |
|
27 |
+
* @copyright Copyright (c) 2012 Magento Inc. (http://www.magentocommerce.com)
|
28 |
+
* @license http://www.magentocommerce.com/license/community-edition
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
29 |
*/
|
30 |
|
31 |
require 'MageTracking/TicketSystem/Helper/Ticket.php';
|
76 |
|
77 |
$cats = Mage::helper('ticketsystem')->getAllCategories(true);
|
78 |
|
|
|
|
|
|
|
|
|
79 |
Mage::register('ticketsystem_categories', $cats);
|
80 |
|
81 |
|
app/code/community/MageTracking/TicketSystem/controllers/IndexController.php
CHANGED
@@ -1,47 +1,34 @@
|
|
1 |
<?php
|
2 |
-
|
3 |
/**
|
4 |
-
|
5 |
-
* Sofhere SofTicket Magento Component
|
6 |
-
|
7 |
*
|
8 |
-
|
9 |
* NOTICE OF LICENSE
|
10 |
-
|
11 |
*
|
12 |
-
|
13 |
-
*
|
14 |
-
|
15 |
-
* that is bundled with this package in the file LICENSE.txt.
|
16 |
-
|
17 |
* It is also available through the world-wide-web at this URL:
|
18 |
-
|
19 |
-
* http://opensource.org/licenses/gpl-3.0.html
|
20 |
-
|
21 |
* If you did not receive a copy of the license and are unable to
|
22 |
-
|
23 |
* obtain it through the world-wide-web, please send an email
|
24 |
-
|
25 |
-
*
|
26 |
-
|
|
|
|
|
|
|
|
|
|
|
27 |
*
|
|
|
|
|
|
|
|
|
28 |
|
29 |
-
* @
|
30 |
-
|
31 |
-
* @author sofhere.com
|
32 |
-
|
33 |
-
* @package Sofhere_SofTicket
|
34 |
-
|
35 |
-
* @copyright Copyright (c) 2008-2009 Sofhere IT Solutions.(http://www.sofhere.com)
|
36 |
-
|
37 |
-
* @version 0.5 beta
|
38 |
-
|
39 |
-
* @license http://opensource.org/licenses/gpl-3.0.html GNU GENERAL PUBLIC LICENSE (GNU 3.0)
|
40 |
-
|
41 |
*/
|
42 |
|
43 |
|
44 |
-
|
45 |
require 'MageTracking/TicketSystem/Helper/Ticket.php';
|
46 |
|
47 |
|
@@ -165,13 +152,13 @@ class MageTracking_TicketSystem_IndexController extends Mage_Core_Controller_Fro
|
|
165 |
|
166 |
$data= $this->getRequest()->getPost();
|
167 |
|
168 |
-
|
169 |
|
170 |
if ($data && $data['ID'] && $data['ID'] >0 ) {
|
171 |
|
172 |
try {
|
173 |
|
174 |
-
|
175 |
|
176 |
$id=$data['ID'];
|
177 |
|
@@ -248,20 +235,19 @@ class MageTracking_TicketSystem_IndexController extends Mage_Core_Controller_Fro
|
|
248 |
{
|
249 |
|
250 |
$data= $this->getRequest()->getPost();
|
251 |
-
|
252 |
$connection = Mage::getSingleton('core/resource')->getConnection('core_read');
|
253 |
-
|
254 |
$select = "SELECT * from mticketing_tickets where status NOT LIKE 'CLOSED' AND email = '".$data['email']."' ";
|
255 |
$rowArray = $connection->fetchAll($select); //return row
|
256 |
$ticket_id = $rowArray[0]['ID'];
|
257 |
$ticket_count = count($rowArray);
|
258 |
-
|
259 |
-
//if ($data && $ticket_count==0) {
|
260 |
|
261 |
try {
|
262 |
|
263 |
$ticket = new Ticket();
|
264 |
-
|
265 |
$id=Mage::helper('ticketsystem')->getTicketID();
|
266 |
|
267 |
$ticket->id=$id;
|
@@ -337,31 +323,7 @@ class MageTracking_TicketSystem_IndexController extends Mage_Core_Controller_Fro
|
|
337 |
|
338 |
}
|
339 |
|
340 |
-
|
341 |
-
/*
|
342 |
-
else
|
343 |
-
{
|
344 |
-
// To get the refrence ID
|
345 |
-
$connection = Mage::getSingleton('core/resource')->getConnection('core_read');
|
346 |
-
$select_message_id = "SELECT id from ticket_messages where ticket = '".$ticket_id."'";
|
347 |
-
$rowArray_message = $connection->fetchRow($select_message_id); //return row
|
348 |
-
|
349 |
-
$connection = Mage::getSingleton('core/resource')->getConnection('core_write');
|
350 |
-
$connection->beginTransaction();
|
351 |
-
$fields = array();
|
352 |
-
$fields['ticket']= $ticket_id;
|
353 |
-
$fields['message']= $data['message'];
|
354 |
-
$fields['reference']= $rowArray_message['id'];
|
355 |
-
|
356 |
-
$connection->insert('ticket_answers', $fields);
|
357 |
-
$connection->commit();
|
358 |
-
|
359 |
-
Mage::getSingleton('core/session')->addSuccess('Ticket was successfully saved');
|
360 |
-
$this->_redirectSuccess(Mage::getUrl('*//*/index', array('_secure'=>true)));
|
361 |
-
return;
|
362 |
-
|
363 |
-
}*/
|
364 |
-
|
365 |
$this->_redirectError(Mage::getUrl('*/*/edit', array('id'=>$id)));
|
366 |
|
367 |
}
|
1 |
<?php
|
|
|
2 |
/**
|
3 |
+
* Magento Community Edition
|
|
|
|
|
4 |
*
|
|
|
5 |
* NOTICE OF LICENSE
|
|
|
6 |
*
|
7 |
+
* This source file is subject to the Magento Community Edition License
|
8 |
+
* that is bundled with this package in the file LICENSE_EE.txt.
|
|
|
|
|
|
|
9 |
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://www.magentocommerce.com/license/community-edition
|
|
|
|
|
11 |
* If you did not receive a copy of the license and are unable to
|
|
|
12 |
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
*
|
22 |
+
* @category MageTracking
|
23 |
+
* @package MageTracking_TicketSystem
|
24 |
+
* @created Manmeet Kaur 27th Sep,2014
|
25 |
+
* @author Clarion magento team<Manmeet Kaur>
|
26 |
|
27 |
+
* @copyright Copyright (c) 2012 Magento Inc. (http://www.magentocommerce.com)
|
28 |
+
* @license http://www.magentocommerce.com/license/community-edition
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
29 |
*/
|
30 |
|
31 |
|
|
|
32 |
require 'MageTracking/TicketSystem/Helper/Ticket.php';
|
33 |
|
34 |
|
152 |
|
153 |
$data= $this->getRequest()->getPost();
|
154 |
|
155 |
+
|
156 |
|
157 |
if ($data && $data['ID'] && $data['ID'] >0 ) {
|
158 |
|
159 |
try {
|
160 |
|
161 |
+
|
162 |
|
163 |
$id=$data['ID'];
|
164 |
|
235 |
{
|
236 |
|
237 |
$data= $this->getRequest()->getPost();
|
238 |
+
|
239 |
$connection = Mage::getSingleton('core/resource')->getConnection('core_read');
|
240 |
+
|
241 |
$select = "SELECT * from mticketing_tickets where status NOT LIKE 'CLOSED' AND email = '".$data['email']."' ";
|
242 |
$rowArray = $connection->fetchAll($select); //return row
|
243 |
$ticket_id = $rowArray[0]['ID'];
|
244 |
$ticket_count = count($rowArray);
|
245 |
+
|
|
|
246 |
|
247 |
try {
|
248 |
|
249 |
$ticket = new Ticket();
|
250 |
+
|
251 |
$id=Mage::helper('ticketsystem')->getTicketID();
|
252 |
|
253 |
$ticket->id=$id;
|
323 |
|
324 |
}
|
325 |
|
326 |
+
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
327 |
$this->_redirectError(Mage::getUrl('*/*/edit', array('id'=>$id)));
|
328 |
|
329 |
}
|
app/code/community/MageTracking/TicketSystem/etc/config.xml
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
<config>
|
3 |
<modules>
|
4 |
<MageTracking_TicketSystem>
|
5 |
-
<version>1.2.
|
6 |
</MageTracking_TicketSystem>
|
7 |
</modules>
|
8 |
<frontend>
|
@@ -139,9 +139,6 @@
|
|
139 |
<answers>
|
140 |
<table>mticketing_answers</table>
|
141 |
</answers>
|
142 |
-
<!--<groups>
|
143 |
-
<table>mticketing_groups</table>
|
144 |
-
</groups>-->
|
145 |
<settings>
|
146 |
<table>mticketing_settings</table>
|
147 |
</settings>
|
2 |
<config>
|
3 |
<modules>
|
4 |
<MageTracking_TicketSystem>
|
5 |
+
<version>1.2.0</version>
|
6 |
</MageTracking_TicketSystem>
|
7 |
</modules>
|
8 |
<frontend>
|
139 |
<answers>
|
140 |
<table>mticketing_answers</table>
|
141 |
</answers>
|
|
|
|
|
|
|
142 |
<settings>
|
143 |
<table>mticketing_settings</table>
|
144 |
</settings>
|
app/code/community/MageTracking/TicketSystem/sql/ticketsystem_setup/{mysql4-install-1.2.1.php → mysql4-install-1.2.0.php}
RENAMED
File without changes
|
app/design/frontend/base/default/template/ticketsystem/add.phtml
CHANGED
@@ -1,24 +1,32 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
-
*
|
4 |
*
|
5 |
* NOTICE OF LICENSE
|
6 |
*
|
7 |
-
* This source file is subject to the
|
8 |
-
* that is bundled with this package in the file
|
9 |
* It is also available through the world-wide-web at this URL:
|
10 |
-
* http://
|
11 |
* If you did not receive a copy of the license and are unable to
|
12 |
* obtain it through the world-wide-web, please send an email
|
13 |
-
* to license@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
14 |
*
|
15 |
-
* @category
|
16 |
-
* @
|
17 |
-
* @
|
18 |
-
* @
|
19 |
-
|
20 |
-
* @
|
21 |
-
|
|
|
22 |
?>
|
23 |
<?php
|
24 |
|
1 |
<?php
|
2 |
/**
|
3 |
+
* Magento Community Edition
|
4 |
*
|
5 |
* NOTICE OF LICENSE
|
6 |
*
|
7 |
+
* This source file is subject to the Magento Community Edition License
|
8 |
+
* that is bundled with this package in the file LICENSE_EE.txt.
|
9 |
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://www.magentocommerce.com/license/community-edition
|
11 |
* If you did not receive a copy of the license and are unable to
|
12 |
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
*
|
22 |
+
* @category MageTracking
|
23 |
+
* @package MageTracking_TicketSystem
|
24 |
+
* @created Manmeet Kaur 23th Sep,2014
|
25 |
+
* @author Clarion magento team<Manmeet Kaur>
|
26 |
+
|
27 |
+
* @copyright Copyright (c) 2012 Magento Inc. (http://www.magentocommerce.com)
|
28 |
+
* @license http://www.magentocommerce.com/license/community-edition
|
29 |
+
*/
|
30 |
?>
|
31 |
<?php
|
32 |
|
app/design/frontend/base/default/template/ticketsystem/edit.phtml
CHANGED
@@ -1,24 +1,32 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
-
*
|
4 |
*
|
5 |
* NOTICE OF LICENSE
|
6 |
*
|
7 |
-
* This source file is subject to the
|
8 |
-
* that is bundled with this package in the file
|
9 |
* It is also available through the world-wide-web at this URL:
|
10 |
-
* http://
|
11 |
* If you did not receive a copy of the license and are unable to
|
12 |
* obtain it through the world-wide-web, please send an email
|
13 |
-
* to license@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
14 |
*
|
15 |
-
* @category
|
16 |
-
* @
|
17 |
-
* @
|
18 |
-
* @
|
19 |
-
|
20 |
-
* @
|
21 |
-
|
|
|
22 |
?>
|
23 |
|
24 |
<?php $id= $this->getRequest()->getParam('id'); ?>
|
1 |
<?php
|
2 |
/**
|
3 |
+
* Magento Community Edition
|
4 |
*
|
5 |
* NOTICE OF LICENSE
|
6 |
*
|
7 |
+
* This source file is subject to the Magento Community Edition License
|
8 |
+
* that is bundled with this package in the file LICENSE_EE.txt.
|
9 |
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://www.magentocommerce.com/license/community-edition
|
11 |
* If you did not receive a copy of the license and are unable to
|
12 |
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
*
|
22 |
+
* @category MageTracking
|
23 |
+
* @package MageTracking_TicketSystem
|
24 |
+
* @created Manmeet Kaur 23th Sep,2014
|
25 |
+
* @author Clarion magento team<Manmeet Kaur>
|
26 |
+
|
27 |
+
* @copyright Copyright (c) 2012 Magento Inc. (http://www.magentocommerce.com)
|
28 |
+
* @license http://www.magentocommerce.com/license/community-edition
|
29 |
+
*/
|
30 |
?>
|
31 |
|
32 |
<?php $id= $this->getRequest()->getParam('id'); ?>
|
app/design/frontend/base/default/template/ticketsystem/navigation.phtml
CHANGED
@@ -1,13 +1,13 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
-
* Magento
|
4 |
*
|
5 |
* NOTICE OF LICENSE
|
6 |
*
|
7 |
-
* This source file is subject to the
|
8 |
-
* that is bundled with this package in the file
|
9 |
* It is also available through the world-wide-web at this URL:
|
10 |
-
* http://
|
11 |
* If you did not receive a copy of the license and are unable to
|
12 |
* obtain it through the world-wide-web, please send an email
|
13 |
* to license@magentocommerce.com so we can send you a copy immediately.
|
@@ -17,12 +17,16 @@
|
|
17 |
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
* versions in the future. If you wish to customize Magento for your
|
19 |
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
-
*
|
21 |
-
*
|
22 |
-
* @
|
23 |
-
* @
|
24 |
-
* @
|
25 |
-
|
|
|
|
|
|
|
|
|
26 |
?>
|
27 |
<div class="block block-list block-compare">
|
28 |
<div class="block-title">
|
1 |
<?php
|
2 |
/**
|
3 |
+
* Magento Community Edition
|
4 |
*
|
5 |
* NOTICE OF LICENSE
|
6 |
*
|
7 |
+
* This source file is subject to the Magento Community Edition License
|
8 |
+
* that is bundled with this package in the file LICENSE_EE.txt.
|
9 |
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://www.magentocommerce.com/license/community-edition
|
11 |
* If you did not receive a copy of the license and are unable to
|
12 |
* obtain it through the world-wide-web, please send an email
|
13 |
* to license@magentocommerce.com so we can send you a copy immediately.
|
17 |
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
* versions in the future. If you wish to customize Magento for your
|
19 |
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
*
|
22 |
+
* @category MageTracking
|
23 |
+
* @package MageTracking_TicketSystem
|
24 |
+
* @created Manmeet Kaur 23th Sep,2014
|
25 |
+
* @author Clarion magento team<Manmeet Kaur>
|
26 |
+
|
27 |
+
* @copyright Copyright (c) 2012 Magento Inc. (http://www.magentocommerce.com)
|
28 |
+
* @license http://www.magentocommerce.com/license/community-edition
|
29 |
+
*/
|
30 |
?>
|
31 |
<div class="block block-list block-compare">
|
32 |
<div class="block-title">
|
app/design/frontend/base/default/template/ticketsystem/view.phtml
CHANGED
@@ -1,24 +1,32 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
-
*
|
4 |
*
|
5 |
* NOTICE OF LICENSE
|
6 |
*
|
7 |
-
* This source file is subject to the
|
8 |
-
* that is bundled with this package in the file
|
9 |
* It is also available through the world-wide-web at this URL:
|
10 |
-
* http://
|
11 |
* If you did not receive a copy of the license and are unable to
|
12 |
* obtain it through the world-wide-web, please send an email
|
13 |
-
* to license@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
14 |
*
|
15 |
-
* @category
|
16 |
-
* @
|
17 |
-
* @
|
18 |
-
* @
|
19 |
-
|
20 |
-
* @
|
21 |
-
|
|
|
22 |
?>
|
23 |
|
24 |
<?php $_ticketsystems = $this->getTickets(); ?>
|
1 |
<?php
|
2 |
/**
|
3 |
+
* Magento Community Edition
|
4 |
*
|
5 |
* NOTICE OF LICENSE
|
6 |
*
|
7 |
+
* This source file is subject to the Magento Community Edition License
|
8 |
+
* that is bundled with this package in the file LICENSE_EE.txt.
|
9 |
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://www.magentocommerce.com/license/community-edition
|
11 |
* If you did not receive a copy of the license and are unable to
|
12 |
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
*
|
22 |
+
* @category MageTracking
|
23 |
+
* @package MageTracking_TicketSystem
|
24 |
+
* @created Manmeet Kaur 23th Sep,2014
|
25 |
+
* @author Clarion magento team<Manmeet Kaur>
|
26 |
+
|
27 |
+
* @copyright Copyright (c) 2012 Magento Inc. (http://www.magentocommerce.com)
|
28 |
+
* @license http://www.magentocommerce.com/license/community-edition
|
29 |
+
*/
|
30 |
?>
|
31 |
|
32 |
<?php $_ticketsystems = $this->getTickets(); ?>
|
package.xml
CHANGED
@@ -1,18 +1,18 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>MageTracking_TicketSystem</name>
|
4 |
-
<version>1.2.
|
5 |
<stability>stable</stability>
|
6 |
<license uri="http://opensource.org/licenses/osl-3.0.php">Open Software License (OSL)</license>
|
7 |
<channel>community</channel>
|
8 |
<extends/>
|
9 |
<summary>Allow customers to post their queries and concerns to admin.</summary>
|
10 |
<description>Order specific queries with efficient tracking and resolution system.</description>
|
11 |
-
<notes>First stable release 1.2.
|
12 |
<authors><author><name>Manmeet Kaur</name><user>Clariontech</user><email>manmeetkaur.g@gmail.com</email></author></authors>
|
13 |
-
<date>2014-11-
|
14 |
-
<time>
|
15 |
-
<contents><target name="magecommunity"><dir name="MageTracking"><dir name="TicketSystem"><dir name="Block"><dir name="Adminhtml"><dir name="Cat"><file name="Cat.php" hash="
|
16 |
<compatible/>
|
17 |
<dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php></required></dependencies>
|
18 |
</package>
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>MageTracking_TicketSystem</name>
|
4 |
+
<version>1.2.0</version>
|
5 |
<stability>stable</stability>
|
6 |
<license uri="http://opensource.org/licenses/osl-3.0.php">Open Software License (OSL)</license>
|
7 |
<channel>community</channel>
|
8 |
<extends/>
|
9 |
<summary>Allow customers to post their queries and concerns to admin.</summary>
|
10 |
<description>Order specific queries with efficient tracking and resolution system.</description>
|
11 |
+
<notes>First stable release 1.2.0</notes>
|
12 |
<authors><author><name>Manmeet Kaur</name><user>Clariontech</user><email>manmeetkaur.g@gmail.com</email></author></authors>
|
13 |
+
<date>2014-11-18</date>
|
14 |
+
<time>11:30:50</time>
|
15 |
+
<contents><target name="magecommunity"><dir name="MageTracking"><dir name="TicketSystem"><dir name="Block"><dir name="Adminhtml"><dir name="Cat"><file name="Cat.php" hash="97411468312d006075f3219acc464ebf"/><dir name="Edit"><file name="Form.php" hash="e8baf6de697d5a52a3c8f6b48ab8194c"/><dir name="Tab"><file name="Form.php" hash="9e08072b7ead60697e4304b57d272f39"/></dir><file name="Tabs.php" hash="43b92bf1257add93b29a923f327c9e0b"/></dir><file name="Edit.php" hash="bf91e98369617da72765b87177c4b8a4"/><file name="Grid.php" hash="e437b4277c933e5c252704ed67066dc6"/></dir><file name="Cat.php" hash="ad00e1bef7dc112b74c7ddbaf156c0bd"/><dir name="Ticketsystem"><file name="Cat.php" hash="a0dc3a0602c288147c1d48158976c4af"/><dir name="Edit"><file name="Form.php" hash="fdbffa2e00dfa281c057149cc9448e2b"/><file name="Newtabs.php" hash="5055eb3335352582a4b0094576cc6435"/><dir name="Tab"><file name="Form.php" hash="3b8bd09f93195f02e08d7711747aa001"/><file name="Newform.php" hash="93388c968e3b4796d53c264f76393d2a"/></dir><file name="Tabs.php" hash="ecad66ad2304066e8eb4c491812fcfb6"/></dir><file name="Edit.php" hash="4e8fcea2004934b6ca677c94487f9161"/><file name="Grid.php" hash="f28d8fa54fec094204f1ff777af964b0"/><dir name="Mail"><file name="Form.php" hash="3bb1532fd54f847df26e4a4bd808ca56"/><dir name="Tab"><file name="Form.php" hash="3aa661f77358f6422de7b88a396ba80f"/></dir><file name="Tabs.php" hash="81f9dbc48daa0f14c87b6baa4afeb2e4"/></dir><file name="Mail.php" hash="589d6ba38ff3402ead7b44503da5b7d1"/><dir name="Setting"><file name="Form.php" hash="ac7b77db32253969d7cbf1a657d7314b"/><dir name="Tab"><file name="Form.php" hash="90ab54b9b3391920fbede5dde9582049"/></dir><file name="Tabs.php" hash="a8c1363786958f8d380b3da2cff4cc58"/></dir><file name="Setting.php" hash="baad2a921a8ce7e5b569dbee844f1e14"/></dir><file name="Ticketsystem.php" hash="0944b1b6d9f36d87455e164e6bda64f6"/></dir><file name="Cat.php" hash="cb894da2a15eaf3f2908ce512506dfc9"/><dir name="Ticketsystem"><file name="Edit.php" hash="8bb1e87749f2d9d10e3cffd095f188fe"/><file name="Navigation.php" hash="b8ddb179b131cd0939485f60afed1711"/><file name="View.php" hash="24e19859ba9bab8c41fc8ce507fe4504"/></dir><file name="Ticketsystem.php" hash="2033be86106315693c7b5f93801aede4"/></dir><dir name="Helper"><file name="Data.php" hash="4d4d357a0afd274f08fd3b43d5813a10"/><file name="Mail.php" hash="7ba293aabcd4ccf239830cdfa464a2dc"/><file name="Mail_data.php" hash="1bdbe12074d1a14aa995cbaea75c9316"/><file name="Phpmailer.php" hash="7055b2de7e1c241a462ac9a148d779e6"/><file name="Smtp.php" hash="cffd7361ba47da5967a2a87c3d2a9cef"/><file name="Ticket.php" hash="bac1975f59dcf5df7b18522819c26f48"/><file name="TicketFunctions.php" hash="be5ff1c3f9e41448ef504b2402b6f7a0"/><file name="email-example.html" hash="0db129d8958122d7b810793854e5fcc8"/></dir><dir name="Model"><file name="Answers.php" hash="197fabbe5bc17aa68ab3352ef1f8edac"/><file name="Cats.php" hash="d36b9d1b6f05f399b62a0c857f276e90"/><file name="Groups.php" hash="61e8fa1dc8f94254872944ebc0526ec1"/><file name="Mail.php" hash="eb80f82542de39318a820ea22be59024"/><file name="Messages.php" hash="7993c477084c7571594f10680371f020"/><dir name="Mysql4"><dir name="Answers"><file name="Collection.php" hash="cb71f90b2f9de9f16fc57eb2dc128f81"/></dir><file name="Answers.php" hash="cfafe1e43c93aea3f1d4de417c7b489a"/><dir name="Cats"><file name="Collection.php" hash="3d23bbdf2fa7f0137254f9cf5511813a"/></dir><file name="Cats.php" hash="fe3b00699c4d444f04a17dfd62b76e96"/><dir name="Groups"><file name="Collection.php" hash="2c805c01e413e44efe02828cb99d372c"/></dir><file name="Groups.php" hash="0fe54100d79f5fb91a88c7adf33c1de8"/><dir name="Mail"><file name="Collection.php" hash="0d455617b65f4163ad09d7aa16a688a5"/></dir><file name="Mail.php" hash="e1bed2c92e78bc8deb8706b100ac3846"/><file name="Messages.php" hash="95cf65b8a0e92a017a0917351a2b0130"/><dir name="Settings"><file name="Collection.php" hash="96f7e25a40958a4d1564a7ad179b8e02"/></dir><file name="Settings.php" hash="b202494080f477e11d48f18db29748da"/><dir name="Ticketsystem"><file name="Collection.php" hash="8af813dd7b207e844b151768024bc8dc"/></dir><file name="Ticketsystem.php" hash="fa19accedb52af3079c063899802f28a"/></dir><file name="Settings.php" hash="3a32bf8e78cfe20287bac09319ff81cc"/><file name="Status.php" hash="bf6a9f09f89e032cf5bb7e1c659c3e01"/><file name="Ticketsystem.php" hash="b0425b233fec304009d22e254e0b6a34"/></dir><dir name="controllers"><dir name="Adminhtml"><file name="CatController.php" hash="9f28898563f03d2d1a9f4147ea8a795b"/><file name="MailController.php" hash="8b31b542d21e69b34314f337f747c4ac"/><file name="SettingController.php" hash="95b514092ab15ff024c63854233ceaa2"/><file name="TicketsystemController.php" hash="523ba0c7164f0888b402e9dfa6db4912"/></dir><file name="IndexController.php" hash="899c10a7c81b4b87feee038f274f31d6"/></dir><dir name="etc"><file name="config.xml" hash="7f398c045c3027e546a3df88beffb49d"/></dir><dir name="sql"><dir name="ticketsystem_setup"><file name="mysql4-install-1.2.0.php" hash="576484a23552cce0a5155964170d5b53"/></dir></dir></dir></dir></target><target name="magedesign"><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="ticketsystem.xml" hash="70ed75f80e1995356ad21caba5b8d590"/></dir><dir name="template"><dir name="ticketsystem"><file name="add.phtml" hash="507b509a2a09b3b9c9757f4b4b9be0ca"/><file name="edit.phtml" hash="a2f1f34d87608b2e17a6e18db0378db7"/><file name="navigation.phtml" hash="0ab749111694b20e3462afe4e968a6e8"/><file name="view.phtml" hash="9c7eff342c8d9febce1f4bd8c2e10858"/></dir></dir></dir></dir></dir><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="ticketsystem.xml" hash="40713c5bc7867dd30a9a3966578d9217"/></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="MageTracking_TicketSystem.xml" hash="e7a0b88c04733e250385479c79a29f8b"/></dir></target></contents>
|
16 |
<compatible/>
|
17 |
<dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php></required></dependencies>
|
18 |
</package>
|