Version Notes
- Implemented logger class
Download this release
Release Info
Developer | Magento Core Team |
Extension | Eabi_Livehandler |
Version | 0.1.11 |
Comparing to | |
See all releases |
Code changes from version 0.1.10 to 0.1.11
- app/code/community/Eabi/Livehandler/Block/Adminhtml/Config/Form/Field/Button.php +21 -5
- app/code/community/Eabi/Livehandler/Block/Adminhtml/Config/Form/Field/Remove.php +21 -5
- app/code/community/Eabi/Livehandler/Block/Email.php +21 -5
- app/code/community/Eabi/Livehandler/Block/Footer.php +21 -5
- app/code/community/Eabi/Livehandler/CHANGELOG.txt +6 -0
- app/code/community/Eabi/Livehandler/Helper/Data.php +29 -5
- app/code/community/Eabi/Livehandler/Helper/Keypair.php +21 -5
- app/code/community/Eabi/Livehandler/Model/Abstract.php +21 -5
- app/code/community/Eabi/Livehandler/Model/Action/Abstract.php +21 -5
- app/code/community/Eabi/Livehandler/Model/Action/Postoffice/Print.php +21 -5
- app/code/community/Eabi/Livehandler/Model/Action/Postoffice/Send.php +21 -5
- app/code/community/Eabi/Livehandler/Model/Adminhtml/Gridmanager.php +21 -5
- app/code/community/Eabi/Livehandler/Model/Directory/Collection.php +21 -5
- app/code/community/Eabi/Livehandler/Model/Entry.php +21 -5
- app/code/community/Eabi/Livehandler/Model/File/Object.php +21 -5
- app/code/community/Eabi/Livehandler/Model/Logger.php +362 -0
- app/code/community/Eabi/Livehandler/Model/Mysql4/Entry.php +21 -5
- app/code/community/Eabi/Livehandler/Model/Mysql4/Entry/Collection.php +21 -5
- app/code/community/Eabi/Livehandler/Model/Ordergrid.php +21 -5
- app/code/community/Eabi/Livehandler/Model/Source/Log.php +85 -0
- app/code/community/Eabi/Livehandler/Model/System/Config/Backend/Button.php +21 -5
- app/code/community/Eabi/Livehandler/controllers/Adminhtml/LivehandlerController.php +21 -5
- app/code/community/Eabi/Livehandler/controllers/Adminhtml/RemoveController.php +21 -5
- app/code/community/Eabi/Livehandler/controllers/IndexController.php +21 -5
- app/code/community/Eabi/Livehandler/etc/config.xml +22 -6
- app/code/community/Eabi/Livehandler/etc/system.xml +21 -5
- app/code/community/Eabi/Livehandler/sql/eabi_livehandler_setup/mysql4-install-0.1.0.php +21 -5
- app/code/community/Eabi/Livehandler/sql/eabi_livehandler_setup/mysql4-upgrade-0.1.0-0.1.1.php +21 -5
- app/code/community/Eabi/Livehandler/sql/eabi_livehandler_setup/mysql4-upgrade-0.1.8-0.1.9.php +21 -5
- app/design/adminhtml/default/default/layout/eabi_livehandler.xml +21 -5
- app/design/frontend/base/default/layout/eabi_livehandler.xml +21 -5
- app/design/frontend/base/default/template/eabi_livehandler/email.phtml +21 -5
- app/design/frontend/default/default/layout/eabi_livehandler.xml +21 -5
- app/etc/modules/Eabi_Livehandler.xml +22 -6
- package.xml +5 -5
app/code/community/Eabi/Livehandler/Block/Adminhtml/Config/Form/Field/Button.php
CHANGED
@@ -1,14 +1,30 @@
|
|
1 |
<?php
|
2 |
/*
|
3 |
|
4 |
-
*
|
5 |
-
*
|
6 |
-
*
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7 |
*
|
8 |
* @category Eabi
|
9 |
-
* @package
|
10 |
* @copyright Copyright (c) 2015 Aktsiamaailm LLC (http://en.e-abi.ee/)
|
11 |
-
* @license http://
|
|
|
12 |
* @author Matis Halmann
|
13 |
*
|
14 |
|
1 |
<?php
|
2 |
/*
|
3 |
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
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 Eabi_Livehandler
|
25 |
* @copyright Copyright (c) 2015 Aktsiamaailm LLC (http://en.e-abi.ee/)
|
26 |
+
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
27 |
+
* @license http://www.gnu.org/licenses/gpl-3.0.txt GNU Public License V3.0
|
28 |
* @author Matis Halmann
|
29 |
*
|
30 |
|
app/code/community/Eabi/Livehandler/Block/Adminhtml/Config/Form/Field/Remove.php
CHANGED
@@ -1,14 +1,30 @@
|
|
1 |
<?php
|
2 |
/*
|
3 |
|
4 |
-
*
|
5 |
-
*
|
6 |
-
*
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7 |
*
|
8 |
* @category Eabi
|
9 |
-
* @package
|
10 |
* @copyright Copyright (c) 2015 Aktsiamaailm LLC (http://en.e-abi.ee/)
|
11 |
-
* @license http://
|
|
|
12 |
* @author Matis Halmann
|
13 |
*
|
14 |
|
1 |
<?php
|
2 |
/*
|
3 |
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
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 Eabi_Livehandler
|
25 |
* @copyright Copyright (c) 2015 Aktsiamaailm LLC (http://en.e-abi.ee/)
|
26 |
+
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
27 |
+
* @license http://www.gnu.org/licenses/gpl-3.0.txt GNU Public License V3.0
|
28 |
* @author Matis Halmann
|
29 |
*
|
30 |
|
app/code/community/Eabi/Livehandler/Block/Email.php
CHANGED
@@ -2,14 +2,30 @@
|
|
2 |
|
3 |
/*
|
4 |
|
5 |
-
*
|
6 |
-
*
|
7 |
-
*
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8 |
*
|
9 |
* @category Eabi
|
10 |
-
* @package
|
11 |
* @copyright Copyright (c) 2015 Aktsiamaailm LLC (http://en.e-abi.ee/)
|
12 |
-
* @license http://
|
|
|
13 |
* @author Matis Halmann
|
14 |
*
|
15 |
|
2 |
|
3 |
/*
|
4 |
|
5 |
+
*
|
6 |
+
* NOTICE OF LICENSE
|
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 Eabi_Livehandler
|
26 |
* @copyright Copyright (c) 2015 Aktsiamaailm LLC (http://en.e-abi.ee/)
|
27 |
+
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
28 |
+
* @license http://www.gnu.org/licenses/gpl-3.0.txt GNU Public License V3.0
|
29 |
* @author Matis Halmann
|
30 |
*
|
31 |
|
app/code/community/Eabi/Livehandler/Block/Footer.php
CHANGED
@@ -1,14 +1,30 @@
|
|
1 |
<?php
|
2 |
/*
|
3 |
|
4 |
-
*
|
5 |
-
*
|
6 |
-
*
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7 |
*
|
8 |
* @category Eabi
|
9 |
-
* @package
|
10 |
* @copyright Copyright (c) 2015 Aktsiamaailm LLC (http://en.e-abi.ee/)
|
11 |
-
* @license http://
|
|
|
12 |
* @author Matis Halmann
|
13 |
*
|
14 |
|
1 |
<?php
|
2 |
/*
|
3 |
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
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 Eabi_Livehandler
|
25 |
* @copyright Copyright (c) 2015 Aktsiamaailm LLC (http://en.e-abi.ee/)
|
26 |
+
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
27 |
+
* @license http://www.gnu.org/licenses/gpl-3.0.txt GNU Public License V3.0
|
28 |
* @author Matis Halmann
|
29 |
*
|
30 |
|
app/code/community/Eabi/Livehandler/CHANGELOG.txt
CHANGED
@@ -27,3 +27,9 @@
|
|
27 |
- Added support to activate licenses on some E-Abi Shipping and Payment modules
|
28 |
- Fixed compatiblity with getBarcodeFunction on E-Abi shipping modules in a way that packing slip could be printed, when barcodes are returned as array
|
29 |
|
|
|
|
|
|
|
|
|
|
|
|
27 |
- Added support to activate licenses on some E-Abi Shipping and Payment modules
|
28 |
- Fixed compatiblity with getBarcodeFunction on E-Abi shipping modules in a way that packing slip could be printed, when barcodes are returned as array
|
29 |
|
30 |
+
0.1.10
|
31 |
+
- Improved compatibility after SUPEE-6285 patch
|
32 |
+
|
33 |
+
|
34 |
+
0.1.11
|
35 |
+
- Implemented logger class
|
app/code/community/Eabi/Livehandler/Helper/Data.php
CHANGED
@@ -1,14 +1,30 @@
|
|
1 |
<?php
|
2 |
/*
|
3 |
|
4 |
-
*
|
5 |
-
*
|
6 |
-
*
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7 |
*
|
8 |
* @category Eabi
|
9 |
-
* @package
|
10 |
* @copyright Copyright (c) 2015 Aktsiamaailm LLC (http://en.e-abi.ee/)
|
11 |
-
* @license http://
|
|
|
12 |
* @author Matis Halmann
|
13 |
*
|
14 |
|
@@ -181,6 +197,14 @@ class Eabi_Livehandler_Helper_Data extends Mage_Core_Helper_Abstract {
|
|
181 |
return $urls;
|
182 |
}
|
183 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
184 |
/**
|
185 |
*
|
186 |
* @return Mage_Core_Model_Config_Data
|
1 |
<?php
|
2 |
/*
|
3 |
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
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 Eabi_Livehandler
|
25 |
* @copyright Copyright (c) 2015 Aktsiamaailm LLC (http://en.e-abi.ee/)
|
26 |
+
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
27 |
+
* @license http://www.gnu.org/licenses/gpl-3.0.txt GNU Public License V3.0
|
28 |
* @author Matis Halmann
|
29 |
*
|
30 |
|
197 |
return $urls;
|
198 |
}
|
199 |
|
200 |
+
/**
|
201 |
+
*
|
202 |
+
* @return Eabi_Livehandler_Model_Logger
|
203 |
+
*/
|
204 |
+
public function getEabiLogger() {
|
205 |
+
return Mage::getSingleton('eabi_livehandler/logger');
|
206 |
+
}
|
207 |
+
|
208 |
/**
|
209 |
*
|
210 |
* @return Mage_Core_Model_Config_Data
|
app/code/community/Eabi/Livehandler/Helper/Keypair.php
CHANGED
@@ -2,14 +2,30 @@
|
|
2 |
|
3 |
/*
|
4 |
|
5 |
-
*
|
6 |
-
*
|
7 |
-
*
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8 |
*
|
9 |
* @category Eabi
|
10 |
-
* @package
|
11 |
* @copyright Copyright (c) 2015 Aktsiamaailm LLC (http://en.e-abi.ee/)
|
12 |
-
* @license http://
|
|
|
13 |
* @author Matis Halmann
|
14 |
*
|
15 |
|
2 |
|
3 |
/*
|
4 |
|
5 |
+
*
|
6 |
+
* NOTICE OF LICENSE
|
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 Eabi_Livehandler
|
26 |
* @copyright Copyright (c) 2015 Aktsiamaailm LLC (http://en.e-abi.ee/)
|
27 |
+
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
28 |
+
* @license http://www.gnu.org/licenses/gpl-3.0.txt GNU Public License V3.0
|
29 |
* @author Matis Halmann
|
30 |
*
|
31 |
|
app/code/community/Eabi/Livehandler/Model/Abstract.php
CHANGED
@@ -1,14 +1,30 @@
|
|
1 |
<?php
|
2 |
/*
|
3 |
|
4 |
-
*
|
5 |
-
*
|
6 |
-
*
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7 |
*
|
8 |
* @category Eabi
|
9 |
-
* @package
|
10 |
* @copyright Copyright (c) 2015 Aktsiamaailm LLC (http://en.e-abi.ee/)
|
11 |
-
* @license http://
|
|
|
12 |
* @author Matis Halmann
|
13 |
*
|
14 |
|
1 |
<?php
|
2 |
/*
|
3 |
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
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 Eabi_Livehandler
|
25 |
* @copyright Copyright (c) 2015 Aktsiamaailm LLC (http://en.e-abi.ee/)
|
26 |
+
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
27 |
+
* @license http://www.gnu.org/licenses/gpl-3.0.txt GNU Public License V3.0
|
28 |
* @author Matis Halmann
|
29 |
*
|
30 |
|
app/code/community/Eabi/Livehandler/Model/Action/Abstract.php
CHANGED
@@ -1,14 +1,30 @@
|
|
1 |
<?php
|
2 |
/*
|
3 |
|
4 |
-
*
|
5 |
-
*
|
6 |
-
*
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7 |
*
|
8 |
* @category Eabi
|
9 |
-
* @package
|
10 |
* @copyright Copyright (c) 2015 Aktsiamaailm LLC (http://en.e-abi.ee/)
|
11 |
-
* @license http://
|
|
|
12 |
* @author Matis Halmann
|
13 |
*
|
14 |
|
1 |
<?php
|
2 |
/*
|
3 |
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
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 Eabi_Livehandler
|
25 |
* @copyright Copyright (c) 2015 Aktsiamaailm LLC (http://en.e-abi.ee/)
|
26 |
+
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
27 |
+
* @license http://www.gnu.org/licenses/gpl-3.0.txt GNU Public License V3.0
|
28 |
* @author Matis Halmann
|
29 |
*
|
30 |
|
app/code/community/Eabi/Livehandler/Model/Action/Postoffice/Print.php
CHANGED
@@ -2,14 +2,30 @@
|
|
2 |
|
3 |
/*
|
4 |
|
5 |
-
*
|
6 |
-
*
|
7 |
-
*
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8 |
*
|
9 |
* @category Eabi
|
10 |
-
* @package
|
11 |
* @copyright Copyright (c) 2015 Aktsiamaailm LLC (http://en.e-abi.ee/)
|
12 |
-
* @license http://
|
|
|
13 |
* @author Matis Halmann
|
14 |
*
|
15 |
|
2 |
|
3 |
/*
|
4 |
|
5 |
+
*
|
6 |
+
* NOTICE OF LICENSE
|
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 Eabi_Livehandler
|
26 |
* @copyright Copyright (c) 2015 Aktsiamaailm LLC (http://en.e-abi.ee/)
|
27 |
+
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
28 |
+
* @license http://www.gnu.org/licenses/gpl-3.0.txt GNU Public License V3.0
|
29 |
* @author Matis Halmann
|
30 |
*
|
31 |
|
app/code/community/Eabi/Livehandler/Model/Action/Postoffice/Send.php
CHANGED
@@ -2,14 +2,30 @@
|
|
2 |
|
3 |
/*
|
4 |
|
5 |
-
*
|
6 |
-
*
|
7 |
-
*
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8 |
*
|
9 |
* @category Eabi
|
10 |
-
* @package
|
11 |
* @copyright Copyright (c) 2015 Aktsiamaailm LLC (http://en.e-abi.ee/)
|
12 |
-
* @license http://
|
|
|
13 |
* @author Matis Halmann
|
14 |
*
|
15 |
|
2 |
|
3 |
/*
|
4 |
|
5 |
+
*
|
6 |
+
* NOTICE OF LICENSE
|
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 Eabi_Livehandler
|
26 |
* @copyright Copyright (c) 2015 Aktsiamaailm LLC (http://en.e-abi.ee/)
|
27 |
+
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
28 |
+
* @license http://www.gnu.org/licenses/gpl-3.0.txt GNU Public License V3.0
|
29 |
* @author Matis Halmann
|
30 |
*
|
31 |
|
app/code/community/Eabi/Livehandler/Model/Adminhtml/Gridmanager.php
CHANGED
@@ -1,14 +1,30 @@
|
|
1 |
<?php
|
2 |
/*
|
3 |
|
4 |
-
*
|
5 |
-
*
|
6 |
-
*
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7 |
*
|
8 |
* @category Eabi
|
9 |
-
* @package
|
10 |
* @copyright Copyright (c) 2015 Aktsiamaailm LLC (http://en.e-abi.ee/)
|
11 |
-
* @license http://
|
|
|
12 |
* @author Matis Halmann
|
13 |
*
|
14 |
|
1 |
<?php
|
2 |
/*
|
3 |
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
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 Eabi_Livehandler
|
25 |
* @copyright Copyright (c) 2015 Aktsiamaailm LLC (http://en.e-abi.ee/)
|
26 |
+
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
27 |
+
* @license http://www.gnu.org/licenses/gpl-3.0.txt GNU Public License V3.0
|
28 |
* @author Matis Halmann
|
29 |
*
|
30 |
|
app/code/community/Eabi/Livehandler/Model/Directory/Collection.php
CHANGED
@@ -2,14 +2,30 @@
|
|
2 |
|
3 |
/*
|
4 |
|
5 |
-
*
|
6 |
-
*
|
7 |
-
*
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8 |
*
|
9 |
* @category Eabi
|
10 |
-
* @package
|
11 |
* @copyright Copyright (c) 2015 Aktsiamaailm LLC (http://en.e-abi.ee/)
|
12 |
-
* @license http://
|
|
|
13 |
* @author Matis Halmann
|
14 |
*
|
15 |
|
2 |
|
3 |
/*
|
4 |
|
5 |
+
*
|
6 |
+
* NOTICE OF LICENSE
|
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 Eabi_Livehandler
|
26 |
* @copyright Copyright (c) 2015 Aktsiamaailm LLC (http://en.e-abi.ee/)
|
27 |
+
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
28 |
+
* @license http://www.gnu.org/licenses/gpl-3.0.txt GNU Public License V3.0
|
29 |
* @author Matis Halmann
|
30 |
*
|
31 |
|
app/code/community/Eabi/Livehandler/Model/Entry.php
CHANGED
@@ -1,14 +1,30 @@
|
|
1 |
<?php
|
2 |
/*
|
3 |
|
4 |
-
*
|
5 |
-
*
|
6 |
-
*
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7 |
*
|
8 |
* @category Eabi
|
9 |
-
* @package
|
10 |
* @copyright Copyright (c) 2015 Aktsiamaailm LLC (http://en.e-abi.ee/)
|
11 |
-
* @license http://
|
|
|
12 |
* @author Matis Halmann
|
13 |
*
|
14 |
|
1 |
<?php
|
2 |
/*
|
3 |
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
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 Eabi_Livehandler
|
25 |
* @copyright Copyright (c) 2015 Aktsiamaailm LLC (http://en.e-abi.ee/)
|
26 |
+
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
27 |
+
* @license http://www.gnu.org/licenses/gpl-3.0.txt GNU Public License V3.0
|
28 |
* @author Matis Halmann
|
29 |
*
|
30 |
|
app/code/community/Eabi/Livehandler/Model/File/Object.php
CHANGED
@@ -2,14 +2,30 @@
|
|
2 |
|
3 |
/*
|
4 |
|
5 |
-
*
|
6 |
-
*
|
7 |
-
*
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8 |
*
|
9 |
* @category Eabi
|
10 |
-
* @package
|
11 |
* @copyright Copyright (c) 2015 Aktsiamaailm LLC (http://en.e-abi.ee/)
|
12 |
-
* @license http://
|
|
|
13 |
* @author Matis Halmann
|
14 |
*
|
15 |
|
2 |
|
3 |
/*
|
4 |
|
5 |
+
*
|
6 |
+
* NOTICE OF LICENSE
|
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 Eabi_Livehandler
|
26 |
* @copyright Copyright (c) 2015 Aktsiamaailm LLC (http://en.e-abi.ee/)
|
27 |
+
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
28 |
+
* @license http://www.gnu.org/licenses/gpl-3.0.txt GNU Public License V3.0
|
29 |
* @author Matis Halmann
|
30 |
*
|
31 |
|
app/code/community/Eabi/Livehandler/Model/Logger.php
ADDED
@@ -0,0 +1,362 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
/*
|
4 |
+
|
5 |
+
*
|
6 |
+
* NOTICE OF LICENSE
|
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 Eabi_Livehandler
|
26 |
+
* @copyright Copyright (c) 2015 Aktsiamaailm LLC (http://en.e-abi.ee/)
|
27 |
+
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
28 |
+
* @license http://www.gnu.org/licenses/gpl-3.0.txt GNU Public License V3.0
|
29 |
+
* @author Matis Halmann
|
30 |
+
*
|
31 |
+
|
32 |
+
*/
|
33 |
+
|
34 |
+
/**
|
35 |
+
* <p>Lightweight Logger class which logs all queries to getLogFile() file.</p>
|
36 |
+
* <p>Initialization example:</p>
|
37 |
+
* <pre>
|
38 |
+
$logger = $this->getEabiHelper()
|
39 |
+
->getEabiLogger();
|
40 |
+
$logger->setLogFile('name-of-log-file-'.date('Y-m-d').'.log')
|
41 |
+
->setLogLevel(Zend_Log::DEBUG)
|
42 |
+
->setIsLogEnabled(true)
|
43 |
+
->setLogPrefix('log prefix');
|
44 |
+
return $logger;
|
45 |
+
* </pre>
|
46 |
+
* <p>See also source model of <code>eabi_livehandler/source_log</code> which refers to class <code>Eabi_Livehandler_Model_Source_Log</code></p>
|
47 |
+
*
|
48 |
+
*
|
49 |
+
* @author Matis
|
50 |
+
*/
|
51 |
+
class Eabi_Livehandler_Model_Logger {
|
52 |
+
|
53 |
+
private static $_isRequestLogged = false;
|
54 |
+
|
55 |
+
/**
|
56 |
+
*
|
57 |
+
* @var string
|
58 |
+
*/
|
59 |
+
protected $logPrefix = '';
|
60 |
+
|
61 |
+
/**
|
62 |
+
*
|
63 |
+
* @var string
|
64 |
+
*/
|
65 |
+
protected $logFile = 'eabi-livehandler.log';
|
66 |
+
|
67 |
+
/**
|
68 |
+
*
|
69 |
+
* @var int
|
70 |
+
*/
|
71 |
+
protected $logLevel = Zend_Log::DEBUG;
|
72 |
+
|
73 |
+
/**
|
74 |
+
*
|
75 |
+
* @var bool
|
76 |
+
*/
|
77 |
+
protected $isLogEnabled = false;
|
78 |
+
|
79 |
+
|
80 |
+
protected $sensitiveVariableNames = array();
|
81 |
+
|
82 |
+
/**
|
83 |
+
* <p>Gets logging prefix for current logger instance</p>
|
84 |
+
* @return string
|
85 |
+
*/
|
86 |
+
public function getLogPrefix() {
|
87 |
+
return $this->logPrefix;
|
88 |
+
}
|
89 |
+
|
90 |
+
/**
|
91 |
+
* <p>Gets log file name for current logger instance</p>
|
92 |
+
* @return string
|
93 |
+
*/
|
94 |
+
public function getLogFile() {
|
95 |
+
return $this->logFile;
|
96 |
+
}
|
97 |
+
|
98 |
+
|
99 |
+
/**
|
100 |
+
* <p>Gets logging level for current logger instance</p>
|
101 |
+
* @return int
|
102 |
+
*/
|
103 |
+
public function getLogLevel() {
|
104 |
+
return $this->logLevel;
|
105 |
+
}
|
106 |
+
|
107 |
+
/**
|
108 |
+
* <p>Gets is log enabled flag for current logger instance</p>
|
109 |
+
* @return bool
|
110 |
+
*/
|
111 |
+
public function getIsLogEnabled() {
|
112 |
+
return (bool)$this->isLogEnabled;
|
113 |
+
}
|
114 |
+
|
115 |
+
|
116 |
+
/**
|
117 |
+
* <p>Sets logger prefix for current logger instance</p>
|
118 |
+
* @param string $logPrefix
|
119 |
+
* @return \Eabi_Livehandler_Model_Logger
|
120 |
+
*/
|
121 |
+
public function setLogPrefix($logPrefix) {
|
122 |
+
$this->logPrefix = $logPrefix;
|
123 |
+
return $this;
|
124 |
+
}
|
125 |
+
|
126 |
+
/**
|
127 |
+
* <p>Sets log file name for current logger instance</p>
|
128 |
+
* <p>Example: 'my-log.log'</p>
|
129 |
+
* <p>Gets logged to ~/var/log/my-log.log</p>
|
130 |
+
* @param string $logFile
|
131 |
+
* @return \Eabi_Livehandler_Model_Logger
|
132 |
+
*/
|
133 |
+
public function setLogFile($logFile) {
|
134 |
+
$this->logFile = $logFile;
|
135 |
+
return $this;
|
136 |
+
}
|
137 |
+
|
138 |
+
/**
|
139 |
+
* <p>Sets logging level for current logger instance</p>
|
140 |
+
* <p>Allowed values are (range emerg=0, debug=7):</p>
|
141 |
+
* <ul>
|
142 |
+
<li>Zend_Log::DEBUG</li>
|
143 |
+
<li>Zend_Log::INFO</li>
|
144 |
+
<li>Zend_Log::NOTICE</li>
|
145 |
+
<li>Zend_Log::WARN</li>
|
146 |
+
<li>Zend_Log::ERR</li>
|
147 |
+
<li>Zend_Log::CRIT</li>
|
148 |
+
<li>Zend_Log::ALERT</li>
|
149 |
+
<li>Zend_Log::EMERG</li>
|
150 |
+
</ul>
|
151 |
+
* @param int $logLevel
|
152 |
+
* @return \Eabi_Livehandler_Model_Logger
|
153 |
+
*/
|
154 |
+
public function setLogLevel($logLevel) {
|
155 |
+
$this->logLevel = $logLevel;
|
156 |
+
return $this;
|
157 |
+
}
|
158 |
+
|
159 |
+
/**
|
160 |
+
* <p>Enables logging for current logger instance</p>
|
161 |
+
* @param bool $isLogEnabled
|
162 |
+
* @return \Eabi_Livehandler_Model_Logger
|
163 |
+
*/
|
164 |
+
public function setIsLogEnabled($isLogEnabled) {
|
165 |
+
$this->isLogEnabled = (bool)$isLogEnabled;
|
166 |
+
return $this;
|
167 |
+
}
|
168 |
+
|
169 |
+
/**
|
170 |
+
* <p>Returns names of sensitive variables for current logger instance</p>
|
171 |
+
* @return array
|
172 |
+
*/
|
173 |
+
public function getSensitiveVariableNames() {
|
174 |
+
return $this->sensitiveVariableNames;
|
175 |
+
}
|
176 |
+
|
177 |
+
/**
|
178 |
+
* <p>Sets array of sensitive variable names, which will be replaced with <code>***</code> when they are contained in <code>$_GET</code> or <code>$_POST</code></p>
|
179 |
+
* @param array $sensitiveVariableNames
|
180 |
+
* @return \Eabi_Livehandler_Model_Logger
|
181 |
+
*/
|
182 |
+
public function setSensitiveVariableNames(array $sensitiveVariableNames) {
|
183 |
+
$this->sensitiveVariableNames = $sensitiveVariableNames;
|
184 |
+
return $this;
|
185 |
+
}
|
186 |
+
|
187 |
+
|
188 |
+
/**
|
189 |
+
* <p>Makes actual logging attempt to <code>$logFile</code></p>
|
190 |
+
* <p><code>$level</code> is not checked, and is written to log file as log information</p>
|
191 |
+
* <p><code>$_POST</code> and <code>$_GET</code> and <code>User Agent</code> are logged once per request</p>
|
192 |
+
* <p><code>Exception</code> types are casted into strings for better readability</p>
|
193 |
+
* @param mixed $data data to be writted to logfile
|
194 |
+
* @param string $logPrefix prefix for the data to be written
|
195 |
+
* @param string $logFile name of the file to write log into
|
196 |
+
* @param int $level loggin level for current entry
|
197 |
+
* @param array $sensitiveVariables array of sensitive variables to be removed from GET or POST
|
198 |
+
*/
|
199 |
+
protected static function _log($data, $logPrefix, $logFile, $level = Zend_Log::DEBUG, array $sensitiveVariables = array()) {
|
200 |
+
$postLevel = Zend_Log::DEBUG;
|
201 |
+
|
202 |
+
if (!self::$_isRequestLogged) {
|
203 |
+
if (isset($_POST) && count($_POST)) {
|
204 |
+
Mage::log('POST=' . print_r(self::_removeSensitiveVariables($_POST, $logPrefix, $sensitiveVariables), true), $postLevel, $logFile);
|
205 |
+
}
|
206 |
+
if (isset($_GET) && count($_GET)) {
|
207 |
+
Mage::log('GET=' . print_r(self::_removeSensitiveVariables($_GET, $logPrefix, $sensitiveVariables), true), $postLevel, $logFile);
|
208 |
+
}
|
209 |
+
if (isset($_SERVER) && isset($_SERVER['HTTP_USER_AGENT'])) {
|
210 |
+
Mage::log('USER_AGENT=' . $_SERVER['HTTP_USER_AGENT'], $postLevel, $logFile);
|
211 |
+
}
|
212 |
+
self::$_isRequestLogged = true;
|
213 |
+
}
|
214 |
+
|
215 |
+
if ($data instanceof Exception) {
|
216 |
+
$data = $data->__toString();
|
217 |
+
}
|
218 |
+
Mage::log(sprintf(' %s ', $logPrefix) . ': ' . print_r($data, true), $level, $logFile);
|
219 |
+
}
|
220 |
+
|
221 |
+
/**
|
222 |
+
* <p>If <code>$input</code> is array and it contains sensitive variables, then those will be replaced by <code>***</code> symbols.</p>
|
223 |
+
* @param mixed $input
|
224 |
+
* @param string $logPrefix
|
225 |
+
* @return mixed
|
226 |
+
*/
|
227 |
+
protected static function _removeSensitiveVariables($input, $logPrefix, $sensitiveVariables) {
|
228 |
+
$result = $input;
|
229 |
+
if (!is_array($result)) {
|
230 |
+
return $result;
|
231 |
+
}
|
232 |
+
$sensitives = $sensitiveVariables;
|
233 |
+
foreach ($sensitives as $sensitive) {
|
234 |
+
if (isset($result[$sensitive])) {
|
235 |
+
$result[$sensitive] = '***';
|
236 |
+
}
|
237 |
+
}
|
238 |
+
|
239 |
+
return $result;
|
240 |
+
}
|
241 |
+
|
242 |
+
/**
|
243 |
+
* <p>Writes <code>$dataToLog</code> into specified log file, if <code>$this->getIsLogEnabled()</code> is set to true and <code>$this->getLogLevel()</code> is equal or greated than <code>$level</code></p>
|
244 |
+
* <p>If <code>$dataToLog</code> is instance of <code>Exception</code> then <code>$level</code> is automatically set to <code>Zend_Log::ERR</code> (3)</p>
|
245 |
+
* @param mixed $dataToLog
|
246 |
+
* @param int $level
|
247 |
+
* @return \Eabi_Livehandler_Model_Logger
|
248 |
+
*/
|
249 |
+
protected function log($dataToLog, $level = Zend_Log::DEBUG) {
|
250 |
+
$file = $this->getLogFile();
|
251 |
+
if (!$file) {
|
252 |
+
$file = 'eabi-livehandler.log';
|
253 |
+
}
|
254 |
+
if (is_object($dataToLog) && $dataToLog instanceof Exception) {
|
255 |
+
$level = Zend_Log::ERR;
|
256 |
+
}
|
257 |
+
|
258 |
+
if ($this->getIsLogEnabled() && $this->getLogLevel() >= $level) {
|
259 |
+
self::_log($dataToLog, $this->getLogPrefix(), $file, $level, $this->getSensitiveVariableNames());
|
260 |
+
}
|
261 |
+
return $this;
|
262 |
+
}
|
263 |
+
|
264 |
+
/**
|
265 |
+
* <p>Writes <code>$dataToLog</code> into current logger instance with level of <code>Zend_Log::ERR</code> (3)</p>
|
266 |
+
* @param mixed $dataToLog data to be logged
|
267 |
+
* @return \Eabi_Livehandler_Model_Logger
|
268 |
+
*/
|
269 |
+
public function error($dataToLog) {
|
270 |
+
return $this->log($dataToLog, Zend_Log::ERR);
|
271 |
+
}
|
272 |
+
|
273 |
+
|
274 |
+
/**
|
275 |
+
* <p>Writes <code>$dataToLog</code> into current logger instance with level of <code>Zend_Log::ERR</code> (3)</p>
|
276 |
+
* @param mixed $dataToLog data to be logged
|
277 |
+
* @return \Eabi_Livehandler_Model_Logger
|
278 |
+
*/
|
279 |
+
public function debug($dataToLog) {
|
280 |
+
return $this->log($dataToLog, Zend_Log::DEBUG);
|
281 |
+
}
|
282 |
+
|
283 |
+
|
284 |
+
/**
|
285 |
+
* <p>Writes <code>$dataToLog</code> into current logger instance with level of <code>Zend_Log::INFO</code> (6)</p>
|
286 |
+
* @param mixed $dataToLog data to be logged
|
287 |
+
* @return \Eabi_Livehandler_Model_Logger
|
288 |
+
*/
|
289 |
+
public function info($dataToLog) {
|
290 |
+
return $this->log($dataToLog, Zend_Log::INFO);
|
291 |
+
}
|
292 |
+
|
293 |
+
|
294 |
+
/**
|
295 |
+
* <p>Writes <code>$dataToLog</code> into current logger instance with level of <code>Zend_Log::ALERT</code> (1)</p>
|
296 |
+
* @param mixed $dataToLog data to be logged
|
297 |
+
* @return \Eabi_Livehandler_Model_Logger
|
298 |
+
*/
|
299 |
+
public function alert($dataToLog) {
|
300 |
+
return $this->log($dataToLog, Zend_Log::ALERT);
|
301 |
+
}
|
302 |
+
|
303 |
+
|
304 |
+
/**
|
305 |
+
* <p>Writes <code>$dataToLog</code> into current logger instance with level of <code>Zend_Log::CRIT</code> (2)</p>
|
306 |
+
* @param mixed $dataToLog data to be logged
|
307 |
+
* @return \Eabi_Livehandler_Model_Logger
|
308 |
+
*/
|
309 |
+
public function crit($dataToLog) {
|
310 |
+
return $this->log($dataToLog, Zend_Log::CRIT);
|
311 |
+
}
|
312 |
+
|
313 |
+
|
314 |
+
/**
|
315 |
+
* <p>Writes <code>$dataToLog</code> into current logger instance with level of <code>Zend_Log::EMERG</code> (0)</p>
|
316 |
+
* @param mixed $dataToLog data to be logged
|
317 |
+
* @return \Eabi_Livehandler_Model_Logger
|
318 |
+
*/
|
319 |
+
public function emerg($dataToLog) {
|
320 |
+
return $this->log($dataToLog, Zend_Log::EMERG);
|
321 |
+
}
|
322 |
+
|
323 |
+
|
324 |
+
/**
|
325 |
+
* <p>Writes <code>$dataToLog</code> into current logger instance with level of <code>Zend_Log::NOTICE</code> (5)</p>
|
326 |
+
* @param mixed $dataToLog data to be logged
|
327 |
+
* @return \Eabi_Livehandler_Model_Logger
|
328 |
+
*/
|
329 |
+
public function notice($dataToLog) {
|
330 |
+
return $this->log($dataToLog, Zend_Log::NOTICE);
|
331 |
+
}
|
332 |
+
|
333 |
+
|
334 |
+
|
335 |
+
/**
|
336 |
+
* <p>Writes <code>$dataToLog</code> into current logger instance with level of <code>Zend_Log::WARN</code> (4)</p>
|
337 |
+
* @param mixed $dataToLog data to be logged
|
338 |
+
* @return \Eabi_Livehandler_Model_Logger
|
339 |
+
*/
|
340 |
+
public function warn($dataToLog) {
|
341 |
+
return $this->log($dataToLog, Zend_Log::WARN);
|
342 |
+
}
|
343 |
+
|
344 |
+
/**
|
345 |
+
* <p>Writes current stackTrace into current logger instance, which can be prefixed with optional <code>$extraInfo</code></p>
|
346 |
+
* @param mixed $extraInfo data to be logged
|
347 |
+
* @return \Eabi_Livehandler_Model_Logger
|
348 |
+
*/
|
349 |
+
public function logStackTrace($extraInfo = null) {
|
350 |
+
$dataToLog = array();
|
351 |
+
$dataToLog['info'] = $extraInfo;
|
352 |
+
$stack = debug_backtrace();
|
353 |
+
$dataToLog['stack'] = '';
|
354 |
+
foreach ($stack as $key => $info) {
|
355 |
+
$dataToLog['stack'] .= "#" . $key . " Called " . $info['function'] . " in " . $info['file'] . " on line " . $info['line'] . "\r\n";
|
356 |
+
}
|
357 |
+
|
358 |
+
return $this->log($dataToLog, Zend_Log::DEBUG);
|
359 |
+
}
|
360 |
+
|
361 |
+
|
362 |
+
}
|
app/code/community/Eabi/Livehandler/Model/Mysql4/Entry.php
CHANGED
@@ -1,14 +1,30 @@
|
|
1 |
<?php
|
2 |
/*
|
3 |
|
4 |
-
*
|
5 |
-
*
|
6 |
-
*
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7 |
*
|
8 |
* @category Eabi
|
9 |
-
* @package
|
10 |
* @copyright Copyright (c) 2015 Aktsiamaailm LLC (http://en.e-abi.ee/)
|
11 |
-
* @license http://
|
|
|
12 |
* @author Matis Halmann
|
13 |
*
|
14 |
|
1 |
<?php
|
2 |
/*
|
3 |
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
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 Eabi_Livehandler
|
25 |
* @copyright Copyright (c) 2015 Aktsiamaailm LLC (http://en.e-abi.ee/)
|
26 |
+
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
27 |
+
* @license http://www.gnu.org/licenses/gpl-3.0.txt GNU Public License V3.0
|
28 |
* @author Matis Halmann
|
29 |
*
|
30 |
|
app/code/community/Eabi/Livehandler/Model/Mysql4/Entry/Collection.php
CHANGED
@@ -1,14 +1,30 @@
|
|
1 |
<?php
|
2 |
/*
|
3 |
|
4 |
-
*
|
5 |
-
*
|
6 |
-
*
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7 |
*
|
8 |
* @category Eabi
|
9 |
-
* @package
|
10 |
* @copyright Copyright (c) 2015 Aktsiamaailm LLC (http://en.e-abi.ee/)
|
11 |
-
* @license http://
|
|
|
12 |
* @author Matis Halmann
|
13 |
*
|
14 |
|
1 |
<?php
|
2 |
/*
|
3 |
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
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 Eabi_Livehandler
|
25 |
* @copyright Copyright (c) 2015 Aktsiamaailm LLC (http://en.e-abi.ee/)
|
26 |
+
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
27 |
+
* @license http://www.gnu.org/licenses/gpl-3.0.txt GNU Public License V3.0
|
28 |
* @author Matis Halmann
|
29 |
*
|
30 |
|
app/code/community/Eabi/Livehandler/Model/Ordergrid.php
CHANGED
@@ -1,14 +1,30 @@
|
|
1 |
<?php
|
2 |
/*
|
3 |
|
4 |
-
*
|
5 |
-
*
|
6 |
-
*
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7 |
*
|
8 |
* @category Eabi
|
9 |
-
* @package
|
10 |
* @copyright Copyright (c) 2015 Aktsiamaailm LLC (http://en.e-abi.ee/)
|
11 |
-
* @license http://
|
|
|
12 |
* @author Matis Halmann
|
13 |
*
|
14 |
|
1 |
<?php
|
2 |
/*
|
3 |
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
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 Eabi_Livehandler
|
25 |
* @copyright Copyright (c) 2015 Aktsiamaailm LLC (http://en.e-abi.ee/)
|
26 |
+
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
27 |
+
* @license http://www.gnu.org/licenses/gpl-3.0.txt GNU Public License V3.0
|
28 |
* @author Matis Halmann
|
29 |
*
|
30 |
|
app/code/community/Eabi/Livehandler/Model/Source/Log.php
ADDED
@@ -0,0 +1,85 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/*
|
3 |
+
*
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
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 Eabi_Livehandler
|
25 |
+
* @copyright Copyright (c) 2015 Aktsiamaailm LLC (http://en.e-abi.ee/)
|
26 |
+
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
27 |
+
* @license http://www.gnu.org/licenses/gpl-3.0.txt GNU Public License V3.0
|
28 |
+
* @author Matis Halmann
|
29 |
+
*
|
30 |
+
|
31 |
+
*/
|
32 |
+
|
33 |
+
/**
|
34 |
+
* <p>Source model for representing all possible logging level values.</p>
|
35 |
+
* <p>Possible values originate from <code>Zend_Log</code> class</p>
|
36 |
+
*
|
37 |
+
* @author matishalmann
|
38 |
+
*/
|
39 |
+
class Eabi_Livehandler_Model_Source_Log {
|
40 |
+
|
41 |
+
public function toOptionArray() {
|
42 |
+
|
43 |
+
$options = array();
|
44 |
+
|
45 |
+
$options[] = array(
|
46 |
+
'label' => 'DEBUG',
|
47 |
+
'value' => Zend_Log::DEBUG,
|
48 |
+
);
|
49 |
+
$options[] = array(
|
50 |
+
'label' => 'INFO',
|
51 |
+
'value' => Zend_Log::INFO,
|
52 |
+
);
|
53 |
+
$options[] = array(
|
54 |
+
'label' => 'NOTICE',
|
55 |
+
'value' => Zend_Log::NOTICE,
|
56 |
+
);
|
57 |
+
$options[] = array(
|
58 |
+
'label' => 'WARN',
|
59 |
+
'value' => Zend_Log::WARN,
|
60 |
+
);
|
61 |
+
$options[] = array(
|
62 |
+
'label' => 'ERR',
|
63 |
+
'value' => Zend_Log::ERR,
|
64 |
+
);
|
65 |
+
$options[] = array(
|
66 |
+
'label' => 'CRIT',
|
67 |
+
'value' => Zend_Log::CRIT,
|
68 |
+
);
|
69 |
+
$options[] = array(
|
70 |
+
'label' => 'ALERT',
|
71 |
+
'value' => Zend_Log::ALERT,
|
72 |
+
);
|
73 |
+
$options[] = array(
|
74 |
+
'label' => 'EMERG',
|
75 |
+
'value' => Zend_Log::EMERG,
|
76 |
+
);
|
77 |
+
|
78 |
+
|
79 |
+
|
80 |
+
return $options;
|
81 |
+
}
|
82 |
+
|
83 |
+
}
|
84 |
+
|
85 |
+
|
app/code/community/Eabi/Livehandler/Model/System/Config/Backend/Button.php
CHANGED
@@ -1,14 +1,30 @@
|
|
1 |
<?php
|
2 |
/*
|
3 |
|
4 |
-
*
|
5 |
-
*
|
6 |
-
*
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7 |
*
|
8 |
* @category Eabi
|
9 |
-
* @package
|
10 |
* @copyright Copyright (c) 2015 Aktsiamaailm LLC (http://en.e-abi.ee/)
|
11 |
-
* @license http://
|
|
|
12 |
* @author Matis Halmann
|
13 |
*
|
14 |
|
1 |
<?php
|
2 |
/*
|
3 |
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
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 Eabi_Livehandler
|
25 |
* @copyright Copyright (c) 2015 Aktsiamaailm LLC (http://en.e-abi.ee/)
|
26 |
+
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
27 |
+
* @license http://www.gnu.org/licenses/gpl-3.0.txt GNU Public License V3.0
|
28 |
* @author Matis Halmann
|
29 |
*
|
30 |
|
app/code/community/Eabi/Livehandler/controllers/Adminhtml/LivehandlerController.php
CHANGED
@@ -1,14 +1,30 @@
|
|
1 |
<?php
|
2 |
/*
|
3 |
|
4 |
-
*
|
5 |
-
*
|
6 |
-
*
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7 |
*
|
8 |
* @category Eabi
|
9 |
-
* @package
|
10 |
* @copyright Copyright (c) 2015 Aktsiamaailm LLC (http://en.e-abi.ee/)
|
11 |
-
* @license http://
|
|
|
12 |
* @author Matis Halmann
|
13 |
*
|
14 |
|
1 |
<?php
|
2 |
/*
|
3 |
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
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 Eabi_Livehandler
|
25 |
* @copyright Copyright (c) 2015 Aktsiamaailm LLC (http://en.e-abi.ee/)
|
26 |
+
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
27 |
+
* @license http://www.gnu.org/licenses/gpl-3.0.txt GNU Public License V3.0
|
28 |
* @author Matis Halmann
|
29 |
*
|
30 |
|
app/code/community/Eabi/Livehandler/controllers/Adminhtml/RemoveController.php
CHANGED
@@ -1,14 +1,30 @@
|
|
1 |
<?php
|
2 |
/*
|
3 |
|
4 |
-
*
|
5 |
-
*
|
6 |
-
*
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7 |
*
|
8 |
* @category Eabi
|
9 |
-
* @package
|
10 |
* @copyright Copyright (c) 2015 Aktsiamaailm LLC (http://en.e-abi.ee/)
|
11 |
-
* @license http://
|
|
|
12 |
* @author Matis Halmann
|
13 |
*
|
14 |
|
1 |
<?php
|
2 |
/*
|
3 |
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
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 Eabi_Livehandler
|
25 |
* @copyright Copyright (c) 2015 Aktsiamaailm LLC (http://en.e-abi.ee/)
|
26 |
+
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
27 |
+
* @license http://www.gnu.org/licenses/gpl-3.0.txt GNU Public License V3.0
|
28 |
* @author Matis Halmann
|
29 |
*
|
30 |
|
app/code/community/Eabi/Livehandler/controllers/IndexController.php
CHANGED
@@ -1,14 +1,30 @@
|
|
1 |
<?php
|
2 |
/*
|
3 |
|
4 |
-
*
|
5 |
-
*
|
6 |
-
*
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7 |
*
|
8 |
* @category Eabi
|
9 |
-
* @package
|
10 |
* @copyright Copyright (c) 2015 Aktsiamaailm LLC (http://en.e-abi.ee/)
|
11 |
-
* @license http://
|
|
|
12 |
* @author Matis Halmann
|
13 |
*
|
14 |
|
1 |
<?php
|
2 |
/*
|
3 |
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
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 Eabi_Livehandler
|
25 |
* @copyright Copyright (c) 2015 Aktsiamaailm LLC (http://en.e-abi.ee/)
|
26 |
+
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
27 |
+
* @license http://www.gnu.org/licenses/gpl-3.0.txt GNU Public License V3.0
|
28 |
* @author Matis Halmann
|
29 |
*
|
30 |
|
app/code/community/Eabi/Livehandler/etc/config.xml
CHANGED
@@ -2,14 +2,30 @@
|
|
2 |
<!--
|
3 |
/*
|
4 |
|
5 |
-
*
|
6 |
-
*
|
7 |
-
*
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8 |
*
|
9 |
* @category Eabi
|
10 |
-
* @package
|
11 |
* @copyright Copyright (c) 2015 Aktsiamaailm LLC (http://en.e-abi.ee/)
|
12 |
-
* @license http://
|
|
|
13 |
* @author Matis Halmann
|
14 |
*
|
15 |
|
@@ -20,7 +36,7 @@
|
|
20 |
<config>
|
21 |
<modules>
|
22 |
<Eabi_Livehandler>
|
23 |
-
<version>0.1.
|
24 |
</Eabi_Livehandler>
|
25 |
</modules>
|
26 |
|
2 |
<!--
|
3 |
/*
|
4 |
|
5 |
+
*
|
6 |
+
* NOTICE OF LICENSE
|
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 Eabi_Livehandler
|
26 |
* @copyright Copyright (c) 2015 Aktsiamaailm LLC (http://en.e-abi.ee/)
|
27 |
+
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
28 |
+
* @license http://www.gnu.org/licenses/gpl-3.0.txt GNU Public License V3.0
|
29 |
* @author Matis Halmann
|
30 |
*
|
31 |
|
36 |
<config>
|
37 |
<modules>
|
38 |
<Eabi_Livehandler>
|
39 |
+
<version>0.1.11</version>
|
40 |
</Eabi_Livehandler>
|
41 |
</modules>
|
42 |
|
app/code/community/Eabi/Livehandler/etc/system.xml
CHANGED
@@ -2,14 +2,30 @@
|
|
2 |
<!--
|
3 |
/*
|
4 |
|
5 |
-
*
|
6 |
-
*
|
7 |
-
*
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8 |
*
|
9 |
* @category Eabi
|
10 |
-
* @package
|
11 |
* @copyright Copyright (c) 2015 Aktsiamaailm LLC (http://en.e-abi.ee/)
|
12 |
-
* @license http://
|
|
|
13 |
* @author Matis Halmann
|
14 |
*
|
15 |
|
2 |
<!--
|
3 |
/*
|
4 |
|
5 |
+
*
|
6 |
+
* NOTICE OF LICENSE
|
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 Eabi_Livehandler
|
26 |
* @copyright Copyright (c) 2015 Aktsiamaailm LLC (http://en.e-abi.ee/)
|
27 |
+
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
28 |
+
* @license http://www.gnu.org/licenses/gpl-3.0.txt GNU Public License V3.0
|
29 |
* @author Matis Halmann
|
30 |
*
|
31 |
|
app/code/community/Eabi/Livehandler/sql/eabi_livehandler_setup/mysql4-install-0.1.0.php
CHANGED
@@ -1,14 +1,30 @@
|
|
1 |
<?php
|
2 |
/*
|
3 |
|
4 |
-
*
|
5 |
-
*
|
6 |
-
*
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7 |
*
|
8 |
* @category Eabi
|
9 |
-
* @package
|
10 |
* @copyright Copyright (c) 2015 Aktsiamaailm LLC (http://en.e-abi.ee/)
|
11 |
-
* @license http://
|
|
|
12 |
* @author Matis Halmann
|
13 |
*
|
14 |
|
1 |
<?php
|
2 |
/*
|
3 |
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
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 Eabi_Livehandler
|
25 |
* @copyright Copyright (c) 2015 Aktsiamaailm LLC (http://en.e-abi.ee/)
|
26 |
+
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
27 |
+
* @license http://www.gnu.org/licenses/gpl-3.0.txt GNU Public License V3.0
|
28 |
* @author Matis Halmann
|
29 |
*
|
30 |
|
app/code/community/Eabi/Livehandler/sql/eabi_livehandler_setup/mysql4-upgrade-0.1.0-0.1.1.php
CHANGED
@@ -1,14 +1,30 @@
|
|
1 |
<?php
|
2 |
/*
|
3 |
|
4 |
-
*
|
5 |
-
*
|
6 |
-
*
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7 |
*
|
8 |
* @category Eabi
|
9 |
-
* @package
|
10 |
* @copyright Copyright (c) 2015 Aktsiamaailm LLC (http://en.e-abi.ee/)
|
11 |
-
* @license http://
|
|
|
12 |
* @author Matis Halmann
|
13 |
*
|
14 |
|
1 |
<?php
|
2 |
/*
|
3 |
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
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 Eabi_Livehandler
|
25 |
* @copyright Copyright (c) 2015 Aktsiamaailm LLC (http://en.e-abi.ee/)
|
26 |
+
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
27 |
+
* @license http://www.gnu.org/licenses/gpl-3.0.txt GNU Public License V3.0
|
28 |
* @author Matis Halmann
|
29 |
*
|
30 |
|
app/code/community/Eabi/Livehandler/sql/eabi_livehandler_setup/mysql4-upgrade-0.1.8-0.1.9.php
CHANGED
@@ -2,14 +2,30 @@
|
|
2 |
|
3 |
/*
|
4 |
|
5 |
-
*
|
6 |
-
*
|
7 |
-
*
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8 |
*
|
9 |
* @category Eabi
|
10 |
-
* @package
|
11 |
* @copyright Copyright (c) 2015 Aktsiamaailm LLC (http://en.e-abi.ee/)
|
12 |
-
* @license http://
|
|
|
13 |
* @author Matis Halmann
|
14 |
*
|
15 |
|
2 |
|
3 |
/*
|
4 |
|
5 |
+
*
|
6 |
+
* NOTICE OF LICENSE
|
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 Eabi_Livehandler
|
26 |
* @copyright Copyright (c) 2015 Aktsiamaailm LLC (http://en.e-abi.ee/)
|
27 |
+
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
28 |
+
* @license http://www.gnu.org/licenses/gpl-3.0.txt GNU Public License V3.0
|
29 |
* @author Matis Halmann
|
30 |
*
|
31 |
|
app/design/adminhtml/default/default/layout/eabi_livehandler.xml
CHANGED
@@ -2,14 +2,30 @@
|
|
2 |
<!--
|
3 |
/*
|
4 |
|
5 |
-
*
|
6 |
-
*
|
7 |
-
*
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8 |
*
|
9 |
* @category Eabi
|
10 |
-
* @package
|
11 |
* @copyright Copyright (c) 2015 Aktsiamaailm LLC (http://en.e-abi.ee/)
|
12 |
-
* @license http://
|
|
|
13 |
* @author Matis Halmann
|
14 |
*
|
15 |
|
2 |
<!--
|
3 |
/*
|
4 |
|
5 |
+
*
|
6 |
+
* NOTICE OF LICENSE
|
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 Eabi_Livehandler
|
26 |
* @copyright Copyright (c) 2015 Aktsiamaailm LLC (http://en.e-abi.ee/)
|
27 |
+
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
28 |
+
* @license http://www.gnu.org/licenses/gpl-3.0.txt GNU Public License V3.0
|
29 |
* @author Matis Halmann
|
30 |
*
|
31 |
|
app/design/frontend/base/default/layout/eabi_livehandler.xml
CHANGED
@@ -2,14 +2,30 @@
|
|
2 |
<!--
|
3 |
/*
|
4 |
|
5 |
-
*
|
6 |
-
*
|
7 |
-
*
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8 |
*
|
9 |
* @category Eabi
|
10 |
-
* @package
|
11 |
* @copyright Copyright (c) 2015 Aktsiamaailm LLC (http://en.e-abi.ee/)
|
12 |
-
* @license http://
|
|
|
13 |
* @author Matis Halmann
|
14 |
*
|
15 |
|
2 |
<!--
|
3 |
/*
|
4 |
|
5 |
+
*
|
6 |
+
* NOTICE OF LICENSE
|
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 Eabi_Livehandler
|
26 |
* @copyright Copyright (c) 2015 Aktsiamaailm LLC (http://en.e-abi.ee/)
|
27 |
+
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
28 |
+
* @license http://www.gnu.org/licenses/gpl-3.0.txt GNU Public License V3.0
|
29 |
* @author Matis Halmann
|
30 |
*
|
31 |
|
app/design/frontend/base/default/template/eabi_livehandler/email.phtml
CHANGED
@@ -1,14 +1,30 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
*
|
4 |
-
*
|
5 |
-
*
|
6 |
-
*
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7 |
*
|
8 |
* @category Eabi
|
9 |
-
* @package
|
10 |
* @copyright Copyright (c) 2015 Aktsiamaailm LLC (http://en.e-abi.ee/)
|
11 |
-
* @license http://
|
|
|
12 |
* @author Matis Halmann
|
13 |
*
|
14 |
|
1 |
<?php
|
2 |
/**
|
3 |
*
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
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 Eabi_Livehandler
|
25 |
* @copyright Copyright (c) 2015 Aktsiamaailm LLC (http://en.e-abi.ee/)
|
26 |
+
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
27 |
+
* @license http://www.gnu.org/licenses/gpl-3.0.txt GNU Public License V3.0
|
28 |
* @author Matis Halmann
|
29 |
*
|
30 |
|
app/design/frontend/default/default/layout/eabi_livehandler.xml
CHANGED
@@ -2,14 +2,30 @@
|
|
2 |
<!--
|
3 |
/*
|
4 |
|
5 |
-
*
|
6 |
-
*
|
7 |
-
*
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8 |
*
|
9 |
* @category Eabi
|
10 |
-
* @package
|
11 |
* @copyright Copyright (c) 2015 Aktsiamaailm LLC (http://en.e-abi.ee/)
|
12 |
-
* @license http://
|
|
|
13 |
* @author Matis Halmann
|
14 |
*
|
15 |
|
2 |
<!--
|
3 |
/*
|
4 |
|
5 |
+
*
|
6 |
+
* NOTICE OF LICENSE
|
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 Eabi_Livehandler
|
26 |
* @copyright Copyright (c) 2015 Aktsiamaailm LLC (http://en.e-abi.ee/)
|
27 |
+
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
28 |
+
* @license http://www.gnu.org/licenses/gpl-3.0.txt GNU Public License V3.0
|
29 |
* @author Matis Halmann
|
30 |
*
|
31 |
|
app/etc/modules/Eabi_Livehandler.xml
CHANGED
@@ -2,14 +2,30 @@
|
|
2 |
<!--
|
3 |
/*
|
4 |
|
5 |
-
*
|
6 |
-
*
|
7 |
-
*
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8 |
*
|
9 |
* @category Eabi
|
10 |
-
* @package
|
11 |
* @copyright Copyright (c) 2015 Aktsiamaailm LLC (http://en.e-abi.ee/)
|
12 |
-
* @license http://
|
|
|
13 |
* @author Matis Halmann
|
14 |
*
|
15 |
|
@@ -22,7 +38,7 @@
|
|
22 |
<Eabi_Livehandler>
|
23 |
<active>true</active>
|
24 |
<codePool>community</codePool>
|
25 |
-
<version>0.1.
|
26 |
</Eabi_Livehandler>
|
27 |
</modules>
|
28 |
</config>
|
2 |
<!--
|
3 |
/*
|
4 |
|
5 |
+
*
|
6 |
+
* NOTICE OF LICENSE
|
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 Eabi_Livehandler
|
26 |
* @copyright Copyright (c) 2015 Aktsiamaailm LLC (http://en.e-abi.ee/)
|
27 |
+
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
28 |
+
* @license http://www.gnu.org/licenses/gpl-3.0.txt GNU Public License V3.0
|
29 |
* @author Matis Halmann
|
30 |
*
|
31 |
|
38 |
<Eabi_Livehandler>
|
39 |
<active>true</active>
|
40 |
<codePool>community</codePool>
|
41 |
+
<version>0.1.11</version>
|
42 |
</Eabi_Livehandler>
|
43 |
</modules>
|
44 |
</config>
|
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,11 +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 |
<authors><author><name>Matis Matis</name><user>auto-converted</user><email>info@e-abi.ee</email></author></authors>
|
17 |
-
<date>2015-
|
18 |
-
<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="
|
20 |
<compatible/>
|
21 |
<dependencies/>
|
22 |
</package>
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Eabi_Livehandler</name>
|
4 |
+
<version>0.1.11</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>- Implemented logger class</notes>
|
16 |
<authors><author><name>Matis Matis</name><user>auto-converted</user><email>info@e-abi.ee</email></author></authors>
|
17 |
+
<date>2015-08-17</date>
|
18 |
+
<time>21:32:36</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="75fc6a0c10ae280d62b264ced660d796"/><file name="Remove.php" hash="d138e0de98410cb3d54c8c68136e561d"/></dir></dir></dir></dir><file name="Email.php" hash="d25a714c7f3b4bee734d4b19e8fa540d"/><file name="Footer.php" hash="506d24c22827396349ec654c87f6ae54"/></dir><dir name="Helper"><file name="Data.php" hash="d2f7b9bc464b090fc415a152e7bc807c"/><file name="Keypair.php" hash="748c8717daa5a04f20df7a2648601d41"/></dir><dir name="Model"><dir name="Action"><dir name="Postoffice"><file name="Print.php" hash="9b4248f2363f76a2f7ac78b7eb609fdd"/><file name="Send.php" hash="d17d95c37c42b10ac8610e943fa2b5a9"/></dir><file name="Abstract.php" hash="00ba6501472f46ec4d7929c620f44f2c"/></dir><dir name="Adminhtml"><file name="Gridmanager.php" hash="683ed1d2241648a38cde95d879f2ed6d"/></dir><dir name="Directory"><file name="Collection.php" hash="c4ca9c3045331c6a627c51d5523e4f2b"/></dir><dir name="File"><file name="Object.php" hash="e850a3b3fbcdbf5986bef5500656ad4d"/></dir><dir name="Mysql4"><dir name="Entry"><file name="Collection.php" hash="4d9ce810f841a274f17dde18465558eb"/></dir><file name="Entry.php" hash="1dd513c3e2b20365b3cf3bd6f3add6e9"/></dir><dir name="Source"><file name="Log.php" hash="5b1b4aede20fa1b113bd4ab81715e003"/></dir><dir name="System"><dir name="Config"><dir name="Backend"><file name="Button.php" hash="935136dd90dc90b5260f8ec2af7854b5"/></dir></dir></dir><file name="Abstract.php" hash="63bfcaf06b44797a8069af8ddcf65472"/><file name="Entry.php" hash="4acdd3bdaf0471a8b9e210e5446d6606"/><file name="Logger.php" hash="d41dc6151091acdf604b7173ec61dc76"/><file name="Ordergrid.php" hash="fc3afce87c0346cb31a00971ff8d220d"/></dir><dir name="controllers"><dir name="Adminhtml"><file name="LivehandlerController.php" hash="afdf936ad05280fc5b81cbcb895185f7"/><file name="RemoveController.php" hash="9292d416e19b2617b12b5f1a24981e3b"/></dir><file name="IndexController.php" hash="a34af2c5844dad5cbbddb39f3d2e4809"/></dir><dir name="etc"><file name="config.xml" hash="215252844dea8c6da60ea00ba064e8de"/><file name="system.xml" hash="c33880a24477e17108d8201d1c0e4f03"/></dir><dir name="sql"><dir name="eabi_livehandler_setup"><file name="mysql4-install-0.1.0.php" hash="2865107d3ec800271d48ebd975f86501"/><file name="mysql4-upgrade-0.1.0-0.1.1.php" hash="7d23da10efbdf1ec418c22b3697252bb"/><file name="mysql4-upgrade-0.1.8-0.1.9.php" hash="6ddad3c14863eb5067aa579075f6fa47"/></dir></dir><file name="CHANGELOG.txt" hash="997dbc49adb7bbe459d345d425977910"/><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="c4d0fec04f17e2377013a677ea642162"/></dir></dir></dir></dir><dir name="frontend"><dir name="default"><dir name="default"><dir name="layout"><file name="eabi_livehandler.xml" hash="d97b5fe416da0ca5d81013ec9106960a"/></dir></dir></dir><dir name="base"><dir name="default"><dir name="layout"><file name="eabi_livehandler.xml" hash="d97b5fe416da0ca5d81013ec9106960a"/></dir><dir name="template"><dir name="eabi_livehandler"><file name="email.phtml" hash="f09585ec2c2283a71e8ae74f1012a519"/></dir></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Eabi_Livehandler.xml" hash="569b17c1e09e789dd0d6a3ddd1eee7dd"/></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>
|