Version Notes
- Improved compatibility after SUPEE-6285 patch
Download this release
Release Info
Developer | Magento Core Team |
Extension | Eabi_Livehandler |
Version | 0.1.10 |
Comparing to | |
See all releases |
Code changes from version 0.1.9 to 0.1.10
- app/code/community/Eabi/Livehandler/Block/Adminhtml/Config/Form/Field/Button.php +6 -22
- app/code/community/Eabi/Livehandler/Block/Adminhtml/Config/Form/Field/Remove.php +6 -22
- app/code/community/Eabi/Livehandler/Block/Email.php +6 -22
- app/code/community/Eabi/Livehandler/Block/Footer.php +6 -22
- app/code/community/Eabi/Livehandler/Helper/Data.php +6 -22
- app/code/community/Eabi/Livehandler/Helper/Keypair.php +6 -22
- app/code/community/Eabi/Livehandler/Model/Abstract.php +6 -22
- app/code/community/Eabi/Livehandler/Model/Action/Abstract.php +6 -22
- app/code/community/Eabi/Livehandler/Model/Action/Postoffice/Print.php +6 -22
- app/code/community/Eabi/Livehandler/Model/Action/Postoffice/Send.php +6 -22
- app/code/community/Eabi/Livehandler/Model/Adminhtml/Gridmanager.php +6 -22
- app/code/community/Eabi/Livehandler/Model/Directory/Collection.php +6 -22
- app/code/community/Eabi/Livehandler/Model/Entry.php +6 -22
- app/code/community/Eabi/Livehandler/Model/File/Object.php +6 -22
- app/code/community/Eabi/Livehandler/Model/Mysql4/Entry.php +6 -22
- app/code/community/Eabi/Livehandler/Model/Mysql4/Entry/Collection.php +6 -22
- app/code/community/Eabi/Livehandler/Model/Ordergrid.php +6 -22
- app/code/community/Eabi/Livehandler/Model/System/Config/Backend/Button.php +6 -22
- app/code/community/Eabi/Livehandler/controllers/Adminhtml/LivehandlerController.php +12 -22
- app/code/community/Eabi/Livehandler/controllers/Adminhtml/RemoveController.php +6 -22
- app/code/community/Eabi/Livehandler/controllers/IndexController.php +6 -22
- app/code/community/Eabi/Livehandler/etc/config.xml +6 -22
- app/code/community/Eabi/Livehandler/etc/system.xml +6 -22
- app/code/community/Eabi/Livehandler/sql/eabi_livehandler_setup/mysql4-install-0.1.0.php +6 -22
- app/code/community/Eabi/Livehandler/sql/eabi_livehandler_setup/mysql4-upgrade-0.1.0-0.1.1.php +6 -22
- app/code/community/Eabi/Livehandler/sql/eabi_livehandler_setup/mysql4-upgrade-0.1.8-0.1.9.php +6 -22
- app/design/adminhtml/default/default/layout/eabi_livehandler.xml +6 -22
- app/design/frontend/base/default/layout/eabi_livehandler.xml +6 -22
- app/design/frontend/base/default/template/eabi_livehandler/email.phtml +6 -22
- app/design/frontend/default/default/layout/eabi_livehandler.xml +6 -22
- app/etc/modules/Eabi_Livehandler.xml +6 -22
- package.xml +5 -6
app/code/community/Eabi/Livehandler/Block/Adminhtml/Config/Form/Field/Button.php
CHANGED
@@ -1,30 +1,14 @@
|
|
1 |
<?php
|
2 |
/*
|
3 |
|
4 |
-
*
|
5 |
-
*
|
6 |
-
*
|
7 |
-
* This source file is subject to the Open Software License (OSL 3.0)
|
8 |
-
* or OpenGPL v3 license (GNU Public License V3.0)
|
9 |
-
* that is bundled with this package in the file LICENSE.txt.
|
10 |
-
* It is also available through the world-wide-web at this URL:
|
11 |
-
* http://opensource.org/licenses/osl-3.0.php
|
12 |
-
* or
|
13 |
-
* http://www.gnu.org/licenses/gpl-3.0.txt
|
14 |
-
* If you did not receive a copy of the license and are unable to
|
15 |
-
* obtain it through the world-wide-web, please send an email
|
16 |
-
* to info@e-abi.ee so we can send you a copy immediately.
|
17 |
-
*
|
18 |
-
* DISCLAIMER
|
19 |
-
*
|
20 |
-
* Do not edit or add to this file if you wish to upgrade this module to newer
|
21 |
-
* versions in the future.
|
22 |
*
|
23 |
* @category Eabi
|
24 |
-
* @package
|
25 |
-
* @copyright Copyright (c)
|
26 |
-
* @license http://
|
27 |
-
* @license http://www.gnu.org/licenses/gpl-3.0.txt GNU Public License V3.0
|
28 |
* @author Matis Halmann
|
29 |
*
|
30 |
|
1 |
<?php
|
2 |
/*
|
3 |
|
4 |
+
* Käesoleva loomingu autoriõigused kuuluvad Matis Halmannile ja Aktsiamaailm OU-le
|
5 |
+
* Litsentsitingimused on saadaval http://www.e-abi.ee/litsents
|
6 |
+
*
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7 |
*
|
8 |
* @category Eabi
|
9 |
+
* @package Eabi_Omniva
|
10 |
+
* @copyright Copyright (c) 2015 Aktsiamaailm LLC (http://en.e-abi.ee/)
|
11 |
+
* @license http://www.e-abi.ee/litsents
|
|
|
12 |
* @author Matis Halmann
|
13 |
*
|
14 |
|
app/code/community/Eabi/Livehandler/Block/Adminhtml/Config/Form/Field/Remove.php
CHANGED
@@ -1,30 +1,14 @@
|
|
1 |
<?php
|
2 |
/*
|
3 |
|
4 |
-
*
|
5 |
-
*
|
6 |
-
*
|
7 |
-
* This source file is subject to the Open Software License (OSL 3.0)
|
8 |
-
* or OpenGPL v3 license (GNU Public License V3.0)
|
9 |
-
* that is bundled with this package in the file LICENSE.txt.
|
10 |
-
* It is also available through the world-wide-web at this URL:
|
11 |
-
* http://opensource.org/licenses/osl-3.0.php
|
12 |
-
* or
|
13 |
-
* http://www.gnu.org/licenses/gpl-3.0.txt
|
14 |
-
* If you did not receive a copy of the license and are unable to
|
15 |
-
* obtain it through the world-wide-web, please send an email
|
16 |
-
* to info@e-abi.ee so we can send you a copy immediately.
|
17 |
-
*
|
18 |
-
* DISCLAIMER
|
19 |
-
*
|
20 |
-
* Do not edit or add to this file if you wish to upgrade this module to newer
|
21 |
-
* versions in the future.
|
22 |
*
|
23 |
* @category Eabi
|
24 |
-
* @package
|
25 |
-
* @copyright Copyright (c)
|
26 |
-
* @license http://
|
27 |
-
* @license http://www.gnu.org/licenses/gpl-3.0.txt GNU Public License V3.0
|
28 |
* @author Matis Halmann
|
29 |
*
|
30 |
|
1 |
<?php
|
2 |
/*
|
3 |
|
4 |
+
* Käesoleva loomingu autoriõigused kuuluvad Matis Halmannile ja Aktsiamaailm OU-le
|
5 |
+
* Litsentsitingimused on saadaval http://www.e-abi.ee/litsents
|
6 |
+
*
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7 |
*
|
8 |
* @category Eabi
|
9 |
+
* @package Eabi_Omniva
|
10 |
+
* @copyright Copyright (c) 2015 Aktsiamaailm LLC (http://en.e-abi.ee/)
|
11 |
+
* @license http://www.e-abi.ee/litsents
|
|
|
12 |
* @author Matis Halmann
|
13 |
*
|
14 |
|
app/code/community/Eabi/Livehandler/Block/Email.php
CHANGED
@@ -2,30 +2,14 @@
|
|
2 |
|
3 |
/*
|
4 |
|
5 |
-
*
|
6 |
-
*
|
7 |
-
*
|
8 |
-
* This source file is subject to the Open Software License (OSL 3.0)
|
9 |
-
* or OpenGPL v3 license (GNU Public License V3.0)
|
10 |
-
* that is bundled with this package in the file LICENSE.txt.
|
11 |
-
* It is also available through the world-wide-web at this URL:
|
12 |
-
* http://opensource.org/licenses/osl-3.0.php
|
13 |
-
* or
|
14 |
-
* http://www.gnu.org/licenses/gpl-3.0.txt
|
15 |
-
* If you did not receive a copy of the license and are unable to
|
16 |
-
* obtain it through the world-wide-web, please send an email
|
17 |
-
* to info@e-abi.ee so we can send you a copy immediately.
|
18 |
-
*
|
19 |
-
* DISCLAIMER
|
20 |
-
*
|
21 |
-
* Do not edit or add to this file if you wish to upgrade this module to newer
|
22 |
-
* versions in the future.
|
23 |
*
|
24 |
* @category Eabi
|
25 |
-
* @package
|
26 |
-
* @copyright Copyright (c)
|
27 |
-
* @license http://
|
28 |
-
* @license http://www.gnu.org/licenses/gpl-3.0.txt GNU Public License V3.0
|
29 |
* @author Matis Halmann
|
30 |
*
|
31 |
|
2 |
|
3 |
/*
|
4 |
|
5 |
+
* Käesoleva loomingu autoriõigused kuuluvad Matis Halmannile ja Aktsiamaailm OU-le
|
6 |
+
* Litsentsitingimused on saadaval http://www.e-abi.ee/litsents
|
7 |
+
*
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8 |
*
|
9 |
* @category Eabi
|
10 |
+
* @package Eabi_Omniva
|
11 |
+
* @copyright Copyright (c) 2015 Aktsiamaailm LLC (http://en.e-abi.ee/)
|
12 |
+
* @license http://www.e-abi.ee/litsents
|
|
|
13 |
* @author Matis Halmann
|
14 |
*
|
15 |
|
app/code/community/Eabi/Livehandler/Block/Footer.php
CHANGED
@@ -1,30 +1,14 @@
|
|
1 |
<?php
|
2 |
/*
|
3 |
|
4 |
-
*
|
5 |
-
*
|
6 |
-
*
|
7 |
-
* This source file is subject to the Open Software License (OSL 3.0)
|
8 |
-
* or OpenGPL v3 license (GNU Public License V3.0)
|
9 |
-
* that is bundled with this package in the file LICENSE.txt.
|
10 |
-
* It is also available through the world-wide-web at this URL:
|
11 |
-
* http://opensource.org/licenses/osl-3.0.php
|
12 |
-
* or
|
13 |
-
* http://www.gnu.org/licenses/gpl-3.0.txt
|
14 |
-
* If you did not receive a copy of the license and are unable to
|
15 |
-
* obtain it through the world-wide-web, please send an email
|
16 |
-
* to info@e-abi.ee so we can send you a copy immediately.
|
17 |
-
*
|
18 |
-
* DISCLAIMER
|
19 |
-
*
|
20 |
-
* Do not edit or add to this file if you wish to upgrade this module to newer
|
21 |
-
* versions in the future.
|
22 |
*
|
23 |
* @category Eabi
|
24 |
-
* @package
|
25 |
-
* @copyright Copyright (c)
|
26 |
-
* @license http://
|
27 |
-
* @license http://www.gnu.org/licenses/gpl-3.0.txt GNU Public License V3.0
|
28 |
* @author Matis Halmann
|
29 |
*
|
30 |
|
1 |
<?php
|
2 |
/*
|
3 |
|
4 |
+
* Käesoleva loomingu autoriõigused kuuluvad Matis Halmannile ja Aktsiamaailm OU-le
|
5 |
+
* Litsentsitingimused on saadaval http://www.e-abi.ee/litsents
|
6 |
+
*
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7 |
*
|
8 |
* @category Eabi
|
9 |
+
* @package Eabi_Omniva
|
10 |
+
* @copyright Copyright (c) 2015 Aktsiamaailm LLC (http://en.e-abi.ee/)
|
11 |
+
* @license http://www.e-abi.ee/litsents
|
|
|
12 |
* @author Matis Halmann
|
13 |
*
|
14 |
|
app/code/community/Eabi/Livehandler/Helper/Data.php
CHANGED
@@ -1,30 +1,14 @@
|
|
1 |
<?php
|
2 |
/*
|
3 |
|
4 |
-
*
|
5 |
-
*
|
6 |
-
*
|
7 |
-
* This source file is subject to the Open Software License (OSL 3.0)
|
8 |
-
* or OpenGPL v3 license (GNU Public License V3.0)
|
9 |
-
* that is bundled with this package in the file LICENSE.txt.
|
10 |
-
* It is also available through the world-wide-web at this URL:
|
11 |
-
* http://opensource.org/licenses/osl-3.0.php
|
12 |
-
* or
|
13 |
-
* http://www.gnu.org/licenses/gpl-3.0.txt
|
14 |
-
* If you did not receive a copy of the license and are unable to
|
15 |
-
* obtain it through the world-wide-web, please send an email
|
16 |
-
* to info@e-abi.ee so we can send you a copy immediately.
|
17 |
-
*
|
18 |
-
* DISCLAIMER
|
19 |
-
*
|
20 |
-
* Do not edit or add to this file if you wish to upgrade this module to newer
|
21 |
-
* versions in the future.
|
22 |
*
|
23 |
* @category Eabi
|
24 |
-
* @package
|
25 |
-
* @copyright Copyright (c)
|
26 |
-
* @license http://
|
27 |
-
* @license http://www.gnu.org/licenses/gpl-3.0.txt GNU Public License V3.0
|
28 |
* @author Matis Halmann
|
29 |
*
|
30 |
|
1 |
<?php
|
2 |
/*
|
3 |
|
4 |
+
* Käesoleva loomingu autoriõigused kuuluvad Matis Halmannile ja Aktsiamaailm OU-le
|
5 |
+
* Litsentsitingimused on saadaval http://www.e-abi.ee/litsents
|
6 |
+
*
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7 |
*
|
8 |
* @category Eabi
|
9 |
+
* @package Eabi_Omniva
|
10 |
+
* @copyright Copyright (c) 2015 Aktsiamaailm LLC (http://en.e-abi.ee/)
|
11 |
+
* @license http://www.e-abi.ee/litsents
|
|
|
12 |
* @author Matis Halmann
|
13 |
*
|
14 |
|
app/code/community/Eabi/Livehandler/Helper/Keypair.php
CHANGED
@@ -2,30 +2,14 @@
|
|
2 |
|
3 |
/*
|
4 |
|
5 |
-
*
|
6 |
-
*
|
7 |
-
*
|
8 |
-
* This source file is subject to the Open Software License (OSL 3.0)
|
9 |
-
* or OpenGPL v3 license (GNU Public License V3.0)
|
10 |
-
* that is bundled with this package in the file LICENSE.txt.
|
11 |
-
* It is also available through the world-wide-web at this URL:
|
12 |
-
* http://opensource.org/licenses/osl-3.0.php
|
13 |
-
* or
|
14 |
-
* http://www.gnu.org/licenses/gpl-3.0.txt
|
15 |
-
* If you did not receive a copy of the license and are unable to
|
16 |
-
* obtain it through the world-wide-web, please send an email
|
17 |
-
* to info@e-abi.ee so we can send you a copy immediately.
|
18 |
-
*
|
19 |
-
* DISCLAIMER
|
20 |
-
*
|
21 |
-
* Do not edit or add to this file if you wish to upgrade this module to newer
|
22 |
-
* versions in the future.
|
23 |
*
|
24 |
* @category Eabi
|
25 |
-
* @package
|
26 |
-
* @copyright Copyright (c)
|
27 |
-
* @license http://
|
28 |
-
* @license http://www.gnu.org/licenses/gpl-3.0.txt GNU Public License V3.0
|
29 |
* @author Matis Halmann
|
30 |
*
|
31 |
|
2 |
|
3 |
/*
|
4 |
|
5 |
+
* Käesoleva loomingu autoriõigused kuuluvad Matis Halmannile ja Aktsiamaailm OU-le
|
6 |
+
* Litsentsitingimused on saadaval http://www.e-abi.ee/litsents
|
7 |
+
*
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8 |
*
|
9 |
* @category Eabi
|
10 |
+
* @package Eabi_Omniva
|
11 |
+
* @copyright Copyright (c) 2015 Aktsiamaailm LLC (http://en.e-abi.ee/)
|
12 |
+
* @license http://www.e-abi.ee/litsents
|
|
|
13 |
* @author Matis Halmann
|
14 |
*
|
15 |
|
app/code/community/Eabi/Livehandler/Model/Abstract.php
CHANGED
@@ -1,30 +1,14 @@
|
|
1 |
<?php
|
2 |
/*
|
3 |
|
4 |
-
*
|
5 |
-
*
|
6 |
-
*
|
7 |
-
* This source file is subject to the Open Software License (OSL 3.0)
|
8 |
-
* or OpenGPL v3 license (GNU Public License V3.0)
|
9 |
-
* that is bundled with this package in the file LICENSE.txt.
|
10 |
-
* It is also available through the world-wide-web at this URL:
|
11 |
-
* http://opensource.org/licenses/osl-3.0.php
|
12 |
-
* or
|
13 |
-
* http://www.gnu.org/licenses/gpl-3.0.txt
|
14 |
-
* If you did not receive a copy of the license and are unable to
|
15 |
-
* obtain it through the world-wide-web, please send an email
|
16 |
-
* to info@e-abi.ee so we can send you a copy immediately.
|
17 |
-
*
|
18 |
-
* DISCLAIMER
|
19 |
-
*
|
20 |
-
* Do not edit or add to this file if you wish to upgrade this module to newer
|
21 |
-
* versions in the future.
|
22 |
*
|
23 |
* @category Eabi
|
24 |
-
* @package
|
25 |
-
* @copyright Copyright (c)
|
26 |
-
* @license http://
|
27 |
-
* @license http://www.gnu.org/licenses/gpl-3.0.txt GNU Public License V3.0
|
28 |
* @author Matis Halmann
|
29 |
*
|
30 |
|
1 |
<?php
|
2 |
/*
|
3 |
|
4 |
+
* Käesoleva loomingu autoriõigused kuuluvad Matis Halmannile ja Aktsiamaailm OU-le
|
5 |
+
* Litsentsitingimused on saadaval http://www.e-abi.ee/litsents
|
6 |
+
*
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7 |
*
|
8 |
* @category Eabi
|
9 |
+
* @package Eabi_Omniva
|
10 |
+
* @copyright Copyright (c) 2015 Aktsiamaailm LLC (http://en.e-abi.ee/)
|
11 |
+
* @license http://www.e-abi.ee/litsents
|
|
|
12 |
* @author Matis Halmann
|
13 |
*
|
14 |
|
app/code/community/Eabi/Livehandler/Model/Action/Abstract.php
CHANGED
@@ -1,30 +1,14 @@
|
|
1 |
<?php
|
2 |
/*
|
3 |
|
4 |
-
*
|
5 |
-
*
|
6 |
-
*
|
7 |
-
* This source file is subject to the Open Software License (OSL 3.0)
|
8 |
-
* or OpenGPL v3 license (GNU Public License V3.0)
|
9 |
-
* that is bundled with this package in the file LICENSE.txt.
|
10 |
-
* It is also available through the world-wide-web at this URL:
|
11 |
-
* http://opensource.org/licenses/osl-3.0.php
|
12 |
-
* or
|
13 |
-
* http://www.gnu.org/licenses/gpl-3.0.txt
|
14 |
-
* If you did not receive a copy of the license and are unable to
|
15 |
-
* obtain it through the world-wide-web, please send an email
|
16 |
-
* to info@e-abi.ee so we can send you a copy immediately.
|
17 |
-
*
|
18 |
-
* DISCLAIMER
|
19 |
-
*
|
20 |
-
* Do not edit or add to this file if you wish to upgrade this module to newer
|
21 |
-
* versions in the future.
|
22 |
*
|
23 |
* @category Eabi
|
24 |
-
* @package
|
25 |
-
* @copyright Copyright (c)
|
26 |
-
* @license http://
|
27 |
-
* @license http://www.gnu.org/licenses/gpl-3.0.txt GNU Public License V3.0
|
28 |
* @author Matis Halmann
|
29 |
*
|
30 |
|
1 |
<?php
|
2 |
/*
|
3 |
|
4 |
+
* Käesoleva loomingu autoriõigused kuuluvad Matis Halmannile ja Aktsiamaailm OU-le
|
5 |
+
* Litsentsitingimused on saadaval http://www.e-abi.ee/litsents
|
6 |
+
*
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7 |
*
|
8 |
* @category Eabi
|
9 |
+
* @package Eabi_Omniva
|
10 |
+
* @copyright Copyright (c) 2015 Aktsiamaailm LLC (http://en.e-abi.ee/)
|
11 |
+
* @license http://www.e-abi.ee/litsents
|
|
|
12 |
* @author Matis Halmann
|
13 |
*
|
14 |
|
app/code/community/Eabi/Livehandler/Model/Action/Postoffice/Print.php
CHANGED
@@ -2,30 +2,14 @@
|
|
2 |
|
3 |
/*
|
4 |
|
5 |
-
*
|
6 |
-
*
|
7 |
-
*
|
8 |
-
* This source file is subject to the Open Software License (OSL 3.0)
|
9 |
-
* or OpenGPL v3 license (GNU Public License V3.0)
|
10 |
-
* that is bundled with this package in the file LICENSE.txt.
|
11 |
-
* It is also available through the world-wide-web at this URL:
|
12 |
-
* http://opensource.org/licenses/osl-3.0.php
|
13 |
-
* or
|
14 |
-
* http://www.gnu.org/licenses/gpl-3.0.txt
|
15 |
-
* If you did not receive a copy of the license and are unable to
|
16 |
-
* obtain it through the world-wide-web, please send an email
|
17 |
-
* to info@e-abi.ee so we can send you a copy immediately.
|
18 |
-
*
|
19 |
-
* DISCLAIMER
|
20 |
-
*
|
21 |
-
* Do not edit or add to this file if you wish to upgrade this module to newer
|
22 |
-
* versions in the future.
|
23 |
*
|
24 |
* @category Eabi
|
25 |
-
* @package
|
26 |
-
* @copyright Copyright (c)
|
27 |
-
* @license http://
|
28 |
-
* @license http://www.gnu.org/licenses/gpl-3.0.txt GNU Public License V3.0
|
29 |
* @author Matis Halmann
|
30 |
*
|
31 |
|
2 |
|
3 |
/*
|
4 |
|
5 |
+
* Käesoleva loomingu autoriõigused kuuluvad Matis Halmannile ja Aktsiamaailm OU-le
|
6 |
+
* Litsentsitingimused on saadaval http://www.e-abi.ee/litsents
|
7 |
+
*
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8 |
*
|
9 |
* @category Eabi
|
10 |
+
* @package Eabi_Omniva
|
11 |
+
* @copyright Copyright (c) 2015 Aktsiamaailm LLC (http://en.e-abi.ee/)
|
12 |
+
* @license http://www.e-abi.ee/litsents
|
|
|
13 |
* @author Matis Halmann
|
14 |
*
|
15 |
|
app/code/community/Eabi/Livehandler/Model/Action/Postoffice/Send.php
CHANGED
@@ -2,30 +2,14 @@
|
|
2 |
|
3 |
/*
|
4 |
|
5 |
-
*
|
6 |
-
*
|
7 |
-
*
|
8 |
-
* This source file is subject to the Open Software License (OSL 3.0)
|
9 |
-
* or OpenGPL v3 license (GNU Public License V3.0)
|
10 |
-
* that is bundled with this package in the file LICENSE.txt.
|
11 |
-
* It is also available through the world-wide-web at this URL:
|
12 |
-
* http://opensource.org/licenses/osl-3.0.php
|
13 |
-
* or
|
14 |
-
* http://www.gnu.org/licenses/gpl-3.0.txt
|
15 |
-
* If you did not receive a copy of the license and are unable to
|
16 |
-
* obtain it through the world-wide-web, please send an email
|
17 |
-
* to info@e-abi.ee so we can send you a copy immediately.
|
18 |
-
*
|
19 |
-
* DISCLAIMER
|
20 |
-
*
|
21 |
-
* Do not edit or add to this file if you wish to upgrade this module to newer
|
22 |
-
* versions in the future.
|
23 |
*
|
24 |
* @category Eabi
|
25 |
-
* @package
|
26 |
-
* @copyright Copyright (c)
|
27 |
-
* @license http://
|
28 |
-
* @license http://www.gnu.org/licenses/gpl-3.0.txt GNU Public License V3.0
|
29 |
* @author Matis Halmann
|
30 |
*
|
31 |
|
2 |
|
3 |
/*
|
4 |
|
5 |
+
* Käesoleva loomingu autoriõigused kuuluvad Matis Halmannile ja Aktsiamaailm OU-le
|
6 |
+
* Litsentsitingimused on saadaval http://www.e-abi.ee/litsents
|
7 |
+
*
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8 |
*
|
9 |
* @category Eabi
|
10 |
+
* @package Eabi_Omniva
|
11 |
+
* @copyright Copyright (c) 2015 Aktsiamaailm LLC (http://en.e-abi.ee/)
|
12 |
+
* @license http://www.e-abi.ee/litsents
|
|
|
13 |
* @author Matis Halmann
|
14 |
*
|
15 |
|
app/code/community/Eabi/Livehandler/Model/Adminhtml/Gridmanager.php
CHANGED
@@ -1,30 +1,14 @@
|
|
1 |
<?php
|
2 |
/*
|
3 |
|
4 |
-
*
|
5 |
-
*
|
6 |
-
*
|
7 |
-
* This source file is subject to the Open Software License (OSL 3.0)
|
8 |
-
* or OpenGPL v3 license (GNU Public License V3.0)
|
9 |
-
* that is bundled with this package in the file LICENSE.txt.
|
10 |
-
* It is also available through the world-wide-web at this URL:
|
11 |
-
* http://opensource.org/licenses/osl-3.0.php
|
12 |
-
* or
|
13 |
-
* http://www.gnu.org/licenses/gpl-3.0.txt
|
14 |
-
* If you did not receive a copy of the license and are unable to
|
15 |
-
* obtain it through the world-wide-web, please send an email
|
16 |
-
* to info@e-abi.ee so we can send you a copy immediately.
|
17 |
-
*
|
18 |
-
* DISCLAIMER
|
19 |
-
*
|
20 |
-
* Do not edit or add to this file if you wish to upgrade this module to newer
|
21 |
-
* versions in the future.
|
22 |
*
|
23 |
* @category Eabi
|
24 |
-
* @package
|
25 |
-
* @copyright Copyright (c)
|
26 |
-
* @license http://
|
27 |
-
* @license http://www.gnu.org/licenses/gpl-3.0.txt GNU Public License V3.0
|
28 |
* @author Matis Halmann
|
29 |
*
|
30 |
|
1 |
<?php
|
2 |
/*
|
3 |
|
4 |
+
* Käesoleva loomingu autoriõigused kuuluvad Matis Halmannile ja Aktsiamaailm OU-le
|
5 |
+
* Litsentsitingimused on saadaval http://www.e-abi.ee/litsents
|
6 |
+
*
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7 |
*
|
8 |
* @category Eabi
|
9 |
+
* @package Eabi_Omniva
|
10 |
+
* @copyright Copyright (c) 2015 Aktsiamaailm LLC (http://en.e-abi.ee/)
|
11 |
+
* @license http://www.e-abi.ee/litsents
|
|
|
12 |
* @author Matis Halmann
|
13 |
*
|
14 |
|
app/code/community/Eabi/Livehandler/Model/Directory/Collection.php
CHANGED
@@ -2,30 +2,14 @@
|
|
2 |
|
3 |
/*
|
4 |
|
5 |
-
*
|
6 |
-
*
|
7 |
-
*
|
8 |
-
* This source file is subject to the Open Software License (OSL 3.0)
|
9 |
-
* or OpenGPL v3 license (GNU Public License V3.0)
|
10 |
-
* that is bundled with this package in the file LICENSE.txt.
|
11 |
-
* It is also available through the world-wide-web at this URL:
|
12 |
-
* http://opensource.org/licenses/osl-3.0.php
|
13 |
-
* or
|
14 |
-
* http://www.gnu.org/licenses/gpl-3.0.txt
|
15 |
-
* If you did not receive a copy of the license and are unable to
|
16 |
-
* obtain it through the world-wide-web, please send an email
|
17 |
-
* to info@e-abi.ee so we can send you a copy immediately.
|
18 |
-
*
|
19 |
-
* DISCLAIMER
|
20 |
-
*
|
21 |
-
* Do not edit or add to this file if you wish to upgrade this module to newer
|
22 |
-
* versions in the future.
|
23 |
*
|
24 |
* @category Eabi
|
25 |
-
* @package
|
26 |
-
* @copyright Copyright (c)
|
27 |
-
* @license http://
|
28 |
-
* @license http://www.gnu.org/licenses/gpl-3.0.txt GNU Public License V3.0
|
29 |
* @author Matis Halmann
|
30 |
*
|
31 |
|
2 |
|
3 |
/*
|
4 |
|
5 |
+
* Käesoleva loomingu autoriõigused kuuluvad Matis Halmannile ja Aktsiamaailm OU-le
|
6 |
+
* Litsentsitingimused on saadaval http://www.e-abi.ee/litsents
|
7 |
+
*
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8 |
*
|
9 |
* @category Eabi
|
10 |
+
* @package Eabi_Omniva
|
11 |
+
* @copyright Copyright (c) 2015 Aktsiamaailm LLC (http://en.e-abi.ee/)
|
12 |
+
* @license http://www.e-abi.ee/litsents
|
|
|
13 |
* @author Matis Halmann
|
14 |
*
|
15 |
|
app/code/community/Eabi/Livehandler/Model/Entry.php
CHANGED
@@ -1,30 +1,14 @@
|
|
1 |
<?php
|
2 |
/*
|
3 |
|
4 |
-
*
|
5 |
-
*
|
6 |
-
*
|
7 |
-
* This source file is subject to the Open Software License (OSL 3.0)
|
8 |
-
* or OpenGPL v3 license (GNU Public License V3.0)
|
9 |
-
* that is bundled with this package in the file LICENSE.txt.
|
10 |
-
* It is also available through the world-wide-web at this URL:
|
11 |
-
* http://opensource.org/licenses/osl-3.0.php
|
12 |
-
* or
|
13 |
-
* http://www.gnu.org/licenses/gpl-3.0.txt
|
14 |
-
* If you did not receive a copy of the license and are unable to
|
15 |
-
* obtain it through the world-wide-web, please send an email
|
16 |
-
* to info@e-abi.ee so we can send you a copy immediately.
|
17 |
-
*
|
18 |
-
* DISCLAIMER
|
19 |
-
*
|
20 |
-
* Do not edit or add to this file if you wish to upgrade this module to newer
|
21 |
-
* versions in the future.
|
22 |
*
|
23 |
* @category Eabi
|
24 |
-
* @package
|
25 |
-
* @copyright Copyright (c)
|
26 |
-
* @license http://
|
27 |
-
* @license http://www.gnu.org/licenses/gpl-3.0.txt GNU Public License V3.0
|
28 |
* @author Matis Halmann
|
29 |
*
|
30 |
|
1 |
<?php
|
2 |
/*
|
3 |
|
4 |
+
* Käesoleva loomingu autoriõigused kuuluvad Matis Halmannile ja Aktsiamaailm OU-le
|
5 |
+
* Litsentsitingimused on saadaval http://www.e-abi.ee/litsents
|
6 |
+
*
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7 |
*
|
8 |
* @category Eabi
|
9 |
+
* @package Eabi_Omniva
|
10 |
+
* @copyright Copyright (c) 2015 Aktsiamaailm LLC (http://en.e-abi.ee/)
|
11 |
+
* @license http://www.e-abi.ee/litsents
|
|
|
12 |
* @author Matis Halmann
|
13 |
*
|
14 |
|
app/code/community/Eabi/Livehandler/Model/File/Object.php
CHANGED
@@ -2,30 +2,14 @@
|
|
2 |
|
3 |
/*
|
4 |
|
5 |
-
*
|
6 |
-
*
|
7 |
-
*
|
8 |
-
* This source file is subject to the Open Software License (OSL 3.0)
|
9 |
-
* or OpenGPL v3 license (GNU Public License V3.0)
|
10 |
-
* that is bundled with this package in the file LICENSE.txt.
|
11 |
-
* It is also available through the world-wide-web at this URL:
|
12 |
-
* http://opensource.org/licenses/osl-3.0.php
|
13 |
-
* or
|
14 |
-
* http://www.gnu.org/licenses/gpl-3.0.txt
|
15 |
-
* If you did not receive a copy of the license and are unable to
|
16 |
-
* obtain it through the world-wide-web, please send an email
|
17 |
-
* to info@e-abi.ee so we can send you a copy immediately.
|
18 |
-
*
|
19 |
-
* DISCLAIMER
|
20 |
-
*
|
21 |
-
* Do not edit or add to this file if you wish to upgrade this module to newer
|
22 |
-
* versions in the future.
|
23 |
*
|
24 |
* @category Eabi
|
25 |
-
* @package
|
26 |
-
* @copyright Copyright (c)
|
27 |
-
* @license http://
|
28 |
-
* @license http://www.gnu.org/licenses/gpl-3.0.txt GNU Public License V3.0
|
29 |
* @author Matis Halmann
|
30 |
*
|
31 |
|
2 |
|
3 |
/*
|
4 |
|
5 |
+
* Käesoleva loomingu autoriõigused kuuluvad Matis Halmannile ja Aktsiamaailm OU-le
|
6 |
+
* Litsentsitingimused on saadaval http://www.e-abi.ee/litsents
|
7 |
+
*
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8 |
*
|
9 |
* @category Eabi
|
10 |
+
* @package Eabi_Omniva
|
11 |
+
* @copyright Copyright (c) 2015 Aktsiamaailm LLC (http://en.e-abi.ee/)
|
12 |
+
* @license http://www.e-abi.ee/litsents
|
|
|
13 |
* @author Matis Halmann
|
14 |
*
|
15 |
|
app/code/community/Eabi/Livehandler/Model/Mysql4/Entry.php
CHANGED
@@ -1,30 +1,14 @@
|
|
1 |
<?php
|
2 |
/*
|
3 |
|
4 |
-
*
|
5 |
-
*
|
6 |
-
*
|
7 |
-
* This source file is subject to the Open Software License (OSL 3.0)
|
8 |
-
* or OpenGPL v3 license (GNU Public License V3.0)
|
9 |
-
* that is bundled with this package in the file LICENSE.txt.
|
10 |
-
* It is also available through the world-wide-web at this URL:
|
11 |
-
* http://opensource.org/licenses/osl-3.0.php
|
12 |
-
* or
|
13 |
-
* http://www.gnu.org/licenses/gpl-3.0.txt
|
14 |
-
* If you did not receive a copy of the license and are unable to
|
15 |
-
* obtain it through the world-wide-web, please send an email
|
16 |
-
* to info@e-abi.ee so we can send you a copy immediately.
|
17 |
-
*
|
18 |
-
* DISCLAIMER
|
19 |
-
*
|
20 |
-
* Do not edit or add to this file if you wish to upgrade this module to newer
|
21 |
-
* versions in the future.
|
22 |
*
|
23 |
* @category Eabi
|
24 |
-
* @package
|
25 |
-
* @copyright Copyright (c)
|
26 |
-
* @license http://
|
27 |
-
* @license http://www.gnu.org/licenses/gpl-3.0.txt GNU Public License V3.0
|
28 |
* @author Matis Halmann
|
29 |
*
|
30 |
|
1 |
<?php
|
2 |
/*
|
3 |
|
4 |
+
* Käesoleva loomingu autoriõigused kuuluvad Matis Halmannile ja Aktsiamaailm OU-le
|
5 |
+
* Litsentsitingimused on saadaval http://www.e-abi.ee/litsents
|
6 |
+
*
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7 |
*
|
8 |
* @category Eabi
|
9 |
+
* @package Eabi_Omniva
|
10 |
+
* @copyright Copyright (c) 2015 Aktsiamaailm LLC (http://en.e-abi.ee/)
|
11 |
+
* @license http://www.e-abi.ee/litsents
|
|
|
12 |
* @author Matis Halmann
|
13 |
*
|
14 |
|
app/code/community/Eabi/Livehandler/Model/Mysql4/Entry/Collection.php
CHANGED
@@ -1,30 +1,14 @@
|
|
1 |
<?php
|
2 |
/*
|
3 |
|
4 |
-
*
|
5 |
-
*
|
6 |
-
*
|
7 |
-
* This source file is subject to the Open Software License (OSL 3.0)
|
8 |
-
* or OpenGPL v3 license (GNU Public License V3.0)
|
9 |
-
* that is bundled with this package in the file LICENSE.txt.
|
10 |
-
* It is also available through the world-wide-web at this URL:
|
11 |
-
* http://opensource.org/licenses/osl-3.0.php
|
12 |
-
* or
|
13 |
-
* http://www.gnu.org/licenses/gpl-3.0.txt
|
14 |
-
* If you did not receive a copy of the license and are unable to
|
15 |
-
* obtain it through the world-wide-web, please send an email
|
16 |
-
* to info@e-abi.ee so we can send you a copy immediately.
|
17 |
-
*
|
18 |
-
* DISCLAIMER
|
19 |
-
*
|
20 |
-
* Do not edit or add to this file if you wish to upgrade this module to newer
|
21 |
-
* versions in the future.
|
22 |
*
|
23 |
* @category Eabi
|
24 |
-
* @package
|
25 |
-
* @copyright Copyright (c)
|
26 |
-
* @license http://
|
27 |
-
* @license http://www.gnu.org/licenses/gpl-3.0.txt GNU Public License V3.0
|
28 |
* @author Matis Halmann
|
29 |
*
|
30 |
|
1 |
<?php
|
2 |
/*
|
3 |
|
4 |
+
* Käesoleva loomingu autoriõigused kuuluvad Matis Halmannile ja Aktsiamaailm OU-le
|
5 |
+
* Litsentsitingimused on saadaval http://www.e-abi.ee/litsents
|
6 |
+
*
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7 |
*
|
8 |
* @category Eabi
|
9 |
+
* @package Eabi_Omniva
|
10 |
+
* @copyright Copyright (c) 2015 Aktsiamaailm LLC (http://en.e-abi.ee/)
|
11 |
+
* @license http://www.e-abi.ee/litsents
|
|
|
12 |
* @author Matis Halmann
|
13 |
*
|
14 |
|
app/code/community/Eabi/Livehandler/Model/Ordergrid.php
CHANGED
@@ -1,30 +1,14 @@
|
|
1 |
<?php
|
2 |
/*
|
3 |
|
4 |
-
*
|
5 |
-
*
|
6 |
-
*
|
7 |
-
* This source file is subject to the Open Software License (OSL 3.0)
|
8 |
-
* or OpenGPL v3 license (GNU Public License V3.0)
|
9 |
-
* that is bundled with this package in the file LICENSE.txt.
|
10 |
-
* It is also available through the world-wide-web at this URL:
|
11 |
-
* http://opensource.org/licenses/osl-3.0.php
|
12 |
-
* or
|
13 |
-
* http://www.gnu.org/licenses/gpl-3.0.txt
|
14 |
-
* If you did not receive a copy of the license and are unable to
|
15 |
-
* obtain it through the world-wide-web, please send an email
|
16 |
-
* to info@e-abi.ee so we can send you a copy immediately.
|
17 |
-
*
|
18 |
-
* DISCLAIMER
|
19 |
-
*
|
20 |
-
* Do not edit or add to this file if you wish to upgrade this module to newer
|
21 |
-
* versions in the future.
|
22 |
*
|
23 |
* @category Eabi
|
24 |
-
* @package
|
25 |
-
* @copyright Copyright (c)
|
26 |
-
* @license http://
|
27 |
-
* @license http://www.gnu.org/licenses/gpl-3.0.txt GNU Public License V3.0
|
28 |
* @author Matis Halmann
|
29 |
*
|
30 |
|
1 |
<?php
|
2 |
/*
|
3 |
|
4 |
+
* Käesoleva loomingu autoriõigused kuuluvad Matis Halmannile ja Aktsiamaailm OU-le
|
5 |
+
* Litsentsitingimused on saadaval http://www.e-abi.ee/litsents
|
6 |
+
*
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7 |
*
|
8 |
* @category Eabi
|
9 |
+
* @package Eabi_Omniva
|
10 |
+
* @copyright Copyright (c) 2015 Aktsiamaailm LLC (http://en.e-abi.ee/)
|
11 |
+
* @license http://www.e-abi.ee/litsents
|
|
|
12 |
* @author Matis Halmann
|
13 |
*
|
14 |
|
app/code/community/Eabi/Livehandler/Model/System/Config/Backend/Button.php
CHANGED
@@ -1,30 +1,14 @@
|
|
1 |
<?php
|
2 |
/*
|
3 |
|
4 |
-
*
|
5 |
-
*
|
6 |
-
*
|
7 |
-
* This source file is subject to the Open Software License (OSL 3.0)
|
8 |
-
* or OpenGPL v3 license (GNU Public License V3.0)
|
9 |
-
* that is bundled with this package in the file LICENSE.txt.
|
10 |
-
* It is also available through the world-wide-web at this URL:
|
11 |
-
* http://opensource.org/licenses/osl-3.0.php
|
12 |
-
* or
|
13 |
-
* http://www.gnu.org/licenses/gpl-3.0.txt
|
14 |
-
* If you did not receive a copy of the license and are unable to
|
15 |
-
* obtain it through the world-wide-web, please send an email
|
16 |
-
* to info@e-abi.ee so we can send you a copy immediately.
|
17 |
-
*
|
18 |
-
* DISCLAIMER
|
19 |
-
*
|
20 |
-
* Do not edit or add to this file if you wish to upgrade this module to newer
|
21 |
-
* versions in the future.
|
22 |
*
|
23 |
* @category Eabi
|
24 |
-
* @package
|
25 |
-
* @copyright Copyright (c)
|
26 |
-
* @license http://
|
27 |
-
* @license http://www.gnu.org/licenses/gpl-3.0.txt GNU Public License V3.0
|
28 |
* @author Matis Halmann
|
29 |
*
|
30 |
|
1 |
<?php
|
2 |
/*
|
3 |
|
4 |
+
* Käesoleva loomingu autoriõigused kuuluvad Matis Halmannile ja Aktsiamaailm OU-le
|
5 |
+
* Litsentsitingimused on saadaval http://www.e-abi.ee/litsents
|
6 |
+
*
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7 |
*
|
8 |
* @category Eabi
|
9 |
+
* @package Eabi_Omniva
|
10 |
+
* @copyright Copyright (c) 2015 Aktsiamaailm LLC (http://en.e-abi.ee/)
|
11 |
+
* @license http://www.e-abi.ee/litsents
|
|
|
12 |
* @author Matis Halmann
|
13 |
*
|
14 |
|
app/code/community/Eabi/Livehandler/controllers/Adminhtml/LivehandlerController.php
CHANGED
@@ -1,30 +1,14 @@
|
|
1 |
<?php
|
2 |
/*
|
3 |
|
4 |
-
*
|
5 |
-
*
|
6 |
-
*
|
7 |
-
* This source file is subject to the Open Software License (OSL 3.0)
|
8 |
-
* or OpenGPL v3 license (GNU Public License V3.0)
|
9 |
-
* that is bundled with this package in the file LICENSE.txt.
|
10 |
-
* It is also available through the world-wide-web at this URL:
|
11 |
-
* http://opensource.org/licenses/osl-3.0.php
|
12 |
-
* or
|
13 |
-
* http://www.gnu.org/licenses/gpl-3.0.txt
|
14 |
-
* If you did not receive a copy of the license and are unable to
|
15 |
-
* obtain it through the world-wide-web, please send an email
|
16 |
-
* to info@e-abi.ee so we can send you a copy immediately.
|
17 |
-
*
|
18 |
-
* DISCLAIMER
|
19 |
-
*
|
20 |
-
* Do not edit or add to this file if you wish to upgrade this module to newer
|
21 |
-
* versions in the future.
|
22 |
*
|
23 |
* @category Eabi
|
24 |
-
* @package
|
25 |
-
* @copyright Copyright (c)
|
26 |
-
* @license http://
|
27 |
-
* @license http://www.gnu.org/licenses/gpl-3.0.txt GNU Public License V3.0
|
28 |
* @author Matis Halmann
|
29 |
*
|
30 |
|
@@ -104,6 +88,12 @@ class Eabi_Livehandler_Adminhtml_LivehandlerController extends Mage_Adminhtml_Co
|
|
104 |
echo Zend_Json::encode($result);
|
105 |
die();
|
106 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
107 |
/**
|
108 |
*
|
109 |
* @return Eabi_Livehandler_Helper_Data
|
1 |
<?php
|
2 |
/*
|
3 |
|
4 |
+
* Käesoleva loomingu autoriõigused kuuluvad Matis Halmannile ja Aktsiamaailm OU-le
|
5 |
+
* Litsentsitingimused on saadaval http://www.e-abi.ee/litsents
|
6 |
+
*
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7 |
*
|
8 |
* @category Eabi
|
9 |
+
* @package Eabi_Omniva
|
10 |
+
* @copyright Copyright (c) 2015 Aktsiamaailm LLC (http://en.e-abi.ee/)
|
11 |
+
* @license http://www.e-abi.ee/litsents
|
|
|
12 |
* @author Matis Halmann
|
13 |
*
|
14 |
|
88 |
echo Zend_Json::encode($result);
|
89 |
die();
|
90 |
}
|
91 |
+
|
92 |
+
protected function _isAllowed() {
|
93 |
+
return true;
|
94 |
+
}
|
95 |
+
|
96 |
+
|
97 |
/**
|
98 |
*
|
99 |
* @return Eabi_Livehandler_Helper_Data
|
app/code/community/Eabi/Livehandler/controllers/Adminhtml/RemoveController.php
CHANGED
@@ -1,30 +1,14 @@
|
|
1 |
<?php
|
2 |
/*
|
3 |
|
4 |
-
*
|
5 |
-
*
|
6 |
-
*
|
7 |
-
* This source file is subject to the Open Software License (OSL 3.0)
|
8 |
-
* or OpenGPL v3 license (GNU Public License V3.0)
|
9 |
-
* that is bundled with this package in the file LICENSE.txt.
|
10 |
-
* It is also available through the world-wide-web at this URL:
|
11 |
-
* http://opensource.org/licenses/osl-3.0.php
|
12 |
-
* or
|
13 |
-
* http://www.gnu.org/licenses/gpl-3.0.txt
|
14 |
-
* If you did not receive a copy of the license and are unable to
|
15 |
-
* obtain it through the world-wide-web, please send an email
|
16 |
-
* to info@e-abi.ee so we can send you a copy immediately.
|
17 |
-
*
|
18 |
-
* DISCLAIMER
|
19 |
-
*
|
20 |
-
* Do not edit or add to this file if you wish to upgrade this module to newer
|
21 |
-
* versions in the future.
|
22 |
*
|
23 |
* @category Eabi
|
24 |
-
* @package
|
25 |
-
* @copyright Copyright (c)
|
26 |
-
* @license http://
|
27 |
-
* @license http://www.gnu.org/licenses/gpl-3.0.txt GNU Public License V3.0
|
28 |
* @author Matis Halmann
|
29 |
*
|
30 |
|
1 |
<?php
|
2 |
/*
|
3 |
|
4 |
+
* Käesoleva loomingu autoriõigused kuuluvad Matis Halmannile ja Aktsiamaailm OU-le
|
5 |
+
* Litsentsitingimused on saadaval http://www.e-abi.ee/litsents
|
6 |
+
*
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7 |
*
|
8 |
* @category Eabi
|
9 |
+
* @package Eabi_Omniva
|
10 |
+
* @copyright Copyright (c) 2015 Aktsiamaailm LLC (http://en.e-abi.ee/)
|
11 |
+
* @license http://www.e-abi.ee/litsents
|
|
|
12 |
* @author Matis Halmann
|
13 |
*
|
14 |
|
app/code/community/Eabi/Livehandler/controllers/IndexController.php
CHANGED
@@ -1,30 +1,14 @@
|
|
1 |
<?php
|
2 |
/*
|
3 |
|
4 |
-
*
|
5 |
-
*
|
6 |
-
*
|
7 |
-
* This source file is subject to the Open Software License (OSL 3.0)
|
8 |
-
* or OpenGPL v3 license (GNU Public License V3.0)
|
9 |
-
* that is bundled with this package in the file LICENSE.txt.
|
10 |
-
* It is also available through the world-wide-web at this URL:
|
11 |
-
* http://opensource.org/licenses/osl-3.0.php
|
12 |
-
* or
|
13 |
-
* http://www.gnu.org/licenses/gpl-3.0.txt
|
14 |
-
* If you did not receive a copy of the license and are unable to
|
15 |
-
* obtain it through the world-wide-web, please send an email
|
16 |
-
* to info@e-abi.ee so we can send you a copy immediately.
|
17 |
-
*
|
18 |
-
* DISCLAIMER
|
19 |
-
*
|
20 |
-
* Do not edit or add to this file if you wish to upgrade this module to newer
|
21 |
-
* versions in the future.
|
22 |
*
|
23 |
* @category Eabi
|
24 |
-
* @package
|
25 |
-
* @copyright Copyright (c)
|
26 |
-
* @license http://
|
27 |
-
* @license http://www.gnu.org/licenses/gpl-3.0.txt GNU Public License V3.0
|
28 |
* @author Matis Halmann
|
29 |
*
|
30 |
|
1 |
<?php
|
2 |
/*
|
3 |
|
4 |
+
* Käesoleva loomingu autoriõigused kuuluvad Matis Halmannile ja Aktsiamaailm OU-le
|
5 |
+
* Litsentsitingimused on saadaval http://www.e-abi.ee/litsents
|
6 |
+
*
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7 |
*
|
8 |
* @category Eabi
|
9 |
+
* @package Eabi_Omniva
|
10 |
+
* @copyright Copyright (c) 2015 Aktsiamaailm LLC (http://en.e-abi.ee/)
|
11 |
+
* @license http://www.e-abi.ee/litsents
|
|
|
12 |
* @author Matis Halmann
|
13 |
*
|
14 |
|
app/code/community/Eabi/Livehandler/etc/config.xml
CHANGED
@@ -2,30 +2,14 @@
|
|
2 |
<!--
|
3 |
/*
|
4 |
|
5 |
-
*
|
6 |
-
*
|
7 |
-
*
|
8 |
-
* This source file is subject to the Open Software License (OSL 3.0)
|
9 |
-
* or OpenGPL v3 license (GNU Public License V3.0)
|
10 |
-
* that is bundled with this package in the file LICENSE.txt.
|
11 |
-
* It is also available through the world-wide-web at this URL:
|
12 |
-
* http://opensource.org/licenses/osl-3.0.php
|
13 |
-
* or
|
14 |
-
* http://www.gnu.org/licenses/gpl-3.0.txt
|
15 |
-
* If you did not receive a copy of the license and are unable to
|
16 |
-
* obtain it through the world-wide-web, please send an email
|
17 |
-
* to info@e-abi.ee so we can send you a copy immediately.
|
18 |
-
*
|
19 |
-
* DISCLAIMER
|
20 |
-
*
|
21 |
-
* Do not edit or add to this file if you wish to upgrade this module to newer
|
22 |
-
* versions in the future.
|
23 |
*
|
24 |
* @category Eabi
|
25 |
-
* @package
|
26 |
-
* @copyright Copyright (c)
|
27 |
-
* @license http://
|
28 |
-
* @license http://www.gnu.org/licenses/gpl-3.0.txt GNU Public License V3.0
|
29 |
* @author Matis Halmann
|
30 |
*
|
31 |
|
2 |
<!--
|
3 |
/*
|
4 |
|
5 |
+
* Käesoleva loomingu autoriõigused kuuluvad Matis Halmannile ja Aktsiamaailm OU-le
|
6 |
+
* Litsentsitingimused on saadaval http://www.e-abi.ee/litsents
|
7 |
+
*
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8 |
*
|
9 |
* @category Eabi
|
10 |
+
* @package Eabi_Omniva
|
11 |
+
* @copyright Copyright (c) 2015 Aktsiamaailm LLC (http://en.e-abi.ee/)
|
12 |
+
* @license http://www.e-abi.ee/litsents
|
|
|
13 |
* @author Matis Halmann
|
14 |
*
|
15 |
|
app/code/community/Eabi/Livehandler/etc/system.xml
CHANGED
@@ -2,30 +2,14 @@
|
|
2 |
<!--
|
3 |
/*
|
4 |
|
5 |
-
*
|
6 |
-
*
|
7 |
-
*
|
8 |
-
* This source file is subject to the Open Software License (OSL 3.0)
|
9 |
-
* or OpenGPL v3 license (GNU Public License V3.0)
|
10 |
-
* that is bundled with this package in the file LICENSE.txt.
|
11 |
-
* It is also available through the world-wide-web at this URL:
|
12 |
-
* http://opensource.org/licenses/osl-3.0.php
|
13 |
-
* or
|
14 |
-
* http://www.gnu.org/licenses/gpl-3.0.txt
|
15 |
-
* If you did not receive a copy of the license and are unable to
|
16 |
-
* obtain it through the world-wide-web, please send an email
|
17 |
-
* to info@e-abi.ee so we can send you a copy immediately.
|
18 |
-
*
|
19 |
-
* DISCLAIMER
|
20 |
-
*
|
21 |
-
* Do not edit or add to this file if you wish to upgrade this module to newer
|
22 |
-
* versions in the future.
|
23 |
*
|
24 |
* @category Eabi
|
25 |
-
* @package
|
26 |
-
* @copyright Copyright (c)
|
27 |
-
* @license http://
|
28 |
-
* @license http://www.gnu.org/licenses/gpl-3.0.txt GNU Public License V3.0
|
29 |
* @author Matis Halmann
|
30 |
*
|
31 |
|
2 |
<!--
|
3 |
/*
|
4 |
|
5 |
+
* Käesoleva loomingu autoriõigused kuuluvad Matis Halmannile ja Aktsiamaailm OU-le
|
6 |
+
* Litsentsitingimused on saadaval http://www.e-abi.ee/litsents
|
7 |
+
*
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8 |
*
|
9 |
* @category Eabi
|
10 |
+
* @package Eabi_Omniva
|
11 |
+
* @copyright Copyright (c) 2015 Aktsiamaailm LLC (http://en.e-abi.ee/)
|
12 |
+
* @license http://www.e-abi.ee/litsents
|
|
|
13 |
* @author Matis Halmann
|
14 |
*
|
15 |
|
app/code/community/Eabi/Livehandler/sql/eabi_livehandler_setup/mysql4-install-0.1.0.php
CHANGED
@@ -1,30 +1,14 @@
|
|
1 |
<?php
|
2 |
/*
|
3 |
|
4 |
-
*
|
5 |
-
*
|
6 |
-
*
|
7 |
-
* This source file is subject to the Open Software License (OSL 3.0)
|
8 |
-
* or OpenGPL v3 license (GNU Public License V3.0)
|
9 |
-
* that is bundled with this package in the file LICENSE.txt.
|
10 |
-
* It is also available through the world-wide-web at this URL:
|
11 |
-
* http://opensource.org/licenses/osl-3.0.php
|
12 |
-
* or
|
13 |
-
* http://www.gnu.org/licenses/gpl-3.0.txt
|
14 |
-
* If you did not receive a copy of the license and are unable to
|
15 |
-
* obtain it through the world-wide-web, please send an email
|
16 |
-
* to info@e-abi.ee so we can send you a copy immediately.
|
17 |
-
*
|
18 |
-
* DISCLAIMER
|
19 |
-
*
|
20 |
-
* Do not edit or add to this file if you wish to upgrade this module to newer
|
21 |
-
* versions in the future.
|
22 |
*
|
23 |
* @category Eabi
|
24 |
-
* @package
|
25 |
-
* @copyright Copyright (c)
|
26 |
-
* @license http://
|
27 |
-
* @license http://www.gnu.org/licenses/gpl-3.0.txt GNU Public License V3.0
|
28 |
* @author Matis Halmann
|
29 |
*
|
30 |
|
1 |
<?php
|
2 |
/*
|
3 |
|
4 |
+
* Käesoleva loomingu autoriõigused kuuluvad Matis Halmannile ja Aktsiamaailm OU-le
|
5 |
+
* Litsentsitingimused on saadaval http://www.e-abi.ee/litsents
|
6 |
+
*
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7 |
*
|
8 |
* @category Eabi
|
9 |
+
* @package Eabi_Omniva
|
10 |
+
* @copyright Copyright (c) 2015 Aktsiamaailm LLC (http://en.e-abi.ee/)
|
11 |
+
* @license http://www.e-abi.ee/litsents
|
|
|
12 |
* @author Matis Halmann
|
13 |
*
|
14 |
|
app/code/community/Eabi/Livehandler/sql/eabi_livehandler_setup/mysql4-upgrade-0.1.0-0.1.1.php
CHANGED
@@ -1,30 +1,14 @@
|
|
1 |
<?php
|
2 |
/*
|
3 |
|
4 |
-
*
|
5 |
-
*
|
6 |
-
*
|
7 |
-
* This source file is subject to the Open Software License (OSL 3.0)
|
8 |
-
* or OpenGPL v3 license (GNU Public License V3.0)
|
9 |
-
* that is bundled with this package in the file LICENSE.txt.
|
10 |
-
* It is also available through the world-wide-web at this URL:
|
11 |
-
* http://opensource.org/licenses/osl-3.0.php
|
12 |
-
* or
|
13 |
-
* http://www.gnu.org/licenses/gpl-3.0.txt
|
14 |
-
* If you did not receive a copy of the license and are unable to
|
15 |
-
* obtain it through the world-wide-web, please send an email
|
16 |
-
* to info@e-abi.ee so we can send you a copy immediately.
|
17 |
-
*
|
18 |
-
* DISCLAIMER
|
19 |
-
*
|
20 |
-
* Do not edit or add to this file if you wish to upgrade this module to newer
|
21 |
-
* versions in the future.
|
22 |
*
|
23 |
* @category Eabi
|
24 |
-
* @package
|
25 |
-
* @copyright Copyright (c)
|
26 |
-
* @license http://
|
27 |
-
* @license http://www.gnu.org/licenses/gpl-3.0.txt GNU Public License V3.0
|
28 |
* @author Matis Halmann
|
29 |
*
|
30 |
|
1 |
<?php
|
2 |
/*
|
3 |
|
4 |
+
* Käesoleva loomingu autoriõigused kuuluvad Matis Halmannile ja Aktsiamaailm OU-le
|
5 |
+
* Litsentsitingimused on saadaval http://www.e-abi.ee/litsents
|
6 |
+
*
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7 |
*
|
8 |
* @category Eabi
|
9 |
+
* @package Eabi_Omniva
|
10 |
+
* @copyright Copyright (c) 2015 Aktsiamaailm LLC (http://en.e-abi.ee/)
|
11 |
+
* @license http://www.e-abi.ee/litsents
|
|
|
12 |
* @author Matis Halmann
|
13 |
*
|
14 |
|
app/code/community/Eabi/Livehandler/sql/eabi_livehandler_setup/mysql4-upgrade-0.1.8-0.1.9.php
CHANGED
@@ -2,30 +2,14 @@
|
|
2 |
|
3 |
/*
|
4 |
|
5 |
-
*
|
6 |
-
*
|
7 |
-
*
|
8 |
-
* This source file is subject to the Open Software License (OSL 3.0)
|
9 |
-
* or OpenGPL v3 license (GNU Public License V3.0)
|
10 |
-
* that is bundled with this package in the file LICENSE.txt.
|
11 |
-
* It is also available through the world-wide-web at this URL:
|
12 |
-
* http://opensource.org/licenses/osl-3.0.php
|
13 |
-
* or
|
14 |
-
* http://www.gnu.org/licenses/gpl-3.0.txt
|
15 |
-
* If you did not receive a copy of the license and are unable to
|
16 |
-
* obtain it through the world-wide-web, please send an email
|
17 |
-
* to info@e-abi.ee so we can send you a copy immediately.
|
18 |
-
*
|
19 |
-
* DISCLAIMER
|
20 |
-
*
|
21 |
-
* Do not edit or add to this file if you wish to upgrade this module to newer
|
22 |
-
* versions in the future.
|
23 |
*
|
24 |
* @category Eabi
|
25 |
-
* @package
|
26 |
-
* @copyright Copyright (c)
|
27 |
-
* @license http://
|
28 |
-
* @license http://www.gnu.org/licenses/gpl-3.0.txt GNU Public License V3.0
|
29 |
* @author Matis Halmann
|
30 |
*
|
31 |
|
2 |
|
3 |
/*
|
4 |
|
5 |
+
* Käesoleva loomingu autoriõigused kuuluvad Matis Halmannile ja Aktsiamaailm OU-le
|
6 |
+
* Litsentsitingimused on saadaval http://www.e-abi.ee/litsents
|
7 |
+
*
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8 |
*
|
9 |
* @category Eabi
|
10 |
+
* @package Eabi_Omniva
|
11 |
+
* @copyright Copyright (c) 2015 Aktsiamaailm LLC (http://en.e-abi.ee/)
|
12 |
+
* @license http://www.e-abi.ee/litsents
|
|
|
13 |
* @author Matis Halmann
|
14 |
*
|
15 |
|
app/design/adminhtml/default/default/layout/eabi_livehandler.xml
CHANGED
@@ -2,30 +2,14 @@
|
|
2 |
<!--
|
3 |
/*
|
4 |
|
5 |
-
*
|
6 |
-
*
|
7 |
-
*
|
8 |
-
* This source file is subject to the Open Software License (OSL 3.0)
|
9 |
-
* or OpenGPL v3 license (GNU Public License V3.0)
|
10 |
-
* that is bundled with this package in the file LICENSE.txt.
|
11 |
-
* It is also available through the world-wide-web at this URL:
|
12 |
-
* http://opensource.org/licenses/osl-3.0.php
|
13 |
-
* or
|
14 |
-
* http://www.gnu.org/licenses/gpl-3.0.txt
|
15 |
-
* If you did not receive a copy of the license and are unable to
|
16 |
-
* obtain it through the world-wide-web, please send an email
|
17 |
-
* to info@e-abi.ee so we can send you a copy immediately.
|
18 |
-
*
|
19 |
-
* DISCLAIMER
|
20 |
-
*
|
21 |
-
* Do not edit or add to this file if you wish to upgrade this module to newer
|
22 |
-
* versions in the future.
|
23 |
*
|
24 |
* @category Eabi
|
25 |
-
* @package
|
26 |
-
* @copyright Copyright (c)
|
27 |
-
* @license http://
|
28 |
-
* @license http://www.gnu.org/licenses/gpl-3.0.txt GNU Public License V3.0
|
29 |
* @author Matis Halmann
|
30 |
*
|
31 |
|
2 |
<!--
|
3 |
/*
|
4 |
|
5 |
+
* Käesoleva loomingu autoriõigused kuuluvad Matis Halmannile ja Aktsiamaailm OU-le
|
6 |
+
* Litsentsitingimused on saadaval http://www.e-abi.ee/litsents
|
7 |
+
*
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8 |
*
|
9 |
* @category Eabi
|
10 |
+
* @package Eabi_Omniva
|
11 |
+
* @copyright Copyright (c) 2015 Aktsiamaailm LLC (http://en.e-abi.ee/)
|
12 |
+
* @license http://www.e-abi.ee/litsents
|
|
|
13 |
* @author Matis Halmann
|
14 |
*
|
15 |
|
app/design/frontend/base/default/layout/eabi_livehandler.xml
CHANGED
@@ -2,30 +2,14 @@
|
|
2 |
<!--
|
3 |
/*
|
4 |
|
5 |
-
*
|
6 |
-
*
|
7 |
-
*
|
8 |
-
* This source file is subject to the Open Software License (OSL 3.0)
|
9 |
-
* or OpenGPL v3 license (GNU Public License V3.0)
|
10 |
-
* that is bundled with this package in the file LICENSE.txt.
|
11 |
-
* It is also available through the world-wide-web at this URL:
|
12 |
-
* http://opensource.org/licenses/osl-3.0.php
|
13 |
-
* or
|
14 |
-
* http://www.gnu.org/licenses/gpl-3.0.txt
|
15 |
-
* If you did not receive a copy of the license and are unable to
|
16 |
-
* obtain it through the world-wide-web, please send an email
|
17 |
-
* to info@e-abi.ee so we can send you a copy immediately.
|
18 |
-
*
|
19 |
-
* DISCLAIMER
|
20 |
-
*
|
21 |
-
* Do not edit or add to this file if you wish to upgrade this module to newer
|
22 |
-
* versions in the future.
|
23 |
*
|
24 |
* @category Eabi
|
25 |
-
* @package
|
26 |
-
* @copyright Copyright (c)
|
27 |
-
* @license http://
|
28 |
-
* @license http://www.gnu.org/licenses/gpl-3.0.txt GNU Public License V3.0
|
29 |
* @author Matis Halmann
|
30 |
*
|
31 |
|
2 |
<!--
|
3 |
/*
|
4 |
|
5 |
+
* Käesoleva loomingu autoriõigused kuuluvad Matis Halmannile ja Aktsiamaailm OU-le
|
6 |
+
* Litsentsitingimused on saadaval http://www.e-abi.ee/litsents
|
7 |
+
*
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8 |
*
|
9 |
* @category Eabi
|
10 |
+
* @package Eabi_Omniva
|
11 |
+
* @copyright Copyright (c) 2015 Aktsiamaailm LLC (http://en.e-abi.ee/)
|
12 |
+
* @license http://www.e-abi.ee/litsents
|
|
|
13 |
* @author Matis Halmann
|
14 |
*
|
15 |
|
app/design/frontend/base/default/template/eabi_livehandler/email.phtml
CHANGED
@@ -1,30 +1,14 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
*
|
4 |
-
*
|
5 |
-
*
|
6 |
-
*
|
7 |
-
* This source file is subject to the Open Software License (OSL 3.0)
|
8 |
-
* or OpenGPL v3 license (GNU Public License V3.0)
|
9 |
-
* that is bundled with this package in the file LICENSE.txt.
|
10 |
-
* It is also available through the world-wide-web at this URL:
|
11 |
-
* http://opensource.org/licenses/osl-3.0.php
|
12 |
-
* or
|
13 |
-
* http://www.gnu.org/licenses/gpl-3.0.txt
|
14 |
-
* If you did not receive a copy of the license and are unable to
|
15 |
-
* obtain it through the world-wide-web, please send an email
|
16 |
-
* to info@e-abi.ee so we can send you a copy immediately.
|
17 |
-
*
|
18 |
-
* DISCLAIMER
|
19 |
-
*
|
20 |
-
* Do not edit or add to this file if you wish to upgrade this module to newer
|
21 |
-
* versions in the future.
|
22 |
*
|
23 |
* @category Eabi
|
24 |
-
* @package
|
25 |
-
* @copyright Copyright (c)
|
26 |
-
* @license http://
|
27 |
-
* @license http://www.gnu.org/licenses/gpl-3.0.txt GNU Public License V3.0
|
28 |
* @author Matis Halmann
|
29 |
*
|
30 |
|
1 |
<?php
|
2 |
/**
|
3 |
*
|
4 |
+
* Käesoleva loomingu autoriõigused kuuluvad Matis Halmannile ja Aktsiamaailm OU-le
|
5 |
+
* Litsentsitingimused on saadaval http://www.e-abi.ee/litsents
|
6 |
+
*
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7 |
*
|
8 |
* @category Eabi
|
9 |
+
* @package Eabi_Omniva
|
10 |
+
* @copyright Copyright (c) 2015 Aktsiamaailm LLC (http://en.e-abi.ee/)
|
11 |
+
* @license http://www.e-abi.ee/litsents
|
|
|
12 |
* @author Matis Halmann
|
13 |
*
|
14 |
|
app/design/frontend/default/default/layout/eabi_livehandler.xml
CHANGED
@@ -2,30 +2,14 @@
|
|
2 |
<!--
|
3 |
/*
|
4 |
|
5 |
-
*
|
6 |
-
*
|
7 |
-
*
|
8 |
-
* This source file is subject to the Open Software License (OSL 3.0)
|
9 |
-
* or OpenGPL v3 license (GNU Public License V3.0)
|
10 |
-
* that is bundled with this package in the file LICENSE.txt.
|
11 |
-
* It is also available through the world-wide-web at this URL:
|
12 |
-
* http://opensource.org/licenses/osl-3.0.php
|
13 |
-
* or
|
14 |
-
* http://www.gnu.org/licenses/gpl-3.0.txt
|
15 |
-
* If you did not receive a copy of the license and are unable to
|
16 |
-
* obtain it through the world-wide-web, please send an email
|
17 |
-
* to info@e-abi.ee so we can send you a copy immediately.
|
18 |
-
*
|
19 |
-
* DISCLAIMER
|
20 |
-
*
|
21 |
-
* Do not edit or add to this file if you wish to upgrade this module to newer
|
22 |
-
* versions in the future.
|
23 |
*
|
24 |
* @category Eabi
|
25 |
-
* @package
|
26 |
-
* @copyright Copyright (c)
|
27 |
-
* @license http://
|
28 |
-
* @license http://www.gnu.org/licenses/gpl-3.0.txt GNU Public License V3.0
|
29 |
* @author Matis Halmann
|
30 |
*
|
31 |
|
2 |
<!--
|
3 |
/*
|
4 |
|
5 |
+
* Käesoleva loomingu autoriõigused kuuluvad Matis Halmannile ja Aktsiamaailm OU-le
|
6 |
+
* Litsentsitingimused on saadaval http://www.e-abi.ee/litsents
|
7 |
+
*
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8 |
*
|
9 |
* @category Eabi
|
10 |
+
* @package Eabi_Omniva
|
11 |
+
* @copyright Copyright (c) 2015 Aktsiamaailm LLC (http://en.e-abi.ee/)
|
12 |
+
* @license http://www.e-abi.ee/litsents
|
|
|
13 |
* @author Matis Halmann
|
14 |
*
|
15 |
|
app/etc/modules/Eabi_Livehandler.xml
CHANGED
@@ -2,30 +2,14 @@
|
|
2 |
<!--
|
3 |
/*
|
4 |
|
5 |
-
*
|
6 |
-
*
|
7 |
-
*
|
8 |
-
* This source file is subject to the Open Software License (OSL 3.0)
|
9 |
-
* or OpenGPL v3 license (GNU Public License V3.0)
|
10 |
-
* that is bundled with this package in the file LICENSE.txt.
|
11 |
-
* It is also available through the world-wide-web at this URL:
|
12 |
-
* http://opensource.org/licenses/osl-3.0.php
|
13 |
-
* or
|
14 |
-
* http://www.gnu.org/licenses/gpl-3.0.txt
|
15 |
-
* If you did not receive a copy of the license and are unable to
|
16 |
-
* obtain it through the world-wide-web, please send an email
|
17 |
-
* to info@e-abi.ee so we can send you a copy immediately.
|
18 |
-
*
|
19 |
-
* DISCLAIMER
|
20 |
-
*
|
21 |
-
* Do not edit or add to this file if you wish to upgrade this module to newer
|
22 |
-
* versions in the future.
|
23 |
*
|
24 |
* @category Eabi
|
25 |
-
* @package
|
26 |
-
* @copyright Copyright (c)
|
27 |
-
* @license http://
|
28 |
-
* @license http://www.gnu.org/licenses/gpl-3.0.txt GNU Public License V3.0
|
29 |
* @author Matis Halmann
|
30 |
*
|
31 |
|
2 |
<!--
|
3 |
/*
|
4 |
|
5 |
+
* Käesoleva loomingu autoriõigused kuuluvad Matis Halmannile ja Aktsiamaailm OU-le
|
6 |
+
* Litsentsitingimused on saadaval http://www.e-abi.ee/litsents
|
7 |
+
*
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8 |
*
|
9 |
* @category Eabi
|
10 |
+
* @package Eabi_Omniva
|
11 |
+
* @copyright Copyright (c) 2015 Aktsiamaailm LLC (http://en.e-abi.ee/)
|
12 |
+
* @license http://www.e-abi.ee/litsents
|
|
|
13 |
* @author Matis Halmann
|
14 |
*
|
15 |
|
package.xml
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Eabi_Livehandler</name>
|
4 |
-
<version>0.1.
|
5 |
<stability>stable</stability>
|
6 |
<license uri="http://opensource.org/licenses/osl-3.0.php">OSL 3.0</license>
|
7 |
<channel>community</channel>
|
@@ -12,12 +12,11 @@
|
|
12 |
<p>You can navigate between orders by pressing directional keys or by pressing left/right icons on the order view</p>
|
13 |
<p>Possibility to create your own action buttons, which allows to save lots of time when managing orders</p>
|
14 |
<p>Possibility to purchase action buttons like <strong>Add order comment</strong>, <strong>Create invoice</strong>, <strong>Ship order</strong> and more</p></description>
|
15 |
-
<notes>-
|
16 |
-
- Fixed compatiblity with getBarcodeFunction on E-Abi shipping modules in a way that packing slip could be printed, when barcodes are returned as array</notes>
|
17 |
<authors><author><name>Matis Matis</name><user>auto-converted</user><email>info@e-abi.ee</email></author></authors>
|
18 |
-
<date>
|
19 |
-
<time>18:
|
20 |
-
<contents><target name="magecommunity"><dir name="Eabi"><dir name="Livehandler"><dir name="Block"><dir name="Adminhtml"><dir name="Config"><dir name="Form"><dir name="Field"><file name="Button.php" hash="
|
21 |
<compatible/>
|
22 |
<dependencies/>
|
23 |
</package>
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Eabi_Livehandler</name>
|
4 |
+
<version>0.1.10</version>
|
5 |
<stability>stable</stability>
|
6 |
<license uri="http://opensource.org/licenses/osl-3.0.php">OSL 3.0</license>
|
7 |
<channel>community</channel>
|
12 |
<p>You can navigate between orders by pressing directional keys or by pressing left/right icons on the order view</p>
|
13 |
<p>Possibility to create your own action buttons, which allows to save lots of time when managing orders</p>
|
14 |
<p>Possibility to purchase action buttons like <strong>Add order comment</strong>, <strong>Create invoice</strong>, <strong>Ship order</strong> and more</p></description>
|
15 |
+
<notes>- Improved compatibility after SUPEE-6285 patch</notes>
|
|
|
16 |
<authors><author><name>Matis Matis</name><user>auto-converted</user><email>info@e-abi.ee</email></author></authors>
|
17 |
+
<date>2015-07-15</date>
|
18 |
+
<time>18:42:38</time>
|
19 |
+
<contents><target name="magecommunity"><dir name="Eabi"><dir name="Livehandler"><dir name="Block"><dir name="Adminhtml"><dir name="Config"><dir name="Form"><dir name="Field"><file name="Button.php" hash="cd9396855e5a2c904e694a37db83105f"/><file name="Remove.php" hash="9963e6af5ac045620aba8a3e238f14af"/></dir></dir></dir></dir><file name="Email.php" hash="a04682f48d3b1fc711bf96d9ddfcff40"/><file name="Footer.php" hash="14572d8db2704c26431f79940ebe06ec"/></dir><dir name="Helper"><file name="Data.php" hash="f1e23d15d70bd1365e9bdb4bcd03f870"/><file name="Keypair.php" hash="a301d4a3dba7944a3ccd6a98fb3d6b79"/></dir><dir name="Model"><dir name="Action"><dir name="Postoffice"><file name="Print.php" hash="5dcba7f3075c16693a347b963f1926d9"/><file name="Send.php" hash="13525997656d7133603d51d16700d4d2"/></dir><file name="Abstract.php" hash="16854cbb76130d0bf73dfcee19ed2117"/></dir><dir name="Adminhtml"><file name="Gridmanager.php" hash="1fcaf5b09656ed7f1839cb8465294307"/></dir><dir name="Directory"><file name="Collection.php" hash="2dd6348c88b75c6878125fd7fcc03ed2"/></dir><dir name="File"><file name="Object.php" hash="71f556d09f6c0f150b3fad3592a58aad"/></dir><dir name="Mysql4"><dir name="Entry"><file name="Collection.php" hash="b8d1c278a405a38e023162bc2e985ebd"/></dir><file name="Entry.php" hash="5ff2bf3fae94eb8dc66790a53381a4ab"/></dir><dir name="System"><dir name="Config"><dir name="Backend"><file name="Button.php" hash="efa0c9dc253a9e98fe6f49d1383e22fa"/></dir></dir></dir><file name="Abstract.php" hash="892b4862edccedcbdb14401679656109"/><file name="Entry.php" hash="54de0183d4682f1dc64f4c5447ff784a"/><file name="Ordergrid.php" hash="6a38d3ccf06a0cca0a7e1f2400265314"/></dir><dir name="controllers"><dir name="Adminhtml"><file name="LivehandlerController.php" hash="e21739b334d2b320f67115f908953b24"/><file name="RemoveController.php" hash="df97e3b7ecabca9679ffb52044702820"/></dir><file name="IndexController.php" hash="f1d41f0bf27b727e1f3f9b25d198b3d2"/></dir><dir name="etc"><file name="config.xml" hash="0aaedcd9d8c04279be7a16d5bf4b6315"/><file name="system.xml" hash="1acfaee90f6f3986deb8076ee3c6e4a3"/></dir><dir name="sql"><dir name="eabi_livehandler_setup"><file name="mysql4-install-0.1.0.php" hash="89140544461929ea36974874dfe64d86"/><file name="mysql4-upgrade-0.1.0-0.1.1.php" hash="7ed0cdc822f49bb9c7e73f52724bca92"/><file name="mysql4-upgrade-0.1.8-0.1.9.php" hash="85dc179849746fd475da4c221856e1c1"/></dir></dir><file name="CHANGELOG.txt" hash="b75f561b3c7624cc4ae799e74b71a611"/><file name="LICENCE.txt" hash="7a9e279147a63af4f63a16ca67fae07b"/></dir></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="eabi_livehandler.xml" hash="a0aa6385b75ce5b2cf5bedb9eaf6ccb6"/></dir></dir></dir></dir><dir name="frontend"><dir name="default"><dir name="default"><dir name="layout"><file name="eabi_livehandler.xml" hash="d972d18e9bb1fe97d1949bb293d742e2"/></dir></dir></dir><dir name="base"><dir name="default"><dir name="layout"><file name="eabi_livehandler.xml" hash="d972d18e9bb1fe97d1949bb293d742e2"/></dir><dir name="template"><dir name="eabi_livehandler"><file name="email.phtml" hash="7e47cb473cdef8e2583e248616b782e8"/></dir></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Eabi_Livehandler.xml" hash="8e0e2306ff1c8169ada5389bf124842d"/></dir></target><target name="magelocale"><dir name="en_US"><file name="Eabi_Livehandler.csv" hash="ad0836f450de2d09c67be6d469059f00"/></dir><dir name="et_EE"><file name="Eabi_Livehandler.csv" hash="b4eda88fc7029e1cb1966e857c993732"/></dir><dir name="fi_FI"><file name="Eabi_Livehandler.csv" hash="ad0836f450de2d09c67be6d469059f00"/></dir><dir name="lt_LT"><file name="Eabi_Livehandler.csv" hash="ad0836f450de2d09c67be6d469059f00"/></dir><dir name="sv_SE"><file name="Eabi_Livehandler.csv" hash="f4c1547b19391dbc20036e7a400ea8d4"/></dir></target><target name="mageskin"><dir name="adminhtml"><dir name="default"><dir name="default"><file name="eabi_admintools.css" hash="0868ed1bfcc8afff6643d5a3b8aab5b9"/></dir></dir></dir></target><target name="mageweb"><dir name="js"><dir name="eabi_js"><file name="crossBrowser_initKeyboardEvent.js" hash="8600c5536225fd70c56ef313ee430e08"/></dir><dir name="livepipe"><file name="contextmenu.js" hash="a5dbab9663d94d9d848e84b524c1f925"/><file name="cookie.js" hash="eab2042ac637aec7777c7c64e3e2bb1a"/><file name="event_behavior.js" hash="a59a00ad652efb1596b5bd2e6f5cfe48"/><file name="hotkey.js" hash="c6193fc03e4cd4c94ee4fb37e3d5ed6b"/><file name="livepipe.js" hash="6e569402b2686976e7390f0b7a25b1eb"/><file name="progressbar.js" hash="69719eccbecbc0378d9919c53a3ef7dd"/><file name="rating.js" hash="adb5ce773c37b40fb590a877d949be7a"/><file name="resizable.js" hash="38fd18daa37e5612495cc7b42fd32b3d"/><file name="scrollbar.js" hash="7a2603c2107944b8a70e41e7a84133ba"/><file name="selection.js" hash="3f48981cccffdb5fcc5f5ff27d0b0b68"/><file name="selectmultiple.js" hash="d8f044eb344061bdcce405f671b15654"/><file name="tabs.js" hash="22abb9a3ec3933d54ff9ede0338ca7f3"/><file name="textarea.js" hash="9825782bf78d38efa53200a206d8cd77"/><file name="window.js" hash="f6eba488d6a80e05f59d97a0cef59730"/></dir></dir></target></contents>
|
20 |
<compatible/>
|
21 |
<dependencies/>
|
22 |
</package>
|