Adfab_Emailcampaign - Version 1.1.1

Version Notes

This version fixes a bug in Linux

Download this release

Release Info

Developer Adfab
Extension Adfab_Emailcampaign
Version 1.1.1
Comparing to
See all releases


Code changes from version 1.1.0 to 1.1.1

Files changed (64) hide show
  1. app/code/community/Adfab/Emailcampaign/Block/Adminhtml/Campaign.php +5 -5
  2. app/code/community/Adfab/Emailcampaign/Block/Adminhtml/Campaign/Edit.php +5 -5
  3. app/code/community/Adfab/Emailcampaign/Block/Adminhtml/Campaign/Edit/Form.php +5 -5
  4. app/code/community/Adfab/Emailcampaign/Block/Adminhtml/Campaign/Edit/Tab/Cron.php +5 -5
  5. app/code/community/Adfab/Emailcampaign/Block/Adminhtml/Campaign/Edit/Tab/Form.php +7 -7
  6. app/code/community/Adfab/Emailcampaign/Block/Adminhtml/Campaign/Edit/Tabs.php +5 -5
  7. app/code/community/Adfab/Emailcampaign/Block/Adminhtml/Campaign/Forms/AbandonedCart.php +5 -5
  8. app/code/community/Adfab/Emailcampaign/Block/Adminhtml/Campaign/Forms/Abstract.php +5 -5
  9. app/code/community/Adfab/Emailcampaign/Block/Adminhtml/Campaign/Forms/CustomerBirthday.php +5 -5
  10. app/code/community/Adfab/Emailcampaign/Block/Adminhtml/Campaign/Forms/WelcomeReminder.php +5 -5
  11. app/code/community/Adfab/Emailcampaign/Block/Adminhtml/Campaign/Forms/WishlistReminder.php +5 -5
  12. app/code/community/Adfab/Emailcampaign/Block/Adminhtml/Campaign/Forms/WishlistStockAlert.php +5 -5
  13. app/code/community/Adfab/Emailcampaign/Block/Adminhtml/Campaign/Grid.php +5 -5
  14. app/code/community/Adfab/Emailcampaign/Block/Adminhtml/Form/Edit/Renderer/Cron.php +5 -5
  15. app/code/community/Adfab/Emailcampaign/Block/Adminhtml/Notification/Toolbar.php +5 -5
  16. app/code/community/Adfab/Emailcampaign/Block/Adminhtml/Recipient.php +5 -5
  17. app/code/community/Adfab/Emailcampaign/Block/Adminhtml/Recipient/Grid.php +5 -5
  18. app/code/community/Adfab/Emailcampaign/Helper/Connector.php +8 -8
  19. app/code/community/Adfab/Emailcampaign/Helper/Data.php +8 -8
  20. app/code/community/Adfab/Emailcampaign/Model/Adminhtml/Notification.php +5 -5
  21. app/code/community/Adfab/Emailcampaign/Model/Campaign.php +5 -5
  22. app/code/community/Adfab/Emailcampaign/Model/Campaign/AbandonedCart.php +6 -6
  23. app/code/community/Adfab/Emailcampaign/Model/Campaign/Abstract.php +12 -12
  24. app/code/community/Adfab/Emailcampaign/Model/Campaign/Cron.php +7 -7
  25. app/code/community/Adfab/Emailcampaign/Model/Campaign/CustomerBirthday.php +7 -7
  26. app/code/community/Adfab/Emailcampaign/Model/Campaign/InscriptionAnniversary.php +7 -7
  27. app/code/community/Adfab/Emailcampaign/Model/Campaign/Observer.php +7 -7
  28. app/code/community/Adfab/Emailcampaign/Model/Campaign/OrderSuccess.php +6 -6
  29. app/code/community/Adfab/Emailcampaign/Model/Campaign/State/Abstract.php +5 -5
  30. app/code/community/Adfab/Emailcampaign/Model/Campaign/State/Production.php +5 -5
  31. app/code/community/Adfab/Emailcampaign/Model/Campaign/State/Test.php +5 -5
  32. app/code/community/Adfab/Emailcampaign/Model/Campaign/State/TestAllEmail.php +5 -5
  33. app/code/community/Adfab/Emailcampaign/Model/Campaign/WelcomeReminder.php +6 -6
  34. app/code/community/Adfab/Emailcampaign/Model/Campaign/WishlistReminder.php +6 -6
  35. app/code/community/Adfab/Emailcampaign/Model/Campaign/WishlistStockAlert.php +6 -6
  36. app/code/community/Adfab/Emailcampaign/Model/Connector/Abstract.php +7 -7
  37. app/code/community/Adfab/Emailcampaign/Model/Connector/Magento.php +7 -7
  38. app/code/community/Adfab/Emailcampaign/Model/Connector/Void.php +7 -7
  39. app/code/community/Adfab/Emailcampaign/Model/Cron.php +6 -6
  40. app/code/community/Adfab/Emailcampaign/Model/Cron/Observer.php +6 -6
  41. app/code/community/Adfab/Emailcampaign/Model/Flag.php +4 -4
  42. app/code/community/Adfab/Emailcampaign/Model/Observer.php +7 -7
  43. app/code/community/Adfab/Emailcampaign/Model/Resource/Adminhtml/Notification.php +5 -5
  44. app/code/community/Adfab/Emailcampaign/Model/Resource/Adminhtml/Notification/Collection.php +5 -5
  45. app/code/community/Adfab/Emailcampaign/Model/Resource/Campaign.php +5 -5
  46. app/code/community/Adfab/Emailcampaign/Model/Resource/Campaign/Collection.php +5 -5
  47. app/code/community/Adfab/Emailcampaign/Model/Source/Campaign.php +5 -5
  48. app/code/community/Adfab/Emailcampaign/Model/Source/Connector.php +5 -5
  49. app/code/community/Adfab/Emailcampaign/Model/Source/Mode.php +5 -5
  50. app/code/community/Adfab/Emailcampaign/Model/Source/Template.php +5 -5
  51. app/code/community/Adfab/Emailcampaign/Model/Status.php +5 -5
  52. app/code/community/Adfab/Emailcampaign/Test/Model/Campaign.php +5 -5
  53. app/code/community/Adfab/Emailcampaign/Test/Model/Campaign/State/Config.php +5 -5
  54. app/code/community/Adfab/Emailcampaign/Test/Model/Config.php +5 -5
  55. app/code/community/Adfab/Emailcampaign/controllers/Adminhtml/CampaignController.php +6 -6
  56. app/code/community/Adfab/Emailcampaign/etc/adminhtml.xml +3 -3
  57. app/code/community/Adfab/Emailcampaign/etc/config.xml +22 -22
  58. app/code/community/Adfab/Emailcampaign/etc/system.xml +3 -3
  59. app/code/community/Adfab/Emailcampaign/sql/adfab_emailcampaign_setup/mysql4-install-0.1.0.php +3 -3
  60. app/code/community/Adfab/Emailcampaign/sql/adfab_emailcampaign_setup/mysql4-upgrade-0.1.0-0.1.1.php +3 -3
  61. app/code/community/Adfab/Emailcampaign/sql/adfab_emailcampaign_setup/mysql4-upgrade-0.1.1-0.1.2.php +3 -3
  62. app/code/community/Adfab/Emailcampaign/sql/adfab_emailcampaign_setup/mysql4-upgrade-0.1.2-0.1.3.php +3 -3
  63. app/etc/modules/{Adfab_EmailCampaign.xml → Adfab_Emailcampaign.xml} +5 -5
  64. package.xml +5 -7
app/code/community/Adfab/Emailcampaign/Block/Adminhtml/Campaign.php CHANGED
@@ -14,12 +14,12 @@
14
  * DISCLAIMER
15
  *
16
  * Do not edit or add to this file if you wish to upgrade
17
- * the Adfab EmailCampaign module to newer versions in the future.
18
- * If you wish to customize the Adfab EmailCampaign module for your needs
19
  * please refer to http://www.magentocommerce.com for more information.
20
  *
21
  * @category Adfab
22
- * @package Adfab_EmailCampaign
23
  * @copyright Copyright (C) 2014 Adfab (http://www.adfab.fr/)
24
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
25
  */
@@ -30,11 +30,11 @@
30
  * Long description of the class (if any...)
31
  *
32
  * @category Adfab
33
- * @package Adfab_EmailCampaign
34
  * @subpackage Block
35
  * @author Arnaud Hours <arnaud.hours@adfab.fr>
36
  */
37
- class Adfab_EmailCampaign_Block_Adminhtml_Campaign extends Mage_Adminhtml_Block_Widget_Grid_Container
38
  {
39
 
40
  public function __construct()
14
  * DISCLAIMER
15
  *
16
  * Do not edit or add to this file if you wish to upgrade
17
+ * the Adfab Emailcampaign module to newer versions in the future.
18
+ * If you wish to customize the Adfab Emailcampaign module for your needs
19
  * please refer to http://www.magentocommerce.com for more information.
20
  *
21
  * @category Adfab
22
+ * @package Adfab_Emailcampaign
23
  * @copyright Copyright (C) 2014 Adfab (http://www.adfab.fr/)
24
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
25
  */
30
  * Long description of the class (if any...)
31
  *
32
  * @category Adfab
33
+ * @package Adfab_Emailcampaign
34
  * @subpackage Block
35
  * @author Arnaud Hours <arnaud.hours@adfab.fr>
36
  */
37
+ class Adfab_Emailcampaign_Block_Adminhtml_Campaign extends Mage_Adminhtml_Block_Widget_Grid_Container
38
  {
39
 
40
  public function __construct()
app/code/community/Adfab/Emailcampaign/Block/Adminhtml/Campaign/Edit.php CHANGED
@@ -14,12 +14,12 @@
14
  * DISCLAIMER
15
  *
16
  * Do not edit or add to this file if you wish to upgrade
17
- * the Adfab EmailCampaign module to newer versions in the future.
18
- * If you wish to customize the Adfab EmailCampaign module for your needs
19
  * please refer to http://www.magentocommerce.com for more information.
20
  *
21
  * @category Adfab
22
- * @package Adfab_EmailCampaign
23
  * @copyright Copyright (C) 2014 Adfab (http://www.adfab.fr/)
24
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
25
  */
@@ -30,11 +30,11 @@
30
  * Long description of the class (if any...)
31
  *
32
  * @category Adfab
33
- * @package Adfab_EmailCampaign
34
  * @subpackage Block
35
  * @author Arnaud Hours <arnaud.hours@adfab.fr>
36
  */
37
- class Adfab_EmailCampaign_Block_Adminhtml_Campaign_Edit extends Mage_Adminhtml_Block_Widget_Form_Container
38
  {
39
 
40
  public function __construct()
14
  * DISCLAIMER
15
  *
16
  * Do not edit or add to this file if you wish to upgrade
17
+ * the Adfab Emailcampaign module to newer versions in the future.
18
+ * If you wish to customize the Adfab Emailcampaign module for your needs
19
  * please refer to http://www.magentocommerce.com for more information.
20
  *
21
  * @category Adfab
22
+ * @package Adfab_Emailcampaign
23
  * @copyright Copyright (C) 2014 Adfab (http://www.adfab.fr/)
24
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
25
  */
30
  * Long description of the class (if any...)
31
  *
32
  * @category Adfab
33
+ * @package Adfab_Emailcampaign
34
  * @subpackage Block
35
  * @author Arnaud Hours <arnaud.hours@adfab.fr>
36
  */
37
+ class Adfab_Emailcampaign_Block_Adminhtml_Campaign_Edit extends Mage_Adminhtml_Block_Widget_Form_Container
38
  {
39
 
40
  public function __construct()
app/code/community/Adfab/Emailcampaign/Block/Adminhtml/Campaign/Edit/Form.php CHANGED
@@ -14,12 +14,12 @@
14
  * DISCLAIMER
15
  *
16
  * Do not edit or add to this file if you wish to upgrade
17
- * the Adfab EmailCampaign module to newer versions in the future.
18
- * If you wish to customize the Adfab EmailCampaign module for your needs
19
  * please refer to http://www.magentocommerce.com for more information.
20
  *
21
  * @category Adfab
22
- * @package Adfab_EmailCampaign
23
  * @copyright Copyright (C) 2014 Adfab (http://www.adfab.fr/)
24
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
25
  */
@@ -30,11 +30,11 @@
30
  * Long description of the class (if any...)
31
  *
32
  * @category Adfab
33
- * @package Adfab_EmailCampaign
34
  * @subpackage Block
35
  * @author Arnaud Hours <arnaud.hours@adfab.fr>
36
  */
37
- class Adfab_EmailCampaign_Block_Adminhtml_Campaign_Edit_Form extends Mage_Adminhtml_Block_Widget_Form
38
  {
39
 
40
  protected function _prepareForm()
14
  * DISCLAIMER
15
  *
16
  * Do not edit or add to this file if you wish to upgrade
17
+ * the Adfab Emailcampaign module to newer versions in the future.
18
+ * If you wish to customize the Adfab Emailcampaign module for your needs
19
  * please refer to http://www.magentocommerce.com for more information.
20
  *
21
  * @category Adfab
22
+ * @package Adfab_Emailcampaign
23
  * @copyright Copyright (C) 2014 Adfab (http://www.adfab.fr/)
24
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
25
  */
30
  * Long description of the class (if any...)
31
  *
32
  * @category Adfab
33
+ * @package Adfab_Emailcampaign
34
  * @subpackage Block
35
  * @author Arnaud Hours <arnaud.hours@adfab.fr>
36
  */
37
+ class Adfab_Emailcampaign_Block_Adminhtml_Campaign_Edit_Form extends Mage_Adminhtml_Block_Widget_Form
38
  {
39
 
40
  protected function _prepareForm()
app/code/community/Adfab/Emailcampaign/Block/Adminhtml/Campaign/Edit/Tab/Cron.php CHANGED
@@ -14,12 +14,12 @@
14
  * DISCLAIMER
15
  *
16
  * Do not edit or add to this file if you wish to upgrade
17
- * the Adfab EmailCampaign module to newer versions in the future.
18
- * If you wish to customize the Adfab EmailCampaign module for your needs
19
  * please refer to http://www.magentocommerce.com for more information.
20
  *
21
  * @category Adfab
22
- * @package Adfab_EmailCampaign
23
  * @copyright Copyright (C) 2014 Adfab (http://www.adfab.fr/)
24
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
25
  */
@@ -30,11 +30,11 @@
30
  * Long description of the class (if any...)
31
  *
32
  * @category Adfab
33
- * @package Adfab_EmailCampaign
34
  * @subpackage Block
35
  * @author Arnaud Hours <arnaud.hours@adfab.fr>
36
  */
37
- class Adfab_EmailCampaign_Block_Adminhtml_Campaign_Edit_Tab_Cron extends Mage_Adminhtml_Block_Widget_Form
38
  {
39
 
40
  protected function _prepareForm()
14
  * DISCLAIMER
15
  *
16
  * Do not edit or add to this file if you wish to upgrade
17
+ * the Adfab Emailcampaign module to newer versions in the future.
18
+ * If you wish to customize the Adfab Emailcampaign module for your needs
19
  * please refer to http://www.magentocommerce.com for more information.
20
  *
21
  * @category Adfab
22
+ * @package Adfab_Emailcampaign
23
  * @copyright Copyright (C) 2014 Adfab (http://www.adfab.fr/)
24
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
25
  */
30
  * Long description of the class (if any...)
31
  *
32
  * @category Adfab
33
+ * @package Adfab_Emailcampaign
34
  * @subpackage Block
35
  * @author Arnaud Hours <arnaud.hours@adfab.fr>
36
  */
37
+ class Adfab_Emailcampaign_Block_Adminhtml_Campaign_Edit_Tab_Cron extends Mage_Adminhtml_Block_Widget_Form
38
  {
39
 
40
  protected function _prepareForm()
app/code/community/Adfab/Emailcampaign/Block/Adminhtml/Campaign/Edit/Tab/Form.php CHANGED
@@ -14,12 +14,12 @@
14
  * DISCLAIMER
15
  *
16
  * Do not edit or add to this file if you wish to upgrade
17
- * the Adfab EmailCampaign module to newer versions in the future.
18
- * If you wish to customize the Adfab EmailCampaign module for your needs
19
  * please refer to http://www.magentocommerce.com for more information.
20
  *
21
  * @category Adfab
22
- * @package Adfab_EmailCampaign
23
  * @copyright Copyright (C) 2014 Adfab (http://www.adfab.fr/)
24
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
25
  */
@@ -30,11 +30,11 @@
30
  * Long description of the class (if any...)
31
  *
32
  * @category Adfab
33
- * @package Adfab_EmailCampaign
34
  * @subpackage Block
35
  * @author Arnaud Hours <arnaud.hours@adfab.fr>
36
  */
37
- class Adfab_EmailCampaign_Block_Adminhtml_Campaign_Edit_Tab_Form extends Mage_Adminhtml_Block_Widget_Form
38
  {
39
 
40
  protected function _prepareForm()
@@ -85,12 +85,12 @@ class Adfab_EmailCampaign_Block_Adminhtml_Campaign_Edit_Tab_Form extends Mage_Ad
85
  'required' => true,
86
  'values' => array(
87
  array(
88
- 'value' => Adfab_EmailCampaign_Model_Status::STATUS_ENABLED,
89
  'label' => Mage::helper('adminhtml')->__('Enabled'),
90
  ),
91
 
92
  array(
93
- 'value' => Adfab_EmailCampaign_Model_Status::STATUS_DISABLED,
94
  'label' => Mage::helper('adminhtml')->__('Disabled'),
95
  ),
96
  ),
14
  * DISCLAIMER
15
  *
16
  * Do not edit or add to this file if you wish to upgrade
17
+ * the Adfab Emailcampaign module to newer versions in the future.
18
+ * If you wish to customize the Adfab Emailcampaign module for your needs
19
  * please refer to http://www.magentocommerce.com for more information.
20
  *
21
  * @category Adfab
22
+ * @package Adfab_Emailcampaign
23
  * @copyright Copyright (C) 2014 Adfab (http://www.adfab.fr/)
24
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
25
  */
30
  * Long description of the class (if any...)
31
  *
32
  * @category Adfab
33
+ * @package Adfab_Emailcampaign
34
  * @subpackage Block
35
  * @author Arnaud Hours <arnaud.hours@adfab.fr>
36
  */
37
+ class Adfab_Emailcampaign_Block_Adminhtml_Campaign_Edit_Tab_Form extends Mage_Adminhtml_Block_Widget_Form
38
  {
39
 
40
  protected function _prepareForm()
85
  'required' => true,
86
  'values' => array(
87
  array(
88
+ 'value' => Adfab_Emailcampaign_Model_Status::STATUS_ENABLED,
89
  'label' => Mage::helper('adminhtml')->__('Enabled'),
90
  ),
91
 
92
  array(
93
+ 'value' => Adfab_Emailcampaign_Model_Status::STATUS_DISABLED,
94
  'label' => Mage::helper('adminhtml')->__('Disabled'),
95
  ),
96
  ),
app/code/community/Adfab/Emailcampaign/Block/Adminhtml/Campaign/Edit/Tabs.php CHANGED
@@ -14,12 +14,12 @@
14
  * DISCLAIMER
15
  *
16
  * Do not edit or add to this file if you wish to upgrade
17
- * the Adfab EmailCampaign module to newer versions in the future.
18
- * If you wish to customize the Adfab EmailCampaign module for your needs
19
  * please refer to http://www.magentocommerce.com for more information.
20
  *
21
  * @category Adfab
22
- * @package Adfab_EmailCampaign
23
  * @copyright Copyright (C) 2014 Adfab (http://www.adfab.fr/)
24
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
25
  */
@@ -30,11 +30,11 @@
30
  * Long description of the class (if any...)
31
  *
32
  * @category Adfab
33
- * @package Adfab_EmailCampaign
34
  * @subpackage Block
35
  * @author Arnaud Hours <arnaud.hours@adfab.fr>
36
  */
37
- class Adfab_EmailCampaign_Block_Adminhtml_Campaign_Edit_Tabs extends Mage_Adminhtml_Block_Widget_Tabs
38
  {
39
 
40
  public function __construct()
14
  * DISCLAIMER
15
  *
16
  * Do not edit or add to this file if you wish to upgrade
17
+ * the Adfab Emailcampaign module to newer versions in the future.
18
+ * If you wish to customize the Adfab Emailcampaign module for your needs
19
  * please refer to http://www.magentocommerce.com for more information.
20
  *
21
  * @category Adfab
22
+ * @package Adfab_Emailcampaign
23
  * @copyright Copyright (C) 2014 Adfab (http://www.adfab.fr/)
24
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
25
  */
30
  * Long description of the class (if any...)
31
  *
32
  * @category Adfab
33
+ * @package Adfab_Emailcampaign
34
  * @subpackage Block
35
  * @author Arnaud Hours <arnaud.hours@adfab.fr>
36
  */
37
+ class Adfab_Emailcampaign_Block_Adminhtml_Campaign_Edit_Tabs extends Mage_Adminhtml_Block_Widget_Tabs
38
  {
39
 
40
  public function __construct()
app/code/community/Adfab/Emailcampaign/Block/Adminhtml/Campaign/Forms/AbandonedCart.php CHANGED
@@ -14,12 +14,12 @@
14
  * DISCLAIMER
15
  *
16
  * Do not edit or add to this file if you wish to upgrade
17
- * the Adfab EmailCampaign module to newer versions in the future.
18
- * If you wish to customize the Adfab EmailCampaign module for your needs
19
  * please refer to http://www.magentocommerce.com for more information.
20
  *
21
  * @category Adfab
22
- * @package Adfab_EmailCampaign
23
  * @copyright Copyright (C) 2014 Adfab (http://www.adfab.fr/)
24
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
25
  */
@@ -30,11 +30,11 @@
30
  * Long description of the class (if any...)
31
  *
32
  * @category Adfab
33
- * @package Adfab_EmailCampaign
34
  * @subpackage Block
35
  * @author Arnaud Hours <arnaud.hours@adfab.fr>
36
  */
37
- class Adfab_EmailCampaign_Block_Adminhtml_Campaign_Forms_AbandonedCart extends Adfab_EmailCampaign_Block_Adminhtml_Campaign_Forms_Abstract
38
  {
39
 
40
  protected function _prepareForm()
14
  * DISCLAIMER
15
  *
16
  * Do not edit or add to this file if you wish to upgrade
17
+ * the Adfab Emailcampaign module to newer versions in the future.
18
+ * If you wish to customize the Adfab Emailcampaign module for your needs
19
  * please refer to http://www.magentocommerce.com for more information.
20
  *
21
  * @category Adfab
22
+ * @package Adfab_Emailcampaign
23
  * @copyright Copyright (C) 2014 Adfab (http://www.adfab.fr/)
24
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
25
  */
30
  * Long description of the class (if any...)
31
  *
32
  * @category Adfab
33
+ * @package Adfab_Emailcampaign
34
  * @subpackage Block
35
  * @author Arnaud Hours <arnaud.hours@adfab.fr>
36
  */
37
+ class Adfab_Emailcampaign_Block_Adminhtml_Campaign_Forms_AbandonedCart extends Adfab_Emailcampaign_Block_Adminhtml_Campaign_Forms_Abstract
38
  {
39
 
40
  protected function _prepareForm()
app/code/community/Adfab/Emailcampaign/Block/Adminhtml/Campaign/Forms/Abstract.php CHANGED
@@ -14,12 +14,12 @@
14
  * DISCLAIMER
15
  *
16
  * Do not edit or add to this file if you wish to upgrade
17
- * the Adfab EmailCampaign module to newer versions in the future.
18
- * If you wish to customize the Adfab EmailCampaign module for your needs
19
  * please refer to http://www.magentocommerce.com for more information.
20
  *
21
  * @category Adfab
22
- * @package Adfab_EmailCampaign
23
  * @copyright Copyright (C) 2014 Adfab (http://www.adfab.fr/)
24
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
25
  */
@@ -30,11 +30,11 @@
30
  * Long description of the class (if any...)
31
  *
32
  * @category Adfab
33
- * @package Adfab_EmailCampaign
34
  * @subpackage Block
35
  * @author Arnaud Hours <arnaud.hours@adfab.fr>
36
  */
37
- abstract class Adfab_EmailCampaign_Block_Adminhtml_Campaign_Forms_Abstract extends Mage_Adminhtml_Block_Widget_Form
38
  {
39
 
40
  /**
14
  * DISCLAIMER
15
  *
16
  * Do not edit or add to this file if you wish to upgrade
17
+ * the Adfab Emailcampaign module to newer versions in the future.
18
+ * If you wish to customize the Adfab Emailcampaign module for your needs
19
  * please refer to http://www.magentocommerce.com for more information.
20
  *
21
  * @category Adfab
22
+ * @package Adfab_Emailcampaign
23
  * @copyright Copyright (C) 2014 Adfab (http://www.adfab.fr/)
24
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
25
  */
30
  * Long description of the class (if any...)
31
  *
32
  * @category Adfab
33
+ * @package Adfab_Emailcampaign
34
  * @subpackage Block
35
  * @author Arnaud Hours <arnaud.hours@adfab.fr>
36
  */
37
+ abstract class Adfab_Emailcampaign_Block_Adminhtml_Campaign_Forms_Abstract extends Mage_Adminhtml_Block_Widget_Form
38
  {
39
 
40
  /**
app/code/community/Adfab/Emailcampaign/Block/Adminhtml/Campaign/Forms/CustomerBirthday.php CHANGED
@@ -14,12 +14,12 @@
14
  * DISCLAIMER
15
  *
16
  * Do not edit or add to this file if you wish to upgrade
17
- * the Adfab EmailCampaign module to newer versions in the future.
18
- * If you wish to customize the Adfab EmailCampaign module for your needs
19
  * please refer to http://www.magentocommerce.com for more information.
20
  *
21
  * @category Adfab
22
- * @package Adfab_EmailCampaign
23
  * @copyright Copyright (C) 2014 Adfab (http://www.adfab.fr/)
24
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
25
  */
@@ -30,11 +30,11 @@
30
  * Long description of the class (if any...)
31
  *
32
  * @category Adfab
33
- * @package Adfab_EmailCampaign
34
  * @subpackage Block
35
  * @author Arnaud Hours <arnaud.hours@adfab.fr>
36
  */
37
- class Adfab_EmailCampaign_Block_Adminhtml_Campaign_Forms_CustomerBirthday extends Adfab_EmailCampaign_Block_Adminhtml_Campaign_Forms_Abstract
38
  {
39
 
40
  protected function _prepareForm()
14
  * DISCLAIMER
15
  *
16
  * Do not edit or add to this file if you wish to upgrade
17
+ * the Adfab Emailcampaign module to newer versions in the future.
18
+ * If you wish to customize the Adfab Emailcampaign module for your needs
19
  * please refer to http://www.magentocommerce.com for more information.
20
  *
21
  * @category Adfab
22
+ * @package Adfab_Emailcampaign
23
  * @copyright Copyright (C) 2014 Adfab (http://www.adfab.fr/)
24
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
25
  */
30
  * Long description of the class (if any...)
31
  *
32
  * @category Adfab
33
+ * @package Adfab_Emailcampaign
34
  * @subpackage Block
35
  * @author Arnaud Hours <arnaud.hours@adfab.fr>
36
  */
37
+ class Adfab_Emailcampaign_Block_Adminhtml_Campaign_Forms_CustomerBirthday extends Adfab_Emailcampaign_Block_Adminhtml_Campaign_Forms_Abstract
38
  {
39
 
40
  protected function _prepareForm()
app/code/community/Adfab/Emailcampaign/Block/Adminhtml/Campaign/Forms/WelcomeReminder.php CHANGED
@@ -14,12 +14,12 @@
14
  * DISCLAIMER
15
  *
16
  * Do not edit or add to this file if you wish to upgrade
17
- * the Adfab EmailCampaign module to newer versions in the future.
18
- * If you wish to customize the Adfab EmailCampaign module for your needs
19
  * please refer to http://www.magentocommerce.com for more information.
20
  *
21
  * @category Adfab
22
- * @package Adfab_EmailCampaign
23
  * @copyright Copyright (C) 2014 Adfab (http://www.adfab.fr/)
24
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
25
  */
@@ -30,11 +30,11 @@
30
  * Long description of the class (if any...)
31
  *
32
  * @category Adfab
33
- * @package Adfab_EmailCampaign
34
  * @subpackage Block
35
  * @author Arnaud Hours <arnaud.hours@adfab.fr>
36
  */
37
- class Adfab_EmailCampaign_Block_Adminhtml_Campaign_Forms_WelcomeReminder extends Adfab_EmailCampaign_Block_Adminhtml_Campaign_Forms_Abstract
38
  {
39
 
40
  protected function _prepareForm()
14
  * DISCLAIMER
15
  *
16
  * Do not edit or add to this file if you wish to upgrade
17
+ * the Adfab Emailcampaign module to newer versions in the future.
18
+ * If you wish to customize the Adfab Emailcampaign module for your needs
19
  * please refer to http://www.magentocommerce.com for more information.
20
  *
21
  * @category Adfab
22
+ * @package Adfab_Emailcampaign
23
  * @copyright Copyright (C) 2014 Adfab (http://www.adfab.fr/)
24
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
25
  */
30
  * Long description of the class (if any...)
31
  *
32
  * @category Adfab
33
+ * @package Adfab_Emailcampaign
34
  * @subpackage Block
35
  * @author Arnaud Hours <arnaud.hours@adfab.fr>
36
  */
37
+ class Adfab_Emailcampaign_Block_Adminhtml_Campaign_Forms_WelcomeReminder extends Adfab_Emailcampaign_Block_Adminhtml_Campaign_Forms_Abstract
38
  {
39
 
40
  protected function _prepareForm()
app/code/community/Adfab/Emailcampaign/Block/Adminhtml/Campaign/Forms/WishlistReminder.php CHANGED
@@ -14,12 +14,12 @@
14
  * DISCLAIMER
15
  *
16
  * Do not edit or add to this file if you wish to upgrade
17
- * the Adfab EmailCampaign module to newer versions in the future.
18
- * If you wish to customize the Adfab EmailCampaign module for your needs
19
  * please refer to http://www.magentocommerce.com for more information.
20
  *
21
  * @category Adfab
22
- * @package Adfab_EmailCampaign
23
  * @copyright Copyright (C) 2014 Adfab (http://www.adfab.fr/)
24
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
25
  */
@@ -30,11 +30,11 @@
30
  * Long description of the class (if any...)
31
  *
32
  * @category Adfab
33
- * @package Adfab_EmailCampaign
34
  * @subpackage Block
35
  * @author Arnaud Hours <arnaud.hours@adfab.fr>
36
  */
37
- class Adfab_EmailCampaign_Block_Adminhtml_Campaign_Forms_WishlistReminder extends Adfab_EmailCampaign_Block_Adminhtml_Campaign_Forms_Abstract
38
  {
39
 
40
  protected function _prepareForm()
14
  * DISCLAIMER
15
  *
16
  * Do not edit or add to this file if you wish to upgrade
17
+ * the Adfab Emailcampaign module to newer versions in the future.
18
+ * If you wish to customize the Adfab Emailcampaign module for your needs
19
  * please refer to http://www.magentocommerce.com for more information.
20
  *
21
  * @category Adfab
22
+ * @package Adfab_Emailcampaign
23
  * @copyright Copyright (C) 2014 Adfab (http://www.adfab.fr/)
24
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
25
  */
30
  * Long description of the class (if any...)
31
  *
32
  * @category Adfab
33
+ * @package Adfab_Emailcampaign
34
  * @subpackage Block
35
  * @author Arnaud Hours <arnaud.hours@adfab.fr>
36
  */
37
+ class Adfab_Emailcampaign_Block_Adminhtml_Campaign_Forms_WishlistReminder extends Adfab_Emailcampaign_Block_Adminhtml_Campaign_Forms_Abstract
38
  {
39
 
40
  protected function _prepareForm()
app/code/community/Adfab/Emailcampaign/Block/Adminhtml/Campaign/Forms/WishlistStockAlert.php CHANGED
@@ -14,12 +14,12 @@
14
  * DISCLAIMER
15
  *
16
  * Do not edit or add to this file if you wish to upgrade
17
- * the Adfab EmailCampaign module to newer versions in the future.
18
- * If you wish to customize the Adfab EmailCampaign module for your needs
19
  * please refer to http://www.magentocommerce.com for more information.
20
  *
21
  * @category Adfab
22
- * @package Adfab_EmailCampaign
23
  * @copyright Copyright (C) 2014 Adfab (http://www.adfab.fr/)
24
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
25
  */
@@ -30,11 +30,11 @@
30
  * Long description of the class (if any...)
31
  *
32
  * @category Adfab
33
- * @package Adfab_EmailCampaign
34
  * @subpackage Block
35
  * @author Arnaud Hours <arnaud.hours@adfab.fr>
36
  */
37
- class Adfab_EmailCampaign_Block_Adminhtml_Campaign_Forms_WishlistStockAlert extends Adfab_EmailCampaign_Block_Adminhtml_Campaign_Forms_Abstract
38
  {
39
 
40
  protected function _prepareForm()
14
  * DISCLAIMER
15
  *
16
  * Do not edit or add to this file if you wish to upgrade
17
+ * the Adfab Emailcampaign module to newer versions in the future.
18
+ * If you wish to customize the Adfab Emailcampaign module for your needs
19
  * please refer to http://www.magentocommerce.com for more information.
20
  *
21
  * @category Adfab
22
+ * @package Adfab_Emailcampaign
23
  * @copyright Copyright (C) 2014 Adfab (http://www.adfab.fr/)
24
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
25
  */
30
  * Long description of the class (if any...)
31
  *
32
  * @category Adfab
33
+ * @package Adfab_Emailcampaign
34
  * @subpackage Block
35
  * @author Arnaud Hours <arnaud.hours@adfab.fr>
36
  */
37
+ class Adfab_Emailcampaign_Block_Adminhtml_Campaign_Forms_WishlistStockAlert extends Adfab_Emailcampaign_Block_Adminhtml_Campaign_Forms_Abstract
38
  {
39
 
40
  protected function _prepareForm()
app/code/community/Adfab/Emailcampaign/Block/Adminhtml/Campaign/Grid.php CHANGED
@@ -14,12 +14,12 @@
14
  * DISCLAIMER
15
  *
16
  * Do not edit or add to this file if you wish to upgrade
17
- * the Adfab EmailCampaign module to newer versions in the future.
18
- * If you wish to customize the Adfab EmailCampaign module for your needs
19
  * please refer to http://www.magentocommerce.com for more information.
20
  *
21
  * @category Adfab
22
- * @package Adfab_EmailCampaign
23
  * @copyright Copyright (C) 2014 Adfab (http://www.adfab.fr/)
24
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
25
  */
@@ -30,11 +30,11 @@
30
  * Long description of the class (if any...)
31
  *
32
  * @category Adfab
33
- * @package Adfab_EmailCampaign
34
  * @subpackage Block
35
  * @author Arnaud Hours <arnaud.hours@adfab.fr>
36
  */
37
- class Adfab_EmailCampaign_Block_Adminhtml_Campaign_Grid extends Mage_Adminhtml_Block_Widget_Grid
38
  {
39
 
40
  public function __construct()
14
  * DISCLAIMER
15
  *
16
  * Do not edit or add to this file if you wish to upgrade
17
+ * the Adfab Emailcampaign module to newer versions in the future.
18
+ * If you wish to customize the Adfab Emailcampaign module for your needs
19
  * please refer to http://www.magentocommerce.com for more information.
20
  *
21
  * @category Adfab
22
+ * @package Adfab_Emailcampaign
23
  * @copyright Copyright (C) 2014 Adfab (http://www.adfab.fr/)
24
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
25
  */
30
  * Long description of the class (if any...)
31
  *
32
  * @category Adfab
33
+ * @package Adfab_Emailcampaign
34
  * @subpackage Block
35
  * @author Arnaud Hours <arnaud.hours@adfab.fr>
36
  */
37
+ class Adfab_Emailcampaign_Block_Adminhtml_Campaign_Grid extends Mage_Adminhtml_Block_Widget_Grid
38
  {
39
 
40
  public function __construct()
app/code/community/Adfab/Emailcampaign/Block/Adminhtml/Form/Edit/Renderer/Cron.php CHANGED
@@ -14,12 +14,12 @@
14
  * DISCLAIMER
15
  *
16
  * Do not edit or add to this file if you wish to upgrade
17
- * the Adfab EmailCampaign module to newer versions in the future.
18
- * If you wish to customize the Adfab EmailCampaign module for your needs
19
  * please refer to http://www.magentocommerce.com for more information.
20
  *
21
  * @category Adfab
22
- * @package Adfab_EmailCampaign
23
  * @copyright Copyright (C) 2014 Adfab (http://www.adfab.fr/)
24
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
25
  */
@@ -29,11 +29,11 @@
29
  * Need jQuery and jquery-cron to work properly
30
  *
31
  * @category Adfab
32
- * @package Adfab_EmailCampaign
33
  * @subpackage Block
34
  * @author Arnaud Hours <arnaud.hours@adfab.fr>
35
  */
36
- class Adfab_EmailCampaign_Block_Adminhtml_Form_Edit_Renderer_Cron extends Mage_Adminhtml_Block_Widget implements Varien_Data_Form_Element_Renderer_Interface
37
  {
38
 
39
  /**
14
  * DISCLAIMER
15
  *
16
  * Do not edit or add to this file if you wish to upgrade
17
+ * the Adfab Emailcampaign module to newer versions in the future.
18
+ * If you wish to customize the Adfab Emailcampaign module for your needs
19
  * please refer to http://www.magentocommerce.com for more information.
20
  *
21
  * @category Adfab
22
+ * @package Adfab_Emailcampaign
23
  * @copyright Copyright (C) 2014 Adfab (http://www.adfab.fr/)
24
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
25
  */
29
  * Need jQuery and jquery-cron to work properly
30
  *
31
  * @category Adfab
32
+ * @package Adfab_Emailcampaign
33
  * @subpackage Block
34
  * @author Arnaud Hours <arnaud.hours@adfab.fr>
35
  */
36
+ class Adfab_Emailcampaign_Block_Adminhtml_Form_Edit_Renderer_Cron extends Mage_Adminhtml_Block_Widget implements Varien_Data_Form_Element_Renderer_Interface
37
  {
38
 
39
  /**
app/code/community/Adfab/Emailcampaign/Block/Adminhtml/Notification/Toolbar.php CHANGED
@@ -14,12 +14,12 @@
14
  * DISCLAIMER
15
  *
16
  * Do not edit or add to this file if you wish to upgrade
17
- * the Adfab EmailCampaign module to newer versions in the future.
18
- * If you wish to customize the Adfab EmailCampaign module for your needs
19
  * please refer to http://www.magentocommerce.com for more information.
20
  *
21
  * @category Adfab
22
- * @package Adfab_EmailCampaign
23
  * @copyright Copyright (C) 2014 Adfab (http://www.adfab.fr/)
24
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
25
  */
@@ -30,11 +30,11 @@
30
  * Long description of the class (if any...)
31
  *
32
  * @category Adfab
33
- * @package Adfab_EmailCampaign
34
  * @subpackage Block
35
  * @author Arnaud Hours <arnaud.hours@adfab.fr>
36
  */
37
- class Adfab_EmailCampaign_Block_Adminhtml_Notification_Toolbar extends Mage_Adminhtml_Block_Notification_Toolbar
38
  {
39
 
40
  protected $_notifications;
14
  * DISCLAIMER
15
  *
16
  * Do not edit or add to this file if you wish to upgrade
17
+ * the Adfab Emailcampaign module to newer versions in the future.
18
+ * If you wish to customize the Adfab Emailcampaign module for your needs
19
  * please refer to http://www.magentocommerce.com for more information.
20
  *
21
  * @category Adfab
22
+ * @package Adfab_Emailcampaign
23
  * @copyright Copyright (C) 2014 Adfab (http://www.adfab.fr/)
24
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
25
  */
30
  * Long description of the class (if any...)
31
  *
32
  * @category Adfab
33
+ * @package Adfab_Emailcampaign
34
  * @subpackage Block
35
  * @author Arnaud Hours <arnaud.hours@adfab.fr>
36
  */
37
+ class Adfab_Emailcampaign_Block_Adminhtml_Notification_Toolbar extends Mage_Adminhtml_Block_Notification_Toolbar
38
  {
39
 
40
  protected $_notifications;
app/code/community/Adfab/Emailcampaign/Block/Adminhtml/Recipient.php CHANGED
@@ -14,12 +14,12 @@
14
  * DISCLAIMER
15
  *
16
  * Do not edit or add to this file if you wish to upgrade
17
- * the Adfab EmailCampaign module to newer versions in the future.
18
- * If you wish to customize the Adfab EmailCampaign module for your needs
19
  * please refer to http://www.magentocommerce.com for more information.
20
  *
21
  * @category Adfab
22
- * @package Adfab_EmailCampaign
23
  * @copyright Copyright (C) 2014 Adfab (http://www.adfab.fr/)
24
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
25
  */
@@ -30,11 +30,11 @@
30
  * Long description of the class (if any...)
31
  *
32
  * @category Adfab
33
- * @package Adfab_EmailCampaign
34
  * @subpackage Block
35
  * @author Arnaud Hours <arnaud.hours@adfab.fr>
36
  */
37
- class Adfab_EmailCampaign_Block_Adminhtml_Recipient extends Mage_Adminhtml_Block_Widget_Grid_Container
38
  {
39
 
40
  public function __construct()
14
  * DISCLAIMER
15
  *
16
  * Do not edit or add to this file if you wish to upgrade
17
+ * the Adfab Emailcampaign module to newer versions in the future.
18
+ * If you wish to customize the Adfab Emailcampaign module for your needs
19
  * please refer to http://www.magentocommerce.com for more information.
20
  *
21
  * @category Adfab
22
+ * @package Adfab_Emailcampaign
23
  * @copyright Copyright (C) 2014 Adfab (http://www.adfab.fr/)
24
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
25
  */
30
  * Long description of the class (if any...)
31
  *
32
  * @category Adfab
33
+ * @package Adfab_Emailcampaign
34
  * @subpackage Block
35
  * @author Arnaud Hours <arnaud.hours@adfab.fr>
36
  */
37
+ class Adfab_Emailcampaign_Block_Adminhtml_Recipient extends Mage_Adminhtml_Block_Widget_Grid_Container
38
  {
39
 
40
  public function __construct()
app/code/community/Adfab/Emailcampaign/Block/Adminhtml/Recipient/Grid.php CHANGED
@@ -14,12 +14,12 @@
14
  * DISCLAIMER
15
  *
16
  * Do not edit or add to this file if you wish to upgrade
17
- * the Adfab EmailCampaign module to newer versions in the future.
18
- * If you wish to customize the Adfab EmailCampaign module for your needs
19
  * please refer to http://www.magentocommerce.com for more information.
20
  *
21
  * @category Adfab
22
- * @package Adfab_EmailCampaign
23
  * @copyright Copyright (C) 2014 Adfab (http://www.adfab.fr/)
24
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
25
  */
@@ -30,11 +30,11 @@
30
  * Long description of the class (if any...)
31
  *
32
  * @category Adfab
33
- * @package Adfab_EmailCampaign
34
  * @subpackage Block
35
  * @author Arnaud Hours <arnaud.hours@adfab.fr>
36
  */
37
- class Adfab_EmailCampaign_Block_Adminhtml_Recipient_Grid extends Mage_Adminhtml_Block_Widget_Grid
38
  {
39
 
40
  public function __construct()
14
  * DISCLAIMER
15
  *
16
  * Do not edit or add to this file if you wish to upgrade
17
+ * the Adfab Emailcampaign module to newer versions in the future.
18
+ * If you wish to customize the Adfab Emailcampaign module for your needs
19
  * please refer to http://www.magentocommerce.com for more information.
20
  *
21
  * @category Adfab
22
+ * @package Adfab_Emailcampaign
23
  * @copyright Copyright (C) 2014 Adfab (http://www.adfab.fr/)
24
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
25
  */
30
  * Long description of the class (if any...)
31
  *
32
  * @category Adfab
33
+ * @package Adfab_Emailcampaign
34
  * @subpackage Block
35
  * @author Arnaud Hours <arnaud.hours@adfab.fr>
36
  */
37
+ class Adfab_Emailcampaign_Block_Adminhtml_Recipient_Grid extends Mage_Adminhtml_Block_Widget_Grid
38
  {
39
 
40
  public function __construct()
app/code/community/Adfab/Emailcampaign/Helper/Connector.php CHANGED
@@ -14,12 +14,12 @@
14
  * DISCLAIMER
15
  *
16
  * Do not edit or add to this file if you wish to upgrade
17
- * the Adfab EmailCampaign module to newer versions in the future.
18
- * If you wish to customize the Adfab EmailCampaign module for your needs
19
  * please refer to http://www.magentocommerce.com for more information.
20
  *
21
  * @category Adfab
22
- * @package Adfab_EmailCampaign
23
  * @copyright Copyright (C) 2014 Adfab (http://www.adfab.fr/)
24
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
25
  */
@@ -30,15 +30,15 @@
30
  * Long description of the class (if any...)
31
  *
32
  * @category Adfab
33
- * @package Adfab_EmailCampaign
34
  * @subpackage Helper
35
  * @author Arnaud Hours <arnaud.hours@adfab.fr>
36
  */
37
- class Adfab_EmailCampaign_Helper_Connector extends Mage_Core_Helper_Data
38
  {
39
 
40
  /**
41
- * @return Adfab_EmailCampaign_Model_Connector_Abstract
42
  */
43
  public function getConnector()
44
  {
@@ -54,7 +54,7 @@ class Adfab_EmailCampaign_Helper_Connector extends Mage_Core_Helper_Data
54
 
55
  /**
56
  *
57
- * @return Adfab_EmailCampaign_Model_Connector_Magento
58
  */
59
  public function getDefaultConnector()
60
  {
@@ -63,7 +63,7 @@ class Adfab_EmailCampaign_Helper_Connector extends Mage_Core_Helper_Data
63
 
64
  /**
65
  *
66
- * @return Adfab_EmailCampaign_Model_Connector_Magento
67
  */
68
  public function getVoidConnector()
69
  {
14
  * DISCLAIMER
15
  *
16
  * Do not edit or add to this file if you wish to upgrade
17
+ * the Adfab Emailcampaign module to newer versions in the future.
18
+ * If you wish to customize the Adfab Emailcampaign module for your needs
19
  * please refer to http://www.magentocommerce.com for more information.
20
  *
21
  * @category Adfab
22
+ * @package Adfab_Emailcampaign
23
  * @copyright Copyright (C) 2014 Adfab (http://www.adfab.fr/)
24
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
25
  */
30
  * Long description of the class (if any...)
31
  *
32
  * @category Adfab
33
+ * @package Adfab_Emailcampaign
34
  * @subpackage Helper
35
  * @author Arnaud Hours <arnaud.hours@adfab.fr>
36
  */
37
+ class Adfab_Emailcampaign_Helper_Connector extends Mage_Core_Helper_Data
38
  {
39
 
40
  /**
41
+ * @return Adfab_Emailcampaign_Model_Connector_Abstract
42
  */
43
  public function getConnector()
44
  {
54
 
55
  /**
56
  *
57
+ * @return Adfab_Emailcampaign_Model_Connector_Magento
58
  */
59
  public function getDefaultConnector()
60
  {
63
 
64
  /**
65
  *
66
+ * @return Adfab_Emailcampaign_Model_Connector_Magento
67
  */
68
  public function getVoidConnector()
69
  {
app/code/community/Adfab/Emailcampaign/Helper/Data.php CHANGED
@@ -14,12 +14,12 @@
14
  * DISCLAIMER
15
  *
16
  * Do not edit or add to this file if you wish to upgrade
17
- * the Adfab EmailCampaign module to newer versions in the future.
18
- * If you wish to customize the Adfab EmailCampaign module for your needs
19
  * please refer to http://www.magentocommerce.com for more information.
20
  *
21
  * @category Adfab
22
- * @package Adfab_EmailCampaign
23
  * @copyright Copyright (C) 2014 Adfab (http://www.adfab.fr/)
24
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
25
  */
@@ -30,11 +30,11 @@
30
  * Long description of the class (if any...)
31
  *
32
  * @category Adfab
33
- * @package Adfab_EmailCampaign
34
  * @subpackage Helper
35
  * @author Arnaud Hours <arnaud.hours@adfab.fr>
36
  */
37
- class Adfab_EmailCampaign_Helper_Data extends Mage_Core_Helper_Data
38
  {
39
 
40
  protected $_campaigns;
@@ -47,13 +47,13 @@ class Adfab_EmailCampaign_Helper_Data extends Mage_Core_Helper_Data
47
  /**
48
  *
49
  * @param string $type
50
- * @return array<Adfab_EmailCampaign_Model_Campaign>
51
  */
52
  public function getCampaignsByType($type)
53
  {
54
  if (is_null($this->_campaigns)) {
55
  $this->_campaigns = Mage::getResourceModel('adfab_emailcampaign/campaign_collection')
56
- ->addFieldToFilter('status', array('eq' => Adfab_EmailCampaign_Model_Status::STATUS_ENABLED));
57
  }
58
  $found = array();
59
  foreach ($this->_campaigns as $campaign) {
@@ -103,7 +103,7 @@ class Adfab_EmailCampaign_Helper_Data extends Mage_Core_Helper_Data
103
  /**
104
  *
105
  * @param string $code
106
- * @return Adfab_EmailCampaign_Model_Campaign_Abstract
107
  */
108
  public function getCampaignModel($code)
109
  {
14
  * DISCLAIMER
15
  *
16
  * Do not edit or add to this file if you wish to upgrade
17
+ * the Adfab Emailcampaign module to newer versions in the future.
18
+ * If you wish to customize the Adfab Emailcampaign module for your needs
19
  * please refer to http://www.magentocommerce.com for more information.
20
  *
21
  * @category Adfab
22
+ * @package Adfab_Emailcampaign
23
  * @copyright Copyright (C) 2014 Adfab (http://www.adfab.fr/)
24
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
25
  */
30
  * Long description of the class (if any...)
31
  *
32
  * @category Adfab
33
+ * @package Adfab_Emailcampaign
34
  * @subpackage Helper
35
  * @author Arnaud Hours <arnaud.hours@adfab.fr>
36
  */
37
+ class Adfab_Emailcampaign_Helper_Data extends Mage_Core_Helper_Data
38
  {
39
 
40
  protected $_campaigns;
47
  /**
48
  *
49
  * @param string $type
50
+ * @return array<Adfab_Emailcampaign_Model_Campaign>
51
  */
52
  public function getCampaignsByType($type)
53
  {
54
  if (is_null($this->_campaigns)) {
55
  $this->_campaigns = Mage::getResourceModel('adfab_emailcampaign/campaign_collection')
56
+ ->addFieldToFilter('status', array('eq' => Adfab_Emailcampaign_Model_Status::STATUS_ENABLED));
57
  }
58
  $found = array();
59
  foreach ($this->_campaigns as $campaign) {
103
  /**
104
  *
105
  * @param string $code
106
+ * @return Adfab_Emailcampaign_Model_Campaign_Abstract
107
  */
108
  public function getCampaignModel($code)
109
  {
app/code/community/Adfab/Emailcampaign/Model/Adminhtml/Notification.php CHANGED
@@ -14,12 +14,12 @@
14
  * DISCLAIMER
15
  *
16
  * Do not edit or add to this file if you wish to upgrade
17
- * the Adfab EmailCampaign module to newer versions in the future.
18
- * If you wish to customize the Adfab EmailCampaign module for your needs
19
  * please refer to http://www.magentocommerce.com for more information.
20
  *
21
  * @category Adfab
22
- * @package Adfab_EmailCampaign
23
  * @copyright Copyright (C) 2014 Adfab (http://www.adfab.fr/)
24
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
25
  */
@@ -30,11 +30,11 @@
30
  * Long description of the class (if any...)
31
  *
32
  * @category Adfab
33
- * @package Adfab_EmailCampaign
34
  * @subpackage Model
35
  * @author Arnaud Hours <arnaud.hours@adfab.fr>
36
  */
37
- class Adfab_EmailCampaign_Model_Adminhtml_Notification extends Mage_Core_Model_Abstract
38
  {
39
 
40
  public function _construct()
14
  * DISCLAIMER
15
  *
16
  * Do not edit or add to this file if you wish to upgrade
17
+ * the Adfab Emailcampaign module to newer versions in the future.
18
+ * If you wish to customize the Adfab Emailcampaign module for your needs
19
  * please refer to http://www.magentocommerce.com for more information.
20
  *
21
  * @category Adfab
22
+ * @package Adfab_Emailcampaign
23
  * @copyright Copyright (C) 2014 Adfab (http://www.adfab.fr/)
24
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
25
  */
30
  * Long description of the class (if any...)
31
  *
32
  * @category Adfab
33
+ * @package Adfab_Emailcampaign
34
  * @subpackage Model
35
  * @author Arnaud Hours <arnaud.hours@adfab.fr>
36
  */
37
+ class Adfab_Emailcampaign_Model_Adminhtml_Notification extends Mage_Core_Model_Abstract
38
  {
39
 
40
  public function _construct()
app/code/community/Adfab/Emailcampaign/Model/Campaign.php CHANGED
@@ -14,12 +14,12 @@
14
  * DISCLAIMER
15
  *
16
  * Do not edit or add to this file if you wish to upgrade
17
- * the Adfab EmailCampaign module to newer versions in the future.
18
- * If you wish to customize the Adfab EmailCampaign module for your needs
19
  * please refer to http://www.magentocommerce.com for more information.
20
  *
21
  * @category Adfab
22
- * @package Adfab_EmailCampaign
23
  * @copyright Copyright (C) 2014 Adfab (http://www.adfab.fr/)
24
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
25
  */
@@ -30,11 +30,11 @@
30
  * Long description of the class (if any...)
31
  *
32
  * @category Adfab
33
- * @package Adfab_EmailCampaign
34
  * @subpackage Model
35
  * @author Arnaud Hours <arnaud.hours@adfab.fr>
36
  */
37
- class Adfab_EmailCampaign_Model_Campaign extends Mage_Core_Model_Abstract
38
  {
39
 
40
  const TYPE_CRON = 'cron';
14
  * DISCLAIMER
15
  *
16
  * Do not edit or add to this file if you wish to upgrade
17
+ * the Adfab Emailcampaign module to newer versions in the future.
18
+ * If you wish to customize the Adfab Emailcampaign module for your needs
19
  * please refer to http://www.magentocommerce.com for more information.
20
  *
21
  * @category Adfab
22
+ * @package Adfab_Emailcampaign
23
  * @copyright Copyright (C) 2014 Adfab (http://www.adfab.fr/)
24
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
25
  */
30
  * Long description of the class (if any...)
31
  *
32
  * @category Adfab
33
+ * @package Adfab_Emailcampaign
34
  * @subpackage Model
35
  * @author Arnaud Hours <arnaud.hours@adfab.fr>
36
  */
37
+ class Adfab_Emailcampaign_Model_Campaign extends Mage_Core_Model_Abstract
38
  {
39
 
40
  const TYPE_CRON = 'cron';
app/code/community/Adfab/Emailcampaign/Model/Campaign/AbandonedCart.php CHANGED
@@ -14,12 +14,12 @@
14
  * DISCLAIMER
15
  *
16
  * Do not edit or add to this file if you wish to upgrade
17
- * the Adfab EmailCampaign module to newer versions in the future.
18
- * If you wish to customize the Adfab EmailCampaign module for your needs
19
  * please refer to http://www.magentocommerce.com for more information.
20
  *
21
  * @category Adfab
22
- * @package Adfab_EmailCampaign
23
  * @copyright Copyright (C) 2014 Adfab (http://www.adfab.fr/)
24
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
25
  */
@@ -30,14 +30,14 @@
30
  * Long description of the class (if any...)
31
  *
32
  * @category Adfab
33
- * @package Adfab_EmailCampaign
34
  * @subpackage Model
35
  * @author Arnaud Hours <arnaud.hours@adfab.fr>
36
  */
37
- class Adfab_EmailCampaign_Model_Campaign_AbandonedCart extends Adfab_EmailCampaign_Model_Campaign_Cron
38
  {
39
 
40
- public function process(Adfab_EmailCampaign_Model_Campaign $campaign)
41
  {
42
  $this->_init($campaign);
43
 
14
  * DISCLAIMER
15
  *
16
  * Do not edit or add to this file if you wish to upgrade
17
+ * the Adfab Emailcampaign module to newer versions in the future.
18
+ * If you wish to customize the Adfab Emailcampaign module for your needs
19
  * please refer to http://www.magentocommerce.com for more information.
20
  *
21
  * @category Adfab
22
+ * @package Adfab_Emailcampaign
23
  * @copyright Copyright (C) 2014 Adfab (http://www.adfab.fr/)
24
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
25
  */
30
  * Long description of the class (if any...)
31
  *
32
  * @category Adfab
33
+ * @package Adfab_Emailcampaign
34
  * @subpackage Model
35
  * @author Arnaud Hours <arnaud.hours@adfab.fr>
36
  */
37
+ class Adfab_Emailcampaign_Model_Campaign_AbandonedCart extends Adfab_Emailcampaign_Model_Campaign_Cron
38
  {
39
 
40
+ public function process(Adfab_Emailcampaign_Model_Campaign $campaign)
41
  {
42
  $this->_init($campaign);
43
 
app/code/community/Adfab/Emailcampaign/Model/Campaign/Abstract.php CHANGED
@@ -14,12 +14,12 @@
14
  * DISCLAIMER
15
  *
16
  * Do not edit or add to this file if you wish to upgrade
17
- * the Adfab EmailCampaign module to newer versions in the future.
18
- * If you wish to customize the Adfab EmailCampaign module for your needs
19
  * please refer to http://www.magentocommerce.com for more information.
20
  *
21
  * @category Adfab
22
- * @package Adfab_EmailCampaign
23
  * @copyright Copyright (C) 2014 Adfab (http://www.adfab.fr/)
24
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
25
  */
@@ -30,16 +30,16 @@
30
  * Long description of the class (if any...)
31
  *
32
  * @category Adfab
33
- * @package Adfab_EmailCampaign
34
  * @subpackage Model
35
  * @author Arnaud Hours <arnaud.hours@adfab.fr>
36
  */
37
- abstract class Adfab_EmailCampaign_Model_Campaign_Abstract
38
  {
39
 
40
  /**
41
  * state pattern
42
- * @var Adfab_EmailCampaign_Model_Campaign_State_Abstract
43
  */
44
  private $_state;
45
 
@@ -50,12 +50,12 @@ abstract class Adfab_EmailCampaign_Model_Campaign_Abstract
50
  private $_void = false;
51
 
52
  /**
53
- * @var Adfab_EmailCampaign_Model_Connector_Abstract
54
  */
55
  protected $_connector;
56
 
57
  /**
58
- * @var Adfab_EmailCampaign_Model_Campaign
59
  */
60
  protected $_campaign;
61
 
@@ -64,7 +64,7 @@ abstract class Adfab_EmailCampaign_Model_Campaign_Abstract
64
  */
65
  protected $_processTime;
66
 
67
- protected function _init(Adfab_EmailCampaign_Model_Campaign $campaign)
68
  {
69
  $this->_campaign = $campaign;
70
  $this->_state = Mage::getSingleton('adfab_emailcampaign/campaign_state_' . $campaign->getMode());
@@ -81,7 +81,7 @@ abstract class Adfab_EmailCampaign_Model_Campaign_Abstract
81
 
82
  /**
83
  *
84
- * @param Adfab_EmailCampaign_Model_Campaign $campaign
85
  * @param Mage_Customer_Model_Resource_Customer_Collection $customer
86
  * @param array $data
87
  */
@@ -122,7 +122,7 @@ abstract class Adfab_EmailCampaign_Model_Campaign_Abstract
122
 
123
  /**
124
  * @param bool $void
125
- * @return Adfab_EmailCampaign_Model_Campaign_Abstract
126
  */
127
  public function setIsVoid($void)
128
  {
@@ -140,7 +140,7 @@ abstract class Adfab_EmailCampaign_Model_Campaign_Abstract
140
 
141
  /**
142
  * update campaign last run in campaign variables
143
- * @return Adfab_EmailCampaign_Model_Campaign_Abstract
144
  */
145
  public function updateLastRunDate()
146
  {
14
  * DISCLAIMER
15
  *
16
  * Do not edit or add to this file if you wish to upgrade
17
+ * the Adfab Emailcampaign module to newer versions in the future.
18
+ * If you wish to customize the Adfab Emailcampaign module for your needs
19
  * please refer to http://www.magentocommerce.com for more information.
20
  *
21
  * @category Adfab
22
+ * @package Adfab_Emailcampaign
23
  * @copyright Copyright (C) 2014 Adfab (http://www.adfab.fr/)
24
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
25
  */
30
  * Long description of the class (if any...)
31
  *
32
  * @category Adfab
33
+ * @package Adfab_Emailcampaign
34
  * @subpackage Model
35
  * @author Arnaud Hours <arnaud.hours@adfab.fr>
36
  */
37
+ abstract class Adfab_Emailcampaign_Model_Campaign_Abstract
38
  {
39
 
40
  /**
41
  * state pattern
42
+ * @var Adfab_Emailcampaign_Model_Campaign_State_Abstract
43
  */
44
  private $_state;
45
 
50
  private $_void = false;
51
 
52
  /**
53
+ * @var Adfab_Emailcampaign_Model_Connector_Abstract
54
  */
55
  protected $_connector;
56
 
57
  /**
58
+ * @var Adfab_Emailcampaign_Model_Campaign
59
  */
60
  protected $_campaign;
61
 
64
  */
65
  protected $_processTime;
66
 
67
+ protected function _init(Adfab_Emailcampaign_Model_Campaign $campaign)
68
  {
69
  $this->_campaign = $campaign;
70
  $this->_state = Mage::getSingleton('adfab_emailcampaign/campaign_state_' . $campaign->getMode());
81
 
82
  /**
83
  *
84
+ * @param Adfab_Emailcampaign_Model_Campaign $campaign
85
  * @param Mage_Customer_Model_Resource_Customer_Collection $customer
86
  * @param array $data
87
  */
122
 
123
  /**
124
  * @param bool $void
125
+ * @return Adfab_Emailcampaign_Model_Campaign_Abstract
126
  */
127
  public function setIsVoid($void)
128
  {
140
 
141
  /**
142
  * update campaign last run in campaign variables
143
+ * @return Adfab_Emailcampaign_Model_Campaign_Abstract
144
  */
145
  public function updateLastRunDate()
146
  {
app/code/community/Adfab/Emailcampaign/Model/Campaign/Cron.php CHANGED
@@ -14,12 +14,12 @@
14
  * DISCLAIMER
15
  *
16
  * Do not edit or add to this file if you wish to upgrade
17
- * the Adfab EmailCampaign module to newer versions in the future.
18
- * If you wish to customize the Adfab EmailCampaign module for your needs
19
  * please refer to http://www.magentocommerce.com for more information.
20
  *
21
  * @category Adfab
22
- * @package Adfab_EmailCampaign
23
  * @copyright Copyright (C) 2014 Adfab (http://www.adfab.fr/)
24
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
25
  */
@@ -30,18 +30,18 @@
30
  * Long description of the class (if any...)
31
  *
32
  * @category Adfab
33
- * @package Adfab_EmailCampaign
34
  * @subpackage Model
35
  * @author Arnaud Hours <arnaud.hours@adfab.fr>
36
  */
37
- abstract class Adfab_EmailCampaign_Model_Campaign_Cron extends Adfab_EmailCampaign_Model_Campaign_Abstract
38
  {
39
 
40
  /**
41
  * process specific campaign
42
  *
43
- * @param Adfab_EmailCampaign_Model_Campaign $campaign
44
  */
45
- abstract public function process(Adfab_EmailCampaign_Model_Campaign $campaign);
46
 
47
  }
14
  * DISCLAIMER
15
  *
16
  * Do not edit or add to this file if you wish to upgrade
17
+ * the Adfab Emailcampaign module to newer versions in the future.
18
+ * If you wish to customize the Adfab Emailcampaign module for your needs
19
  * please refer to http://www.magentocommerce.com for more information.
20
  *
21
  * @category Adfab
22
+ * @package Adfab_Emailcampaign
23
  * @copyright Copyright (C) 2014 Adfab (http://www.adfab.fr/)
24
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
25
  */
30
  * Long description of the class (if any...)
31
  *
32
  * @category Adfab
33
+ * @package Adfab_Emailcampaign
34
  * @subpackage Model
35
  * @author Arnaud Hours <arnaud.hours@adfab.fr>
36
  */
37
+ abstract class Adfab_Emailcampaign_Model_Campaign_Cron extends Adfab_Emailcampaign_Model_Campaign_Abstract
38
  {
39
 
40
  /**
41
  * process specific campaign
42
  *
43
+ * @param Adfab_Emailcampaign_Model_Campaign $campaign
44
  */
45
+ abstract public function process(Adfab_Emailcampaign_Model_Campaign $campaign);
46
 
47
  }
app/code/community/Adfab/Emailcampaign/Model/Campaign/CustomerBirthday.php CHANGED
@@ -14,12 +14,12 @@
14
  * DISCLAIMER
15
  *
16
  * Do not edit or add to this file if you wish to upgrade
17
- * the Adfab EmailCampaign module to newer versions in the future.
18
- * If you wish to customize the Adfab EmailCampaign module for your needs
19
  * please refer to http://www.magentocommerce.com for more information.
20
  *
21
  * @category Adfab
22
- * @package Adfab_EmailCampaign
23
  * @copyright Copyright (C) 2014 Adfab (http://www.adfab.fr/)
24
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
25
  */
@@ -30,14 +30,14 @@
30
  * Long description of the class (if any...)
31
  *
32
  * @category Adfab
33
- * @package Adfab_EmailCampaign
34
  * @subpackage Model
35
  * @author Arnaud Hours <arnaud.hours@adfab.fr>
36
  */
37
- class Adfab_EmailCampaign_Model_Campaign_CustomerBirthday extends Adfab_EmailCampaign_Model_Campaign_Cron
38
  {
39
 
40
- public function process(Adfab_EmailCampaign_Model_Campaign $campaign)
41
  {
42
  $this->_init($campaign);
43
 
@@ -84,7 +84,7 @@ class Adfab_EmailCampaign_Model_Campaign_CustomerBirthday extends Adfab_EmailCam
84
  /**
85
  * manually set cron expr to schedule campaign every days
86
  *
87
- * @param Adfab_EmailCampaign_Model_Campaign $campaign
88
  */
89
  public function beforeCampaignSave($campaign)
90
  {
14
  * DISCLAIMER
15
  *
16
  * Do not edit or add to this file if you wish to upgrade
17
+ * the Adfab Emailcampaign module to newer versions in the future.
18
+ * If you wish to customize the Adfab Emailcampaign module for your needs
19
  * please refer to http://www.magentocommerce.com for more information.
20
  *
21
  * @category Adfab
22
+ * @package Adfab_Emailcampaign
23
  * @copyright Copyright (C) 2014 Adfab (http://www.adfab.fr/)
24
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
25
  */
30
  * Long description of the class (if any...)
31
  *
32
  * @category Adfab
33
+ * @package Adfab_Emailcampaign
34
  * @subpackage Model
35
  * @author Arnaud Hours <arnaud.hours@adfab.fr>
36
  */
37
+ class Adfab_Emailcampaign_Model_Campaign_CustomerBirthday extends Adfab_Emailcampaign_Model_Campaign_Cron
38
  {
39
 
40
+ public function process(Adfab_Emailcampaign_Model_Campaign $campaign)
41
  {
42
  $this->_init($campaign);
43
 
84
  /**
85
  * manually set cron expr to schedule campaign every days
86
  *
87
+ * @param Adfab_Emailcampaign_Model_Campaign $campaign
88
  */
89
  public function beforeCampaignSave($campaign)
90
  {
app/code/community/Adfab/Emailcampaign/Model/Campaign/InscriptionAnniversary.php CHANGED
@@ -14,12 +14,12 @@
14
  * DISCLAIMER
15
  *
16
  * Do not edit or add to this file if you wish to upgrade
17
- * the Adfab EmailCampaign module to newer versions in the future.
18
- * If you wish to customize the Adfab EmailCampaign module for your needs
19
  * please refer to http://www.magentocommerce.com for more information.
20
  *
21
  * @category Adfab
22
- * @package Adfab_EmailCampaign
23
  * @copyright Copyright (C) 2014 Adfab (http://www.adfab.fr/)
24
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
25
  */
@@ -30,14 +30,14 @@
30
  * Long description of the class (if any...)
31
  *
32
  * @category Adfab
33
- * @package Adfab_EmailCampaign
34
  * @subpackage Model
35
  * @author Arnaud Hours <arnaud.hours@adfab.fr>
36
  */
37
- class Adfab_EmailCampaign_Model_Campaign_InscriptionAnniversary extends Adfab_EmailCampaign_Model_Campaign_Cron
38
  {
39
 
40
- public function process(Adfab_EmailCampaign_Model_Campaign $campaign)
41
  {
42
  $this->_init($campaign);
43
 
@@ -69,7 +69,7 @@ class Adfab_EmailCampaign_Model_Campaign_InscriptionAnniversary extends Adfab_Em
69
  /**
70
  * manually set cron expr to schedule campaign every days
71
  *
72
- * @param Adfab_EmailCampaign_Model_Campaign $campaign
73
  */
74
  public function beforeCampaignSave($campaign)
75
  {
14
  * DISCLAIMER
15
  *
16
  * Do not edit or add to this file if you wish to upgrade
17
+ * the Adfab Emailcampaign module to newer versions in the future.
18
+ * If you wish to customize the Adfab Emailcampaign module for your needs
19
  * please refer to http://www.magentocommerce.com for more information.
20
  *
21
  * @category Adfab
22
+ * @package Adfab_Emailcampaign
23
  * @copyright Copyright (C) 2014 Adfab (http://www.adfab.fr/)
24
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
25
  */
30
  * Long description of the class (if any...)
31
  *
32
  * @category Adfab
33
+ * @package Adfab_Emailcampaign
34
  * @subpackage Model
35
  * @author Arnaud Hours <arnaud.hours@adfab.fr>
36
  */
37
+ class Adfab_Emailcampaign_Model_Campaign_InscriptionAnniversary extends Adfab_Emailcampaign_Model_Campaign_Cron
38
  {
39
 
40
+ public function process(Adfab_Emailcampaign_Model_Campaign $campaign)
41
  {
42
  $this->_init($campaign);
43
 
69
  /**
70
  * manually set cron expr to schedule campaign every days
71
  *
72
+ * @param Adfab_Emailcampaign_Model_Campaign $campaign
73
  */
74
  public function beforeCampaignSave($campaign)
75
  {
app/code/community/Adfab/Emailcampaign/Model/Campaign/Observer.php CHANGED
@@ -14,12 +14,12 @@
14
  * DISCLAIMER
15
  *
16
  * Do not edit or add to this file if you wish to upgrade
17
- * the Adfab EmailCampaign module to newer versions in the future.
18
- * If you wish to customize the Adfab EmailCampaign module for your needs
19
  * please refer to http://www.magentocommerce.com for more information.
20
  *
21
  * @category Adfab
22
- * @package Adfab_EmailCampaign
23
  * @copyright Copyright (C) 2014 Adfab (http://www.adfab.fr/)
24
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
25
  */
@@ -30,19 +30,19 @@
30
  * Long description of the class (if any...)
31
  *
32
  * @category Adfab
33
- * @package Adfab_EmailCampaign
34
  * @subpackage Model
35
  * @author Arnaud Hours <arnaud.hours@adfab.fr>
36
  */
37
- abstract class Adfab_EmailCampaign_Model_Campaign_Observer extends Adfab_EmailCampaign_Model_Campaign_Abstract
38
  {
39
 
40
  /**
41
  * process specific campaign
42
  *
43
- * @param Adfab_EmailCampaign_Model_Campaign $campaign
44
  * @param Varien_Event_Observer $observer
45
  */
46
- abstract public function process(Adfab_EmailCampaign_Model_Campaign $campaign, Varien_Event_Observer $observer);
47
 
48
  }
14
  * DISCLAIMER
15
  *
16
  * Do not edit or add to this file if you wish to upgrade
17
+ * the Adfab Emailcampaign module to newer versions in the future.
18
+ * If you wish to customize the Adfab Emailcampaign module for your needs
19
  * please refer to http://www.magentocommerce.com for more information.
20
  *
21
  * @category Adfab
22
+ * @package Adfab_Emailcampaign
23
  * @copyright Copyright (C) 2014 Adfab (http://www.adfab.fr/)
24
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
25
  */
30
  * Long description of the class (if any...)
31
  *
32
  * @category Adfab
33
+ * @package Adfab_Emailcampaign
34
  * @subpackage Model
35
  * @author Arnaud Hours <arnaud.hours@adfab.fr>
36
  */
37
+ abstract class Adfab_Emailcampaign_Model_Campaign_Observer extends Adfab_Emailcampaign_Model_Campaign_Abstract
38
  {
39
 
40
  /**
41
  * process specific campaign
42
  *
43
+ * @param Adfab_Emailcampaign_Model_Campaign $campaign
44
  * @param Varien_Event_Observer $observer
45
  */
46
+ abstract public function process(Adfab_Emailcampaign_Model_Campaign $campaign, Varien_Event_Observer $observer);
47
 
48
  }
app/code/community/Adfab/Emailcampaign/Model/Campaign/OrderSuccess.php CHANGED
@@ -14,12 +14,12 @@
14
  * DISCLAIMER
15
  *
16
  * Do not edit or add to this file if you wish to upgrade
17
- * the Adfab EmailCampaign module to newer versions in the future.
18
- * If you wish to customize the Adfab EmailCampaign module for your needs
19
  * please refer to http://www.magentocommerce.com for more information.
20
  *
21
  * @category Adfab
22
- * @package Adfab_EmailCampaign
23
  * @copyright Copyright (C) 2014 Adfab (http://www.adfab.fr/)
24
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
25
  */
@@ -30,14 +30,14 @@
30
  * Long description of the class (if any...)
31
  *
32
  * @category Adfab
33
- * @package Adfab_EmailCampaign
34
  * @subpackage Model
35
  * @author Arnaud Hours <arnaud.hours@adfab.fr>
36
  */
37
- class Adfab_EmailCampaign_Model_Campaign_OrderSuccess extends Adfab_EmailCampaign_Model_Campaign_Observer
38
  {
39
 
40
- public function process(Adfab_EmailCampaign_Model_Campaign $campaign, Varien_Event_Observer $observer)
41
  {
42
  $this->_init($campaign);
43
  $order = $observer->getOrder();
14
  * DISCLAIMER
15
  *
16
  * Do not edit or add to this file if you wish to upgrade
17
+ * the Adfab Emailcampaign module to newer versions in the future.
18
+ * If you wish to customize the Adfab Emailcampaign module for your needs
19
  * please refer to http://www.magentocommerce.com for more information.
20
  *
21
  * @category Adfab
22
+ * @package Adfab_Emailcampaign
23
  * @copyright Copyright (C) 2014 Adfab (http://www.adfab.fr/)
24
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
25
  */
30
  * Long description of the class (if any...)
31
  *
32
  * @category Adfab
33
+ * @package Adfab_Emailcampaign
34
  * @subpackage Model
35
  * @author Arnaud Hours <arnaud.hours@adfab.fr>
36
  */
37
+ class Adfab_Emailcampaign_Model_Campaign_OrderSuccess extends Adfab_Emailcampaign_Model_Campaign_Observer
38
  {
39
 
40
+ public function process(Adfab_Emailcampaign_Model_Campaign $campaign, Varien_Event_Observer $observer)
41
  {
42
  $this->_init($campaign);
43
  $order = $observer->getOrder();
app/code/community/Adfab/Emailcampaign/Model/Campaign/State/Abstract.php CHANGED
@@ -14,12 +14,12 @@
14
  * DISCLAIMER
15
  *
16
  * Do not edit or add to this file if you wish to upgrade
17
- * the Adfab EmailCampaign module to newer versions in the future.
18
- * If you wish to customize the Adfab EmailCampaign module for your needs
19
  * please refer to http://www.magentocommerce.com for more information.
20
  *
21
  * @category Adfab
22
- * @package Adfab_EmailCampaign
23
  * @copyright Copyright (C) 2014 Adfab (http://www.adfab.fr/)
24
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
25
  */
@@ -30,11 +30,11 @@
30
  * Long description of the class (if any...)
31
  *
32
  * @category Adfab
33
- * @package Adfab_EmailCampaign
34
  * @subpackage Model
35
  * @author Arnaud Hours <arnaud.hours@adfab.fr>
36
  */
37
- abstract class Adfab_EmailCampaign_Model_Campaign_State_Abstract
38
  {
39
 
40
  /**
14
  * DISCLAIMER
15
  *
16
  * Do not edit or add to this file if you wish to upgrade
17
+ * the Adfab Emailcampaign module to newer versions in the future.
18
+ * If you wish to customize the Adfab Emailcampaign module for your needs
19
  * please refer to http://www.magentocommerce.com for more information.
20
  *
21
  * @category Adfab
22
+ * @package Adfab_Emailcampaign
23
  * @copyright Copyright (C) 2014 Adfab (http://www.adfab.fr/)
24
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
25
  */
30
  * Long description of the class (if any...)
31
  *
32
  * @category Adfab
33
+ * @package Adfab_Emailcampaign
34
  * @subpackage Model
35
  * @author Arnaud Hours <arnaud.hours@adfab.fr>
36
  */
37
+ abstract class Adfab_Emailcampaign_Model_Campaign_State_Abstract
38
  {
39
 
40
  /**
app/code/community/Adfab/Emailcampaign/Model/Campaign/State/Production.php CHANGED
@@ -14,12 +14,12 @@
14
  * DISCLAIMER
15
  *
16
  * Do not edit or add to this file if you wish to upgrade
17
- * the Adfab EmailCampaign module to newer versions in the future.
18
- * If you wish to customize the Adfab EmailCampaign module for your needs
19
  * please refer to http://www.magentocommerce.com for more information.
20
  *
21
  * @category Adfab
22
- * @package Adfab_EmailCampaign
23
  * @copyright Copyright (C) 2014 Adfab (http://www.adfab.fr/)
24
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
25
  */
@@ -30,10 +30,10 @@
30
  * Long description of the class (if any...)
31
  *
32
  * @category Adfab
33
- * @package Adfab_EmailCampaign
34
  * @subpackage Model
35
  * @author Arnaud Hours <arnaud.hours@adfab.fr>
36
  */
37
- class Adfab_EmailCampaign_Model_Campaign_State_Production extends Adfab_EmailCampaign_Model_Campaign_State_Abstract
38
  {
39
  }
14
  * DISCLAIMER
15
  *
16
  * Do not edit or add to this file if you wish to upgrade
17
+ * the Adfab Emailcampaign module to newer versions in the future.
18
+ * If you wish to customize the Adfab Emailcampaign module for your needs
19
  * please refer to http://www.magentocommerce.com for more information.
20
  *
21
  * @category Adfab
22
+ * @package Adfab_Emailcampaign
23
  * @copyright Copyright (C) 2014 Adfab (http://www.adfab.fr/)
24
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
25
  */
30
  * Long description of the class (if any...)
31
  *
32
  * @category Adfab
33
+ * @package Adfab_Emailcampaign
34
  * @subpackage Model
35
  * @author Arnaud Hours <arnaud.hours@adfab.fr>
36
  */
37
+ class Adfab_Emailcampaign_Model_Campaign_State_Production extends Adfab_Emailcampaign_Model_Campaign_State_Abstract
38
  {
39
  }
app/code/community/Adfab/Emailcampaign/Model/Campaign/State/Test.php CHANGED
@@ -14,12 +14,12 @@
14
  * DISCLAIMER
15
  *
16
  * Do not edit or add to this file if you wish to upgrade
17
- * the Adfab EmailCampaign module to newer versions in the future.
18
- * If you wish to customize the Adfab EmailCampaign module for your needs
19
  * please refer to http://www.magentocommerce.com for more information.
20
  *
21
  * @category Adfab
22
- * @package Adfab_EmailCampaign
23
  * @copyright Copyright (C) 2014 Adfab (http://www.adfab.fr/)
24
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
25
  */
@@ -30,11 +30,11 @@
30
  * Long description of the class (if any...)
31
  *
32
  * @category Adfab
33
- * @package Adfab_EmailCampaign
34
  * @subpackage Model
35
  * @author Arnaud Hours <arnaud.hours@adfab.fr>
36
  */
37
- class Adfab_EmailCampaign_Model_Campaign_State_Test extends Adfab_EmailCampaign_Model_Campaign_State_Abstract
38
  {
39
 
40
  public function getCustomerList()
14
  * DISCLAIMER
15
  *
16
  * Do not edit or add to this file if you wish to upgrade
17
+ * the Adfab Emailcampaign module to newer versions in the future.
18
+ * If you wish to customize the Adfab Emailcampaign module for your needs
19
  * please refer to http://www.magentocommerce.com for more information.
20
  *
21
  * @category Adfab
22
+ * @package Adfab_Emailcampaign
23
  * @copyright Copyright (C) 2014 Adfab (http://www.adfab.fr/)
24
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
25
  */
30
  * Long description of the class (if any...)
31
  *
32
  * @category Adfab
33
+ * @package Adfab_Emailcampaign
34
  * @subpackage Model
35
  * @author Arnaud Hours <arnaud.hours@adfab.fr>
36
  */
37
+ class Adfab_Emailcampaign_Model_Campaign_State_Test extends Adfab_Emailcampaign_Model_Campaign_State_Abstract
38
  {
39
 
40
  public function getCustomerList()
app/code/community/Adfab/Emailcampaign/Model/Campaign/State/TestAllEmail.php CHANGED
@@ -14,12 +14,12 @@
14
  * DISCLAIMER
15
  *
16
  * Do not edit or add to this file if you wish to upgrade
17
- * the Adfab EmailCampaign module to newer versions in the future.
18
- * If you wish to customize the Adfab EmailCampaign module for your needs
19
  * please refer to http://www.magentocommerce.com for more information.
20
  *
21
  * @category Adfab
22
- * @package Adfab_EmailCampaign
23
  * @copyright Copyright (C) 2014 Adfab (http://www.adfab.fr/)
24
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
25
  */
@@ -30,11 +30,11 @@
30
  * Long description of the class (if any...)
31
  *
32
  * @category Adfab
33
- * @package Adfab_EmailCampaign
34
  * @subpackage Model
35
  * @author Arnaud Hours <arnaud.hours@adfab.fr>
36
  */
37
- class Adfab_EmailCampaign_Model_Campaign_State_TestAllEmail extends Adfab_EmailCampaign_Model_Campaign_State_Abstract
38
  {
39
 
40
  public function getCustomerList()
14
  * DISCLAIMER
15
  *
16
  * Do not edit or add to this file if you wish to upgrade
17
+ * the Adfab Emailcampaign module to newer versions in the future.
18
+ * If you wish to customize the Adfab Emailcampaign module for your needs
19
  * please refer to http://www.magentocommerce.com for more information.
20
  *
21
  * @category Adfab
22
+ * @package Adfab_Emailcampaign
23
  * @copyright Copyright (C) 2014 Adfab (http://www.adfab.fr/)
24
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
25
  */
30
  * Long description of the class (if any...)
31
  *
32
  * @category Adfab
33
+ * @package Adfab_Emailcampaign
34
  * @subpackage Model
35
  * @author Arnaud Hours <arnaud.hours@adfab.fr>
36
  */
37
+ class Adfab_Emailcampaign_Model_Campaign_State_TestAllEmail extends Adfab_Emailcampaign_Model_Campaign_State_Abstract
38
  {
39
 
40
  public function getCustomerList()
app/code/community/Adfab/Emailcampaign/Model/Campaign/WelcomeReminder.php CHANGED
@@ -14,12 +14,12 @@
14
  * DISCLAIMER
15
  *
16
  * Do not edit or add to this file if you wish to upgrade
17
- * the Adfab EmailCampaign module to newer versions in the future.
18
- * If you wish to customize the Adfab EmailCampaign module for your needs
19
  * please refer to http://www.magentocommerce.com for more information.
20
  *
21
  * @category Adfab
22
- * @package Adfab_EmailCampaign
23
  * @copyright Copyright (C) 2014 Adfab (http://www.adfab.fr/)
24
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
25
  */
@@ -30,14 +30,14 @@
30
  * Long description of the class (if any...)
31
  *
32
  * @category Adfab
33
- * @package Adfab_EmailCampaign
34
  * @subpackage Model
35
  * @author Arnaud Hours <arnaud.hours@adfab.fr>
36
  */
37
- class Adfab_EmailCampaign_Model_Campaign_WelcomeReminder extends Adfab_EmailCampaign_Model_Campaign_Cron
38
  {
39
 
40
- public function process(Adfab_EmailCampaign_Model_Campaign $campaign)
41
  {
42
  $this->_init($campaign);
43
 
14
  * DISCLAIMER
15
  *
16
  * Do not edit or add to this file if you wish to upgrade
17
+ * the Adfab Emailcampaign module to newer versions in the future.
18
+ * If you wish to customize the Adfab Emailcampaign module for your needs
19
  * please refer to http://www.magentocommerce.com for more information.
20
  *
21
  * @category Adfab
22
+ * @package Adfab_Emailcampaign
23
  * @copyright Copyright (C) 2014 Adfab (http://www.adfab.fr/)
24
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
25
  */
30
  * Long description of the class (if any...)
31
  *
32
  * @category Adfab
33
+ * @package Adfab_Emailcampaign
34
  * @subpackage Model
35
  * @author Arnaud Hours <arnaud.hours@adfab.fr>
36
  */
37
+ class Adfab_Emailcampaign_Model_Campaign_WelcomeReminder extends Adfab_Emailcampaign_Model_Campaign_Cron
38
  {
39
 
40
+ public function process(Adfab_Emailcampaign_Model_Campaign $campaign)
41
  {
42
  $this->_init($campaign);
43
 
app/code/community/Adfab/Emailcampaign/Model/Campaign/WishlistReminder.php CHANGED
@@ -14,12 +14,12 @@
14
  * DISCLAIMER
15
  *
16
  * Do not edit or add to this file if you wish to upgrade
17
- * the Adfab EmailCampaign module to newer versions in the future.
18
- * If you wish to customize the Adfab EmailCampaign module for your needs
19
  * please refer to http://www.magentocommerce.com for more information.
20
  *
21
  * @category Adfab
22
- * @package Adfab_EmailCampaign
23
  * @copyright Copyright (C) 2014 Adfab (http://www.adfab.fr/)
24
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
25
  */
@@ -30,14 +30,14 @@
30
  * Long description of the class (if any...)
31
  *
32
  * @category Adfab
33
- * @package Adfab_EmailCampaign
34
  * @subpackage Model
35
  * @author Arnaud Hours <arnaud.hours@adfab.fr>
36
  */
37
- class Adfab_EmailCampaign_Model_Campaign_WishlistReminder extends Adfab_EmailCampaign_Model_Campaign_Cron
38
  {
39
 
40
- public function process(Adfab_EmailCampaign_Model_Campaign $campaign)
41
  {
42
  $this->_init($campaign);
43
 
14
  * DISCLAIMER
15
  *
16
  * Do not edit or add to this file if you wish to upgrade
17
+ * the Adfab Emailcampaign module to newer versions in the future.
18
+ * If you wish to customize the Adfab Emailcampaign module for your needs
19
  * please refer to http://www.magentocommerce.com for more information.
20
  *
21
  * @category Adfab
22
+ * @package Adfab_Emailcampaign
23
  * @copyright Copyright (C) 2014 Adfab (http://www.adfab.fr/)
24
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
25
  */
30
  * Long description of the class (if any...)
31
  *
32
  * @category Adfab
33
+ * @package Adfab_Emailcampaign
34
  * @subpackage Model
35
  * @author Arnaud Hours <arnaud.hours@adfab.fr>
36
  */
37
+ class Adfab_Emailcampaign_Model_Campaign_WishlistReminder extends Adfab_Emailcampaign_Model_Campaign_Cron
38
  {
39
 
40
+ public function process(Adfab_Emailcampaign_Model_Campaign $campaign)
41
  {
42
  $this->_init($campaign);
43
 
app/code/community/Adfab/Emailcampaign/Model/Campaign/WishlistStockAlert.php CHANGED
@@ -14,12 +14,12 @@
14
  * DISCLAIMER
15
  *
16
  * Do not edit or add to this file if you wish to upgrade
17
- * the Adfab EmailCampaign module to newer versions in the future.
18
- * If you wish to customize the Adfab EmailCampaign module for your needs
19
  * please refer to http://www.magentocommerce.com for more information.
20
  *
21
  * @category Adfab
22
- * @package Adfab_EmailCampaign
23
  * @copyright Copyright (C) 2014 Adfab (http://www.adfab.fr/)
24
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
25
  */
@@ -30,14 +30,14 @@
30
  * Long description of the class (if any...)
31
  *
32
  * @category Adfab
33
- * @package Adfab_EmailCampaign
34
  * @subpackage Model
35
  * @author Arnaud Hours <arnaud.hours@adfab.fr>
36
  */
37
- class Adfab_EmailCampaign_Model_Campaign_WishlistStockAlert extends Adfab_EmailCampaign_Model_Campaign_Cron
38
  {
39
 
40
- public function process(Adfab_EmailCampaign_Model_Campaign $campaign)
41
  {
42
  $this->_init($campaign);
43
 
14
  * DISCLAIMER
15
  *
16
  * Do not edit or add to this file if you wish to upgrade
17
+ * the Adfab Emailcampaign module to newer versions in the future.
18
+ * If you wish to customize the Adfab Emailcampaign module for your needs
19
  * please refer to http://www.magentocommerce.com for more information.
20
  *
21
  * @category Adfab
22
+ * @package Adfab_Emailcampaign
23
  * @copyright Copyright (C) 2014 Adfab (http://www.adfab.fr/)
24
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
25
  */
30
  * Long description of the class (if any...)
31
  *
32
  * @category Adfab
33
+ * @package Adfab_Emailcampaign
34
  * @subpackage Model
35
  * @author Arnaud Hours <arnaud.hours@adfab.fr>
36
  */
37
+ class Adfab_Emailcampaign_Model_Campaign_WishlistStockAlert extends Adfab_Emailcampaign_Model_Campaign_Cron
38
  {
39
 
40
+ public function process(Adfab_Emailcampaign_Model_Campaign $campaign)
41
  {
42
  $this->_init($campaign);
43
 
app/code/community/Adfab/Emailcampaign/Model/Connector/Abstract.php CHANGED
@@ -14,12 +14,12 @@
14
  * DISCLAIMER
15
  *
16
  * Do not edit or add to this file if you wish to upgrade
17
- * the Adfab EmailCampaign module to newer versions in the future.
18
- * If you wish to customize the Adfab EmailCampaign module for your needs
19
  * please refer to http://www.magentocommerce.com for more information.
20
  *
21
  * @category Adfab
22
- * @package Adfab_EmailCampaign
23
  * @copyright Copyright (C) 2014 Adfab (http://www.adfab.fr/)
24
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
25
  */
@@ -30,19 +30,19 @@
30
  * Long description of the class (if any...)
31
  *
32
  * @category Adfab
33
- * @package Adfab_EmailCampaign
34
  * @subpackage Model
35
  * @author Arnaud Hours <arnaud.hours@adfab.fr>
36
  */
37
- abstract class Adfab_EmailCampaign_Model_Connector_Abstract
38
  {
39
 
40
  /**
41
  *
42
- * @param Adfab_EmailCampaign_Model_Campaign $campaign
43
  * @param Mage_Customer_Model_Resource_Customer_Collection $customer
44
  * @param array $data
45
  */
46
- abstract public function sendMail(Adfab_EmailCampaign_Model_Campaign $campaign, Mage_Customer_Model_Resource_Customer_Collection $customers, $data);
47
 
48
  }
14
  * DISCLAIMER
15
  *
16
  * Do not edit or add to this file if you wish to upgrade
17
+ * the Adfab Emailcampaign module to newer versions in the future.
18
+ * If you wish to customize the Adfab Emailcampaign module for your needs
19
  * please refer to http://www.magentocommerce.com for more information.
20
  *
21
  * @category Adfab
22
+ * @package Adfab_Emailcampaign
23
  * @copyright Copyright (C) 2014 Adfab (http://www.adfab.fr/)
24
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
25
  */
30
  * Long description of the class (if any...)
31
  *
32
  * @category Adfab
33
+ * @package Adfab_Emailcampaign
34
  * @subpackage Model
35
  * @author Arnaud Hours <arnaud.hours@adfab.fr>
36
  */
37
+ abstract class Adfab_Emailcampaign_Model_Connector_Abstract
38
  {
39
 
40
  /**
41
  *
42
+ * @param Adfab_Emailcampaign_Model_Campaign $campaign
43
  * @param Mage_Customer_Model_Resource_Customer_Collection $customer
44
  * @param array $data
45
  */
46
+ abstract public function sendMail(Adfab_Emailcampaign_Model_Campaign $campaign, Mage_Customer_Model_Resource_Customer_Collection $customers, $data);
47
 
48
  }
app/code/community/Adfab/Emailcampaign/Model/Connector/Magento.php CHANGED
@@ -14,12 +14,12 @@
14
  * DISCLAIMER
15
  *
16
  * Do not edit or add to this file if you wish to upgrade
17
- * the Adfab EmailCampaign module to newer versions in the future.
18
- * If you wish to customize the Adfab EmailCampaign module for your needs
19
  * please refer to http://www.magentocommerce.com for more information.
20
  *
21
  * @category Adfab
22
- * @package Adfab_EmailCampaign
23
  * @copyright Copyright (C) 2014 Adfab (http://www.adfab.fr/)
24
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
25
  */
@@ -30,20 +30,20 @@
30
  * Long description of the class (if any...)
31
  *
32
  * @category Adfab
33
- * @package Adfab_EmailCampaign
34
  * @subpackage Model
35
  * @author Arnaud Hours <arnaud.hours@adfab.fr>
36
  */
37
- class Adfab_EmailCampaign_Model_Connector_Magento extends Adfab_EmailCampaign_Model_Connector_Abstract
38
  {
39
 
40
  /**
41
  *
42
- * @param Adfab_EmailCampaign_Model_Campaign $campaign
43
  * @param Mage_Customer_Model_Resource_Customer_Collection $customer
44
  * @param array $data
45
  */
46
- public function sendMail(Adfab_EmailCampaign_Model_Campaign $campaign, Mage_Customer_Model_Resource_Customer_Collection $customers, $data)
47
  {
48
  $mailTemplate = Mage::getModel('core/email_template');
49
  $closure = is_object($data) && ($data instanceof Closure);
14
  * DISCLAIMER
15
  *
16
  * Do not edit or add to this file if you wish to upgrade
17
+ * the Adfab Emailcampaign module to newer versions in the future.
18
+ * If you wish to customize the Adfab Emailcampaign module for your needs
19
  * please refer to http://www.magentocommerce.com for more information.
20
  *
21
  * @category Adfab
22
+ * @package Adfab_Emailcampaign
23
  * @copyright Copyright (C) 2014 Adfab (http://www.adfab.fr/)
24
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
25
  */
30
  * Long description of the class (if any...)
31
  *
32
  * @category Adfab
33
+ * @package Adfab_Emailcampaign
34
  * @subpackage Model
35
  * @author Arnaud Hours <arnaud.hours@adfab.fr>
36
  */
37
+ class Adfab_Emailcampaign_Model_Connector_Magento extends Adfab_Emailcampaign_Model_Connector_Abstract
38
  {
39
 
40
  /**
41
  *
42
+ * @param Adfab_Emailcampaign_Model_Campaign $campaign
43
  * @param Mage_Customer_Model_Resource_Customer_Collection $customer
44
  * @param array $data
45
  */
46
+ public function sendMail(Adfab_Emailcampaign_Model_Campaign $campaign, Mage_Customer_Model_Resource_Customer_Collection $customers, $data)
47
  {
48
  $mailTemplate = Mage::getModel('core/email_template');
49
  $closure = is_object($data) && ($data instanceof Closure);
app/code/community/Adfab/Emailcampaign/Model/Connector/Void.php CHANGED
@@ -14,12 +14,12 @@
14
  * DISCLAIMER
15
  *
16
  * Do not edit or add to this file if you wish to upgrade
17
- * the Adfab EmailCampaign module to newer versions in the future.
18
- * If you wish to customize the Adfab EmailCampaign module for your needs
19
  * please refer to http://www.magentocommerce.com for more information.
20
  *
21
  * @category Adfab
22
- * @package Adfab_EmailCampaign
23
  * @copyright Copyright (C) 2014 Adfab (http://www.adfab.fr/)
24
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
25
  */
@@ -30,20 +30,20 @@
30
  * Long description of the class (if any...)
31
  *
32
  * @category Adfab
33
- * @package Adfab_EmailCampaign
34
  * @subpackage Model
35
  * @author Arnaud Hours <arnaud.hours@adfab.fr>
36
  */
37
- class Adfab_EmailCampaign_Model_Connector_Void extends Adfab_EmailCampaign_Model_Connector_Abstract
38
  {
39
 
40
  /**
41
  *
42
- * @param Adfab_EmailCampaign_Model_Campaign $campaign
43
  * @param Mage_Customer_Model_Resource_Customer_Collection $customer
44
  * @param array $data
45
  */
46
- public function sendMail(Adfab_EmailCampaign_Model_Campaign $campaign, Mage_Customer_Model_Resource_Customer_Collection $customers, $data)
47
  {
48
  }
49
 
14
  * DISCLAIMER
15
  *
16
  * Do not edit or add to this file if you wish to upgrade
17
+ * the Adfab Emailcampaign module to newer versions in the future.
18
+ * If you wish to customize the Adfab Emailcampaign module for your needs
19
  * please refer to http://www.magentocommerce.com for more information.
20
  *
21
  * @category Adfab
22
+ * @package Adfab_Emailcampaign
23
  * @copyright Copyright (C) 2014 Adfab (http://www.adfab.fr/)
24
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
25
  */
30
  * Long description of the class (if any...)
31
  *
32
  * @category Adfab
33
+ * @package Adfab_Emailcampaign
34
  * @subpackage Model
35
  * @author Arnaud Hours <arnaud.hours@adfab.fr>
36
  */
37
+ class Adfab_Emailcampaign_Model_Connector_Void extends Adfab_Emailcampaign_Model_Connector_Abstract
38
  {
39
 
40
  /**
41
  *
42
+ * @param Adfab_Emailcampaign_Model_Campaign $campaign
43
  * @param Mage_Customer_Model_Resource_Customer_Collection $customer
44
  * @param array $data
45
  */
46
+ public function sendMail(Adfab_Emailcampaign_Model_Campaign $campaign, Mage_Customer_Model_Resource_Customer_Collection $customers, $data)
47
  {
48
  }
49
 
app/code/community/Adfab/Emailcampaign/Model/Cron.php CHANGED
@@ -14,12 +14,12 @@
14
  * DISCLAIMER
15
  *
16
  * Do not edit or add to this file if you wish to upgrade
17
- * the Adfab EmailCampaign module to newer versions in the future.
18
- * If you wish to customize the Adfab EmailCampaign module for your needs
19
  * please refer to http://www.magentocommerce.com for more information.
20
  *
21
  * @category Adfab
22
- * @package Adfab_EmailCampaign
23
  * @copyright Copyright (C) 2014 Adfab (http://www.adfab.fr/)
24
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
25
  */
@@ -30,18 +30,18 @@
30
  * Long description of the class (if any...)
31
  *
32
  * @category Adfab
33
- * @package Adfab_EmailCampaign
34
  * @subpackage Model
35
  * @author Arnaud Hours <arnaud.hours@adfab.fr>
36
  */
37
- class Adfab_EmailCampaign_Model_Cron
38
  {
39
 
40
  /**
41
  * redispatch, but only emailcampaign cronjobs this time.
42
  *
43
  * @param Varien_Event_Observer $observer
44
- * @return Adfab_EmailCampaign_Model_Cron
45
  */
46
  public function dispatch ($observer)
47
  {
14
  * DISCLAIMER
15
  *
16
  * Do not edit or add to this file if you wish to upgrade
17
+ * the Adfab Emailcampaign module to newer versions in the future.
18
+ * If you wish to customize the Adfab Emailcampaign module for your needs
19
  * please refer to http://www.magentocommerce.com for more information.
20
  *
21
  * @category Adfab
22
+ * @package Adfab_Emailcampaign
23
  * @copyright Copyright (C) 2014 Adfab (http://www.adfab.fr/)
24
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
25
  */
30
  * Long description of the class (if any...)
31
  *
32
  * @category Adfab
33
+ * @package Adfab_Emailcampaign
34
  * @subpackage Model
35
  * @author Arnaud Hours <arnaud.hours@adfab.fr>
36
  */
37
+ class Adfab_Emailcampaign_Model_Cron
38
  {
39
 
40
  /**
41
  * redispatch, but only emailcampaign cronjobs this time.
42
  *
43
  * @param Varien_Event_Observer $observer
44
+ * @return Adfab_Emailcampaign_Model_Cron
45
  */
46
  public function dispatch ($observer)
47
  {
app/code/community/Adfab/Emailcampaign/Model/Cron/Observer.php CHANGED
@@ -14,12 +14,12 @@
14
  * DISCLAIMER
15
  *
16
  * Do not edit or add to this file if you wish to upgrade
17
- * the Adfab EmailCampaign module to newer versions in the future.
18
- * If you wish to customize the Adfab EmailCampaign module for your needs
19
  * please refer to http://www.magentocommerce.com for more information.
20
  *
21
  * @category Adfab
22
- * @package Adfab_EmailCampaign
23
  * @copyright Copyright (C) 2014 Adfab (http://www.adfab.fr/)
24
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
25
  */
@@ -29,11 +29,11 @@
29
  * Methods are overloded from magento ce 1.7.0.2
30
  *
31
  * @category Adfab
32
- * @package Adfab_EmailCampaign
33
  * @subpackage Model
34
  * @author Arnaud Hours <arnaud.hours@adfab.fr>
35
  */
36
- class Adfab_EmailCampaign_Model_Cron_Observer extends Mage_Cron_Model_Observer
37
  {
38
 
39
  const EMAILCAMPAIGN_CACHE_KEY_LAST_SCHEDULE_GENERATE_AT = 'emailcampaign_cron_last_history_cleanup_at';
@@ -189,7 +189,7 @@ class Adfab_EmailCampaign_Model_Cron_Observer extends Mage_Cron_Model_Observer
189
  protected function _getCronCampaigns()
190
  {
191
  if (is_null($this->_campaigns)) {
192
- $this->_campaigns = Mage::helper('adfab_emailcampaign')->getCampaignsByType(Adfab_EmailCampaign_Model_Campaign::TYPE_CRON);
193
  }
194
  return $this->_campaigns;
195
  }
14
  * DISCLAIMER
15
  *
16
  * Do not edit or add to this file if you wish to upgrade
17
+ * the Adfab Emailcampaign module to newer versions in the future.
18
+ * If you wish to customize the Adfab Emailcampaign module for your needs
19
  * please refer to http://www.magentocommerce.com for more information.
20
  *
21
  * @category Adfab
22
+ * @package Adfab_Emailcampaign
23
  * @copyright Copyright (C) 2014 Adfab (http://www.adfab.fr/)
24
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
25
  */
29
  * Methods are overloded from magento ce 1.7.0.2
30
  *
31
  * @category Adfab
32
+ * @package Adfab_Emailcampaign
33
  * @subpackage Model
34
  * @author Arnaud Hours <arnaud.hours@adfab.fr>
35
  */
36
+ class Adfab_Emailcampaign_Model_Cron_Observer extends Mage_Cron_Model_Observer
37
  {
38
 
39
  const EMAILCAMPAIGN_CACHE_KEY_LAST_SCHEDULE_GENERATE_AT = 'emailcampaign_cron_last_history_cleanup_at';
189
  protected function _getCronCampaigns()
190
  {
191
  if (is_null($this->_campaigns)) {
192
+ $this->_campaigns = Mage::helper('adfab_emailcampaign')->getCampaignsByType(Adfab_Emailcampaign_Model_Campaign::TYPE_CRON);
193
  }
194
  return $this->_campaigns;
195
  }
app/code/community/Adfab/Emailcampaign/Model/Flag.php CHANGED
@@ -14,16 +14,16 @@
14
  * DISCLAIMER
15
  *
16
  * Do not edit or add to this file if you wish to upgrade
17
- * the Adfab EmailCampaign module to newer versions in the future.
18
- * If you wish to customize the Adfab EmailCampaign module for your needs
19
  * please refer to http://www.magentocommerce.com for more information.
20
  *
21
  * @category Adfab
22
- * @package Adfab_EmailCampaign
23
  * @copyright Copyright (C) 2014 Adfab (http://www.adfab.fr/)
24
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
25
  */
26
- class Adfab_EmailCampaign_Model_Flag extends Mage_Core_Model_Flag {
27
 
28
  /**
29
  * Flag code
14
  * DISCLAIMER
15
  *
16
  * Do not edit or add to this file if you wish to upgrade
17
+ * the Adfab Emailcampaign module to newer versions in the future.
18
+ * If you wish to customize the Adfab Emailcampaign module for your needs
19
  * please refer to http://www.magentocommerce.com for more information.
20
  *
21
  * @category Adfab
22
+ * @package Adfab_Emailcampaign
23
  * @copyright Copyright (C) 2014 Adfab (http://www.adfab.fr/)
24
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
25
  */
26
+ class Adfab_Emailcampaign_Model_Flag extends Mage_Core_Model_Flag {
27
 
28
  /**
29
  * Flag code
app/code/community/Adfab/Emailcampaign/Model/Observer.php CHANGED
@@ -14,12 +14,12 @@
14
  * DISCLAIMER
15
  *
16
  * Do not edit or add to this file if you wish to upgrade
17
- * the Adfab EmailCampaign module to newer versions in the future.
18
- * If you wish to customize the Adfab EmailCampaign module for your needs
19
  * please refer to http://www.magentocommerce.com for more information.
20
  *
21
  * @category Adfab
22
- * @package Adfab_EmailCampaign
23
  * @copyright Copyright (C) 2014 Adfab (http://www.adfab.fr/)
24
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
25
  */
@@ -30,18 +30,18 @@
30
  * Long description of the class (if any...)
31
  *
32
  * @category Adfab
33
- * @package Adfab_EmailCampaign
34
  * @subpackage Model
35
  * @author Arnaud Hours <arnaud.hours@adfab.fr>
36
  */
37
- class Adfab_EmailCampaign_Model_Observer extends Mage_Core_Model_Abstract
38
  {
39
 
40
  /**
41
  * add campaign events into config
42
  *
43
  * @param Varien_Event_Observer $event
44
- * @return Adfab_EmailCampaign_Model_Observer
45
  */
46
  public function addObservers($event)
47
  {
@@ -81,7 +81,7 @@ class Adfab_EmailCampaign_Model_Observer extends Mage_Core_Model_Abstract
81
  $configs = Mage::helper('adfab_emailcampaign')->getCampaignConfigByNodeValue('event', $observer->getEvent()->getName());
82
  foreach ($configs as $config) {
83
  $campaigns = Mage::getResourceModel('adfab_emailcampaign/campaign_collection')
84
- ->addFieldToFilter('status', array('eq' => Adfab_EmailCampaign_Model_Status::STATUS_ENABLED))
85
  ->addFieldToFilter('code', array('eq' => (string)$config->getName()));
86
  $class = Mage::getModel((string)$config->class);
87
  foreach ($campaigns as $campaign) {
14
  * DISCLAIMER
15
  *
16
  * Do not edit or add to this file if you wish to upgrade
17
+ * the Adfab Emailcampaign module to newer versions in the future.
18
+ * If you wish to customize the Adfab Emailcampaign module for your needs
19
  * please refer to http://www.magentocommerce.com for more information.
20
  *
21
  * @category Adfab
22
+ * @package Adfab_Emailcampaign
23
  * @copyright Copyright (C) 2014 Adfab (http://www.adfab.fr/)
24
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
25
  */
30
  * Long description of the class (if any...)
31
  *
32
  * @category Adfab
33
+ * @package Adfab_Emailcampaign
34
  * @subpackage Model
35
  * @author Arnaud Hours <arnaud.hours@adfab.fr>
36
  */
37
+ class Adfab_Emailcampaign_Model_Observer extends Mage_Core_Model_Abstract
38
  {
39
 
40
  /**
41
  * add campaign events into config
42
  *
43
  * @param Varien_Event_Observer $event
44
+ * @return Adfab_Emailcampaign_Model_Observer
45
  */
46
  public function addObservers($event)
47
  {
81
  $configs = Mage::helper('adfab_emailcampaign')->getCampaignConfigByNodeValue('event', $observer->getEvent()->getName());
82
  foreach ($configs as $config) {
83
  $campaigns = Mage::getResourceModel('adfab_emailcampaign/campaign_collection')
84
+ ->addFieldToFilter('status', array('eq' => Adfab_Emailcampaign_Model_Status::STATUS_ENABLED))
85
  ->addFieldToFilter('code', array('eq' => (string)$config->getName()));
86
  $class = Mage::getModel((string)$config->class);
87
  foreach ($campaigns as $campaign) {
app/code/community/Adfab/Emailcampaign/Model/Resource/Adminhtml/Notification.php CHANGED
@@ -14,12 +14,12 @@
14
  * DISCLAIMER
15
  *
16
  * Do not edit or add to this file if you wish to upgrade
17
- * the Adfab EmailCampaign module to newer versions in the future.
18
- * If you wish to customize the Adfab EmailCampaign module for your needs
19
  * please refer to http://www.magentocommerce.com for more information.
20
  *
21
  * @category Adfab
22
- * @package Adfab_EmailCampaign
23
  * @copyright Copyright (C) 2014 Adfab (http://www.adfab.fr/)
24
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
25
  */
@@ -30,11 +30,11 @@
30
  * Long description of the class (if any...)
31
  *
32
  * @category Adfab
33
- * @package Adfab_EmailCampaign
34
  * @subpackage Model
35
  * @author Arnaud Hours <arnaud.hours@adfab.fr>
36
  */
37
- class Adfab_EmailCampaign_Model_Resource_Adminhtml_Notification extends Mage_Core_Model_Resource_Db_Abstract
38
  {
39
 
40
  /**
14
  * DISCLAIMER
15
  *
16
  * Do not edit or add to this file if you wish to upgrade
17
+ * the Adfab Emailcampaign module to newer versions in the future.
18
+ * If you wish to customize the Adfab Emailcampaign module for your needs
19
  * please refer to http://www.magentocommerce.com for more information.
20
  *
21
  * @category Adfab
22
+ * @package Adfab_Emailcampaign
23
  * @copyright Copyright (C) 2014 Adfab (http://www.adfab.fr/)
24
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
25
  */
30
  * Long description of the class (if any...)
31
  *
32
  * @category Adfab
33
+ * @package Adfab_Emailcampaign
34
  * @subpackage Model
35
  * @author Arnaud Hours <arnaud.hours@adfab.fr>
36
  */
37
+ class Adfab_Emailcampaign_Model_Resource_Adminhtml_Notification extends Mage_Core_Model_Resource_Db_Abstract
38
  {
39
 
40
  /**
app/code/community/Adfab/Emailcampaign/Model/Resource/Adminhtml/Notification/Collection.php CHANGED
@@ -14,12 +14,12 @@
14
  * DISCLAIMER
15
  *
16
  * Do not edit or add to this file if you wish to upgrade
17
- * the Adfab EmailCampaign module to newer versions in the future.
18
- * If you wish to customize the Adfab EmailCampaign module for your needs
19
  * please refer to http://www.magentocommerce.com for more information.
20
  *
21
  * @category Adfab
22
- * @package Adfab_EmailCampaign
23
  * @copyright Copyright (C) 2014 Adfab (http://www.adfab.fr/)
24
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
25
  */
@@ -30,11 +30,11 @@
30
  * Long description of the class (if any...)
31
  *
32
  * @category Adfab
33
- * @package Adfab_EmailCampaign
34
  * @subpackage Model
35
  * @author Arnaud Hours <arnaud.hours@adfab.fr>
36
  */
37
- class Adfab_EmailCampaign_Model_Resource_Adminhtml_Notification_Collection extends Mage_Core_Model_Resource_Db_Collection_Abstract
38
  {
39
 
40
  public function _construct()
14
  * DISCLAIMER
15
  *
16
  * Do not edit or add to this file if you wish to upgrade
17
+ * the Adfab Emailcampaign module to newer versions in the future.
18
+ * If you wish to customize the Adfab Emailcampaign module for your needs
19
  * please refer to http://www.magentocommerce.com for more information.
20
  *
21
  * @category Adfab
22
+ * @package Adfab_Emailcampaign
23
  * @copyright Copyright (C) 2014 Adfab (http://www.adfab.fr/)
24
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
25
  */
30
  * Long description of the class (if any...)
31
  *
32
  * @category Adfab
33
+ * @package Adfab_Emailcampaign
34
  * @subpackage Model
35
  * @author Arnaud Hours <arnaud.hours@adfab.fr>
36
  */
37
+ class Adfab_Emailcampaign_Model_Resource_Adminhtml_Notification_Collection extends Mage_Core_Model_Resource_Db_Collection_Abstract
38
  {
39
 
40
  public function _construct()
app/code/community/Adfab/Emailcampaign/Model/Resource/Campaign.php CHANGED
@@ -14,12 +14,12 @@
14
  * DISCLAIMER
15
  *
16
  * Do not edit or add to this file if you wish to upgrade
17
- * the Adfab EmailCampaign module to newer versions in the future.
18
- * If you wish to customize the Adfab EmailCampaign module for your needs
19
  * please refer to http://www.magentocommerce.com for more information.
20
  *
21
  * @category Adfab
22
- * @package Adfab_EmailCampaign
23
  * @copyright Copyright (C) 2014 Adfab (http://www.adfab.fr/)
24
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
25
  */
@@ -30,11 +30,11 @@
30
  * Long description of the class (if any...)
31
  *
32
  * @category Adfab
33
- * @package Adfab_EmailCampaign
34
  * @subpackage Model
35
  * @author Arnaud Hours <arnaud.hours@adfab.fr>
36
  */
37
- class Adfab_EmailCampaign_Model_Resource_Campaign extends Mage_Core_Model_Resource_Db_Abstract
38
  {
39
 
40
  /**
14
  * DISCLAIMER
15
  *
16
  * Do not edit or add to this file if you wish to upgrade
17
+ * the Adfab Emailcampaign module to newer versions in the future.
18
+ * If you wish to customize the Adfab Emailcampaign module for your needs
19
  * please refer to http://www.magentocommerce.com for more information.
20
  *
21
  * @category Adfab
22
+ * @package Adfab_Emailcampaign
23
  * @copyright Copyright (C) 2014 Adfab (http://www.adfab.fr/)
24
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
25
  */
30
  * Long description of the class (if any...)
31
  *
32
  * @category Adfab
33
+ * @package Adfab_Emailcampaign
34
  * @subpackage Model
35
  * @author Arnaud Hours <arnaud.hours@adfab.fr>
36
  */
37
+ class Adfab_Emailcampaign_Model_Resource_Campaign extends Mage_Core_Model_Resource_Db_Abstract
38
  {
39
 
40
  /**
app/code/community/Adfab/Emailcampaign/Model/Resource/Campaign/Collection.php CHANGED
@@ -14,12 +14,12 @@
14
  * DISCLAIMER
15
  *
16
  * Do not edit or add to this file if you wish to upgrade
17
- * the Adfab EmailCampaign module to newer versions in the future.
18
- * If you wish to customize the Adfab EmailCampaign module for your needs
19
  * please refer to http://www.magentocommerce.com for more information.
20
  *
21
  * @category Adfab
22
- * @package Adfab_EmailCampaign
23
  * @copyright Copyright (C) 2014 Adfab (http://www.adfab.fr/)
24
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
25
  */
@@ -30,11 +30,11 @@
30
  * Long description of the class (if any...)
31
  *
32
  * @category Adfab
33
- * @package Adfab_EmailCampaign
34
  * @subpackage Model
35
  * @author Arnaud Hours <arnaud.hours@adfab.fr>
36
  */
37
- class Adfab_EmailCampaign_Model_Resource_Campaign_Collection extends Mage_Core_Model_Resource_Db_Collection_Abstract
38
  {
39
 
40
  public function _construct()
14
  * DISCLAIMER
15
  *
16
  * Do not edit or add to this file if you wish to upgrade
17
+ * the Adfab Emailcampaign module to newer versions in the future.
18
+ * If you wish to customize the Adfab Emailcampaign module for your needs
19
  * please refer to http://www.magentocommerce.com for more information.
20
  *
21
  * @category Adfab
22
+ * @package Adfab_Emailcampaign
23
  * @copyright Copyright (C) 2014 Adfab (http://www.adfab.fr/)
24
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
25
  */
30
  * Long description of the class (if any...)
31
  *
32
  * @category Adfab
33
+ * @package Adfab_Emailcampaign
34
  * @subpackage Model
35
  * @author Arnaud Hours <arnaud.hours@adfab.fr>
36
  */
37
+ class Adfab_Emailcampaign_Model_Resource_Campaign_Collection extends Mage_Core_Model_Resource_Db_Collection_Abstract
38
  {
39
 
40
  public function _construct()
app/code/community/Adfab/Emailcampaign/Model/Source/Campaign.php CHANGED
@@ -14,12 +14,12 @@
14
  * DISCLAIMER
15
  *
16
  * Do not edit or add to this file if you wish to upgrade
17
- * the Adfab EmailCampaign module to newer versions in the future.
18
- * If you wish to customize the Adfab EmailCampaign module for your needs
19
  * please refer to http://www.magentocommerce.com for more information.
20
  *
21
  * @category Adfab
22
- * @package Adfab_EmailCampaign
23
  * @copyright Copyright (C) 2014 Adfab (http://www.adfab.fr/)
24
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
25
  */
@@ -30,11 +30,11 @@
30
  * Long description of the class (if any...)
31
  *
32
  * @category Adfab
33
- * @package Adfab_EmailCampaign
34
  * @subpackage Model
35
  * @author Arnaud Hours <arnaud.hours@adfab.fr>
36
  */
37
- class Adfab_EmailCampaign_Model_Source_Campaign
38
  {
39
 
40
  protected $_campaigns;
14
  * DISCLAIMER
15
  *
16
  * Do not edit or add to this file if you wish to upgrade
17
+ * the Adfab Emailcampaign module to newer versions in the future.
18
+ * If you wish to customize the Adfab Emailcampaign module for your needs
19
  * please refer to http://www.magentocommerce.com for more information.
20
  *
21
  * @category Adfab
22
+ * @package Adfab_Emailcampaign
23
  * @copyright Copyright (C) 2014 Adfab (http://www.adfab.fr/)
24
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
25
  */
30
  * Long description of the class (if any...)
31
  *
32
  * @category Adfab
33
+ * @package Adfab_Emailcampaign
34
  * @subpackage Model
35
  * @author Arnaud Hours <arnaud.hours@adfab.fr>
36
  */
37
+ class Adfab_Emailcampaign_Model_Source_Campaign
38
  {
39
 
40
  protected $_campaigns;
app/code/community/Adfab/Emailcampaign/Model/Source/Connector.php CHANGED
@@ -14,12 +14,12 @@
14
  * DISCLAIMER
15
  *
16
  * Do not edit or add to this file if you wish to upgrade
17
- * the Adfab EmailCampaign module to newer versions in the future.
18
- * If you wish to customize the Adfab EmailCampaign module for your needs
19
  * please refer to http://www.magentocommerce.com for more information.
20
  *
21
  * @category Adfab
22
- * @package Adfab_EmailCampaign
23
  * @copyright Copyright (C) 2014 Adfab (http://www.adfab.fr/)
24
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
25
  */
@@ -30,11 +30,11 @@
30
  * Long description of the class (if any...)
31
  *
32
  * @category Adfab
33
- * @package Adfab_EmailCampaign
34
  * @subpackage Model
35
  * @author Arnaud Hours <arnaud.hours@adfab.fr>
36
  */
37
- class Adfab_EmailCampaign_Model_Source_Connector
38
  {
39
 
40
  protected $_connectors;
14
  * DISCLAIMER
15
  *
16
  * Do not edit or add to this file if you wish to upgrade
17
+ * the Adfab Emailcampaign module to newer versions in the future.
18
+ * If you wish to customize the Adfab Emailcampaign module for your needs
19
  * please refer to http://www.magentocommerce.com for more information.
20
  *
21
  * @category Adfab
22
+ * @package Adfab_Emailcampaign
23
  * @copyright Copyright (C) 2014 Adfab (http://www.adfab.fr/)
24
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
25
  */
30
  * Long description of the class (if any...)
31
  *
32
  * @category Adfab
33
+ * @package Adfab_Emailcampaign
34
  * @subpackage Model
35
  * @author Arnaud Hours <arnaud.hours@adfab.fr>
36
  */
37
+ class Adfab_Emailcampaign_Model_Source_Connector
38
  {
39
 
40
  protected $_connectors;
app/code/community/Adfab/Emailcampaign/Model/Source/Mode.php CHANGED
@@ -14,12 +14,12 @@
14
  * DISCLAIMER
15
  *
16
  * Do not edit or add to this file if you wish to upgrade
17
- * the Adfab EmailCampaign module to newer versions in the future.
18
- * If you wish to customize the Adfab EmailCampaign module for your needs
19
  * please refer to http://www.magentocommerce.com for more information.
20
  *
21
  * @category Adfab
22
- * @package Adfab_EmailCampaign
23
  * @copyright Copyright (C) 2014 Adfab (http://www.adfab.fr/)
24
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
25
  */
@@ -30,11 +30,11 @@
30
  * Long description of the class (if any...)
31
  *
32
  * @category Adfab
33
- * @package Adfab_EmailCampaign
34
  * @subpackage Model
35
  * @author Arnaud Hours <arnaud.hours@adfab.fr>
36
  */
37
- class Adfab_EmailCampaign_Model_Source_Mode
38
  {
39
 
40
  const TEST = 'test';
14
  * DISCLAIMER
15
  *
16
  * Do not edit or add to this file if you wish to upgrade
17
+ * the Adfab Emailcampaign module to newer versions in the future.
18
+ * If you wish to customize the Adfab Emailcampaign module for your needs
19
  * please refer to http://www.magentocommerce.com for more information.
20
  *
21
  * @category Adfab
22
+ * @package Adfab_Emailcampaign
23
  * @copyright Copyright (C) 2014 Adfab (http://www.adfab.fr/)
24
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
25
  */
30
  * Long description of the class (if any...)
31
  *
32
  * @category Adfab
33
+ * @package Adfab_Emailcampaign
34
  * @subpackage Model
35
  * @author Arnaud Hours <arnaud.hours@adfab.fr>
36
  */
37
+ class Adfab_Emailcampaign_Model_Source_Mode
38
  {
39
 
40
  const TEST = 'test';
app/code/community/Adfab/Emailcampaign/Model/Source/Template.php CHANGED
@@ -14,12 +14,12 @@
14
  * DISCLAIMER
15
  *
16
  * Do not edit or add to this file if you wish to upgrade
17
- * the Adfab EmailCampaign module to newer versions in the future.
18
- * If you wish to customize the Adfab EmailCampaign module for your needs
19
  * please refer to http://www.magentocommerce.com for more information.
20
  *
21
  * @category Adfab
22
- * @package Adfab_EmailCampaign
23
  * @copyright Copyright (C) 2014 Adfab (http://www.adfab.fr/)
24
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
25
  */
@@ -30,11 +30,11 @@
30
  * Long description of the class (if any...)
31
  *
32
  * @category Adfab
33
- * @package Adfab_EmailCampaign
34
  * @subpackage Model
35
  * @author Arnaud Hours <arnaud.hours@adfab.fr>
36
  */
37
- class Adfab_EmailCampaign_Model_Source_Template
38
  {
39
 
40
  /**
14
  * DISCLAIMER
15
  *
16
  * Do not edit or add to this file if you wish to upgrade
17
+ * the Adfab Emailcampaign module to newer versions in the future.
18
+ * If you wish to customize the Adfab Emailcampaign module for your needs
19
  * please refer to http://www.magentocommerce.com for more information.
20
  *
21
  * @category Adfab
22
+ * @package Adfab_Emailcampaign
23
  * @copyright Copyright (C) 2014 Adfab (http://www.adfab.fr/)
24
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
25
  */
30
  * Long description of the class (if any...)
31
  *
32
  * @category Adfab
33
+ * @package Adfab_Emailcampaign
34
  * @subpackage Model
35
  * @author Arnaud Hours <arnaud.hours@adfab.fr>
36
  */
37
+ class Adfab_Emailcampaign_Model_Source_Template
38
  {
39
 
40
  /**
app/code/community/Adfab/Emailcampaign/Model/Status.php CHANGED
@@ -14,12 +14,12 @@
14
  * DISCLAIMER
15
  *
16
  * Do not edit or add to this file if you wish to upgrade
17
- * the Adfab EmailCampaign module to newer versions in the future.
18
- * If you wish to customize the Adfab EmailCampaign module for your needs
19
  * please refer to http://www.magentocommerce.com for more information.
20
  *
21
  * @category Adfab
22
- * @package Adfab_EmailCampaign
23
  * @copyright Copyright (C) 2014 Adfab (http://www.adfab.fr/)
24
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
25
  */
@@ -30,11 +30,11 @@
30
  * Long description of the class (if any...)
31
  *
32
  * @category Adfab
33
- * @package Adfab_EmailCampaign
34
  * @subpackage Model
35
  * @author Arnaud Hours <arnaud.hours@adfab.fr>
36
  */
37
- class Adfab_EmailCampaign_Model_Status
38
  {
39
 
40
  const STATUS_ENABLED = 1;
14
  * DISCLAIMER
15
  *
16
  * Do not edit or add to this file if you wish to upgrade
17
+ * the Adfab Emailcampaign module to newer versions in the future.
18
+ * If you wish to customize the Adfab Emailcampaign module for your needs
19
  * please refer to http://www.magentocommerce.com for more information.
20
  *
21
  * @category Adfab
22
+ * @package Adfab_Emailcampaign
23
  * @copyright Copyright (C) 2014 Adfab (http://www.adfab.fr/)
24
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
25
  */
30
  * Long description of the class (if any...)
31
  *
32
  * @category Adfab
33
+ * @package Adfab_Emailcampaign
34
  * @subpackage Model
35
  * @author Arnaud Hours <arnaud.hours@adfab.fr>
36
  */
37
+ class Adfab_Emailcampaign_Model_Status
38
  {
39
 
40
  const STATUS_ENABLED = 1;
app/code/community/Adfab/Emailcampaign/Test/Model/Campaign.php CHANGED
@@ -14,12 +14,12 @@
14
  * DISCLAIMER
15
  *
16
  * Do not edit or add to this file if you wish to upgrade
17
- * the Adfab EmailCampaign module to newer versions in the future.
18
- * If you wish to customize the Adfab EmailCampaign module for your needs
19
  * please refer to http://www.magentocommerce.com for more information.
20
  *
21
  * @category Adfab
22
- * @package Adfab_EmailCampaign
23
  * @copyright Copyright (C) 2014 Adfab (http://www.adfab.fr/)
24
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
25
  */
@@ -30,11 +30,11 @@
30
  * Long description of the class (if any...)
31
  *
32
  * @category Adfab
33
- * @package Adfab_EmailCampaign
34
  * @subpackage Model
35
  * @author Arnaud Hours <arnaud.hours@adfab.fr>
36
  */
37
- class Adfab_EmailCampaign_Test_Model_Campaign extends EcomDev_PHPUnit_Test_Case
38
  {
39
 
40
  /**
14
  * DISCLAIMER
15
  *
16
  * Do not edit or add to this file if you wish to upgrade
17
+ * the Adfab Emailcampaign module to newer versions in the future.
18
+ * If you wish to customize the Adfab Emailcampaign module for your needs
19
  * please refer to http://www.magentocommerce.com for more information.
20
  *
21
  * @category Adfab
22
+ * @package Adfab_Emailcampaign
23
  * @copyright Copyright (C) 2014 Adfab (http://www.adfab.fr/)
24
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
25
  */
30
  * Long description of the class (if any...)
31
  *
32
  * @category Adfab
33
+ * @package Adfab_Emailcampaign
34
  * @subpackage Model
35
  * @author Arnaud Hours <arnaud.hours@adfab.fr>
36
  */
37
+ class Adfab_Emailcampaign_Test_Model_Campaign extends EcomDev_PHPUnit_Test_Case
38
  {
39
 
40
  /**
app/code/community/Adfab/Emailcampaign/Test/Model/Campaign/State/Config.php CHANGED
@@ -14,12 +14,12 @@
14
  * DISCLAIMER
15
  *
16
  * Do not edit or add to this file if you wish to upgrade
17
- * the Adfab EmailCampaign module to newer versions in the future.
18
- * If you wish to customize the Adfab EmailCampaign module for your needs
19
  * please refer to http://www.magentocommerce.com for more information.
20
  *
21
  * @category Adfab
22
- * @package Adfab_EmailCampaign
23
  * @copyright Copyright (C) 2014 Adfab (http://www.adfab.fr/)
24
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
25
  */
@@ -30,11 +30,11 @@
30
  * Long description of the class (if any...)
31
  *
32
  * @category Adfab
33
- * @package Adfab_EmailCampaign
34
  * @subpackage Model
35
  * @author Arnaud Hours <arnaud.hours@adfab.fr>
36
  */
37
- class Adfab_EmailCampaign_Test_Model_Campaign_State_Config extends EcomDev_PHPUnit_Test_Case
38
  {
39
 
40
  /**
14
  * DISCLAIMER
15
  *
16
  * Do not edit or add to this file if you wish to upgrade
17
+ * the Adfab Emailcampaign module to newer versions in the future.
18
+ * If you wish to customize the Adfab Emailcampaign module for your needs
19
  * please refer to http://www.magentocommerce.com for more information.
20
  *
21
  * @category Adfab
22
+ * @package Adfab_Emailcampaign
23
  * @copyright Copyright (C) 2014 Adfab (http://www.adfab.fr/)
24
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
25
  */
30
  * Long description of the class (if any...)
31
  *
32
  * @category Adfab
33
+ * @package Adfab_Emailcampaign
34
  * @subpackage Model
35
  * @author Arnaud Hours <arnaud.hours@adfab.fr>
36
  */
37
+ class Adfab_Emailcampaign_Test_Model_Campaign_State_Config extends EcomDev_PHPUnit_Test_Case
38
  {
39
 
40
  /**
app/code/community/Adfab/Emailcampaign/Test/Model/Config.php CHANGED
@@ -14,12 +14,12 @@
14
  * DISCLAIMER
15
  *
16
  * Do not edit or add to this file if you wish to upgrade
17
- * the Adfab EmailCampaign module to newer versions in the future.
18
- * If you wish to customize the Adfab EmailCampaign module for your needs
19
  * please refer to http://www.magentocommerce.com for more information.
20
  *
21
  * @category Adfab
22
- * @package Adfab_EmailCampaign
23
  * @copyright Copyright (C) 2014 Adfab (http://www.adfab.fr/)
24
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
25
  */
@@ -30,11 +30,11 @@
30
  * Long description of the class (if any...)
31
  *
32
  * @category Adfab
33
- * @package Adfab_EmailCampaign
34
  * @subpackage Model
35
  * @author Arnaud Hours <arnaud.hours@adfab.fr>
36
  */
37
- class Adfab_EmailCampaign_Test_Model_Config extends EcomDev_PHPUnit_Test_Case
38
  {
39
 
40
  /**
14
  * DISCLAIMER
15
  *
16
  * Do not edit or add to this file if you wish to upgrade
17
+ * the Adfab Emailcampaign module to newer versions in the future.
18
+ * If you wish to customize the Adfab Emailcampaign module for your needs
19
  * please refer to http://www.magentocommerce.com for more information.
20
  *
21
  * @category Adfab
22
+ * @package Adfab_Emailcampaign
23
  * @copyright Copyright (C) 2014 Adfab (http://www.adfab.fr/)
24
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
25
  */
30
  * Long description of the class (if any...)
31
  *
32
  * @category Adfab
33
+ * @package Adfab_Emailcampaign
34
  * @subpackage Model
35
  * @author Arnaud Hours <arnaud.hours@adfab.fr>
36
  */
37
+ class Adfab_Emailcampaign_Test_Model_Config extends EcomDev_PHPUnit_Test_Case
38
  {
39
 
40
  /**
app/code/community/Adfab/Emailcampaign/controllers/Adminhtml/CampaignController.php CHANGED
@@ -15,16 +15,16 @@
15
  * DISCLAIMER
16
  *
17
  * Do not edit or add to this file if you wish to upgrade
18
- * the Adfab EmailCampaign module to newer versions in the future.
19
- * If you wish to customize the Adfab EmailCampaign module for your needs
20
  * please refer to http://www.magentocommerce.com for more information.
21
  *
22
  * @category Adfab
23
- * @package Adfab_EmailCampaign
24
  * @copyright Copyright (C) 2014 Adfab (http://www.adfab.fr/)
25
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
26
  */
27
- class Adfab_EmailCampaign_Adminhtml_CampaignController extends Mage_Adminhtml_Controller_Action
28
  {
29
 
30
  protected function _initAction()
@@ -90,7 +90,7 @@ class Adfab_EmailCampaign_Adminhtml_CampaignController extends Mage_Adminhtml_Co
90
  public function saveAction()
91
  {
92
  if ($data = $this->getRequest()->getPost()) {
93
- /* @var $model Adfab_EmailCampaign_Model_Campaign */
94
  $model = Mage::getModel('adfab_emailcampaign/campaign');
95
  if (isset($data['variables']) && is_array($data['variables'])) {
96
  $model->setVariable($data['variables']);
@@ -203,7 +203,7 @@ class Adfab_EmailCampaign_Adminhtml_CampaignController extends Mage_Adminhtml_Co
203
  }
204
 
205
  $oldMode = $campaign->getMode();
206
- $campaign->setMode(Adfab_EmailCampaign_Model_Source_Mode::TEST_ALL_EMAIL);
207
  Mage::dispatchEvent('emailcampaign_campaign_process_before', array('campaign' => $campaign, 'model' => $class));
208
  $class->process($campaign);
209
  Mage::dispatchEvent('emailcampaign_campaign_process_after', array('campaign' => $campaign, 'model' => $class));
15
  * DISCLAIMER
16
  *
17
  * Do not edit or add to this file if you wish to upgrade
18
+ * the Adfab Emailcampaign module to newer versions in the future.
19
+ * If you wish to customize the Adfab Emailcampaign module for your needs
20
  * please refer to http://www.magentocommerce.com for more information.
21
  *
22
  * @category Adfab
23
+ * @package Adfab_Emailcampaign
24
  * @copyright Copyright (C) 2014 Adfab (http://www.adfab.fr/)
25
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
26
  */
27
+ class Adfab_Emailcampaign_Adminhtml_CampaignController extends Mage_Adminhtml_Controller_Action
28
  {
29
 
30
  protected function _initAction()
90
  public function saveAction()
91
  {
92
  if ($data = $this->getRequest()->getPost()) {
93
+ /* @var $model Adfab_Emailcampaign_Model_Campaign */
94
  $model = Mage::getModel('adfab_emailcampaign/campaign');
95
  if (isset($data['variables']) && is_array($data['variables'])) {
96
  $model->setVariable($data['variables']);
203
  }
204
 
205
  $oldMode = $campaign->getMode();
206
+ $campaign->setMode(Adfab_Emailcampaign_Model_Source_Mode::TEST_ALL_EMAIL);
207
  Mage::dispatchEvent('emailcampaign_campaign_process_before', array('campaign' => $campaign, 'model' => $class));
208
  $class->process($campaign);
209
  Mage::dispatchEvent('emailcampaign_campaign_process_after', array('campaign' => $campaign, 'model' => $class));
app/code/community/Adfab/Emailcampaign/etc/adminhtml.xml CHANGED
@@ -13,12 +13,12 @@
13
  * DISCLAIMER
14
  *
15
  * Do not edit or add to this file if you wish to upgrade
16
- * the Adfab EmailCampaign module to newer versions in the future.
17
- * If you wish to customize the Adfab EmailCampaign module for your needs
18
  * please refer to http://www.magentocommerce.com for more information.
19
  *
20
  * @category Adfab
21
- * @package Adfab_EmailCampaign
22
  * @copyright Copyright (C) 2014
23
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
24
  */
13
  * DISCLAIMER
14
  *
15
  * Do not edit or add to this file if you wish to upgrade
16
+ * the Adfab Emailcampaign module to newer versions in the future.
17
+ * If you wish to customize the Adfab Emailcampaign module for your needs
18
  * please refer to http://www.magentocommerce.com for more information.
19
  *
20
  * @category Adfab
21
+ * @package Adfab_Emailcampaign
22
  * @copyright Copyright (C) 2014
23
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
24
  */
app/code/community/Adfab/Emailcampaign/etc/config.xml CHANGED
@@ -13,48 +13,48 @@
13
  * DISCLAIMER
14
  *
15
  * Do not edit or add to this file if you wish to upgrade
16
- * the Adfab EmailCampaign module to newer versions in the future.
17
- * If you wish to customize the Adfab EmailCampaign module for your needs
18
  * please refer to http://www.magentocommerce.com for more information.
19
  *
20
  * @category Adfab
21
- * @package Adfab_EmailCampaign
22
  * @copyright Copyright (C) 2014
23
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
24
  */
25
  -->
26
  <config>
27
  <modules>
28
- <Adfab_EmailCampaign>
29
  <version>0.1.3</version>
30
- </Adfab_EmailCampaign>
31
  </modules>
32
  <global>
33
  <helpers>
34
  <adfab_emailcampaign>
35
- <class>Adfab_EmailCampaign_Helper</class>
36
  </adfab_emailcampaign>
37
  </helpers>
38
  <blocks>
39
  <adfab_emailcampaign>
40
- <class>Adfab_EmailCampaign_Block</class>
41
  </adfab_emailcampaign>
42
  </blocks>
43
  <resources>
44
  <adfab_emailcampaign_setup>
45
  <setup>
46
- <module>Adfab_EmailCampaign</module>
47
  <connection>core_setup</connection>
48
  </setup>
49
  </adfab_emailcampaign_setup>
50
  </resources>
51
  <models>
52
  <adfab_emailcampaign>
53
- <class>Adfab_EmailCampaign_Model</class>
54
  <resourceModel>adfab_emailcampaign_resource</resourceModel>
55
  </adfab_emailcampaign>
56
  <adfab_emailcampaign_resource>
57
- <class>Adfab_EmailCampaign_Model_Resource</class>
58
  <entities>
59
  <campaign>
60
  <table>emailcampaign_campaign</table>
@@ -198,7 +198,7 @@
198
  <adminhtml>
199
  <args>
200
  <modules>
201
- <adfab_emailcampaign before="Mage_Adminhtml">Adfab_EmailCampaign_Adminhtml</adfab_emailcampaign>
202
  </modules>
203
  </args>
204
  </adminhtml>
@@ -207,18 +207,18 @@
207
  <adminhtml>
208
  <translate>
209
  <modules>
210
- <Adfab_EmailCampaign>
211
  <files>
212
- <default>emailcampaign/Adfab_EmailCampaign.csv</default>
213
- <abandoned_cart>emailcampaign/Adfab_EmailCampaign_AbandonedCart.csv</abandoned_cart>
214
- <customer_birthday>emailcampaign/Adfab_EmailCampaign_CustomerBirthday.csv</customer_birthday>
215
- <inscription_anniversary>emailcampaign/Adfab_EmailCampaign_InscriptionAnniversary.csv</inscription_anniversary>
216
- <order_success>emailcampaign/Adfab_EmailCampaign_OrderSuccess.csv</order_success>
217
- <welcome_reminder>emailcampaign/Adfab_EmailCampaign_WelcomeReminder.csv</welcome_reminder>
218
- <wishlist_reminder>emailcampaign/Adfab_EmailCampaign_WishlistReminder.csv</wishlist_reminder>
219
- <wishlist_stock_alert>emailcampaign/Adfab_EmailCampaign_WishlistStockAlert.csv</wishlist_stock_alert>
220
  </files>
221
- </Adfab_EmailCampaign>
222
  </modules>
223
  </translate>
224
  <layout>
@@ -282,7 +282,7 @@
282
  <phpunit>
283
  <suite>
284
  <modules>
285
- <Adfab_EmailCampaign />
286
  </modules>
287
  </suite>
288
  </phpunit>
13
  * DISCLAIMER
14
  *
15
  * Do not edit or add to this file if you wish to upgrade
16
+ * the Adfab Emailcampaign module to newer versions in the future.
17
+ * If you wish to customize the Adfab Emailcampaign module for your needs
18
  * please refer to http://www.magentocommerce.com for more information.
19
  *
20
  * @category Adfab
21
+ * @package Adfab_Emailcampaign
22
  * @copyright Copyright (C) 2014
23
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
24
  */
25
  -->
26
  <config>
27
  <modules>
28
+ <Adfab_Emailcampaign>
29
  <version>0.1.3</version>
30
+ </Adfab_Emailcampaign>
31
  </modules>
32
  <global>
33
  <helpers>
34
  <adfab_emailcampaign>
35
+ <class>Adfab_Emailcampaign_Helper</class>
36
  </adfab_emailcampaign>
37
  </helpers>
38
  <blocks>
39
  <adfab_emailcampaign>
40
+ <class>Adfab_Emailcampaign_Block</class>
41
  </adfab_emailcampaign>
42
  </blocks>
43
  <resources>
44
  <adfab_emailcampaign_setup>
45
  <setup>
46
+ <module>Adfab_Emailcampaign</module>
47
  <connection>core_setup</connection>
48
  </setup>
49
  </adfab_emailcampaign_setup>
50
  </resources>
51
  <models>
52
  <adfab_emailcampaign>
53
+ <class>Adfab_Emailcampaign_Model</class>
54
  <resourceModel>adfab_emailcampaign_resource</resourceModel>
55
  </adfab_emailcampaign>
56
  <adfab_emailcampaign_resource>
57
+ <class>Adfab_Emailcampaign_Model_Resource</class>
58
  <entities>
59
  <campaign>
60
  <table>emailcampaign_campaign</table>
198
  <adminhtml>
199
  <args>
200
  <modules>
201
+ <adfab_emailcampaign before="Mage_Adminhtml">Adfab_Emailcampaign_Adminhtml</adfab_emailcampaign>
202
  </modules>
203
  </args>
204
  </adminhtml>
207
  <adminhtml>
208
  <translate>
209
  <modules>
210
+ <Adfab_Emailcampaign>
211
  <files>
212
+ <default>emailcampaign/Adfab_Emailcampaign.csv</default>
213
+ <abandoned_cart>emailcampaign/Adfab_Emailcampaign_AbandonedCart.csv</abandoned_cart>
214
+ <customer_birthday>emailcampaign/Adfab_Emailcampaign_CustomerBirthday.csv</customer_birthday>
215
+ <inscription_anniversary>emailcampaign/Adfab_Emailcampaign_InscriptionAnniversary.csv</inscription_anniversary>
216
+ <order_success>emailcampaign/Adfab_Emailcampaign_OrderSuccess.csv</order_success>
217
+ <welcome_reminder>emailcampaign/Adfab_Emailcampaign_WelcomeReminder.csv</welcome_reminder>
218
+ <wishlist_reminder>emailcampaign/Adfab_Emailcampaign_WishlistReminder.csv</wishlist_reminder>
219
+ <wishlist_stock_alert>emailcampaign/Adfab_Emailcampaign_WishlistStockAlert.csv</wishlist_stock_alert>
220
  </files>
221
+ </Adfab_Emailcampaign>
222
  </modules>
223
  </translate>
224
  <layout>
282
  <phpunit>
283
  <suite>
284
  <modules>
285
+ <Adfab_Emailcampaign />
286
  </modules>
287
  </suite>
288
  </phpunit>
app/code/community/Adfab/Emailcampaign/etc/system.xml CHANGED
@@ -13,12 +13,12 @@
13
  * DISCLAIMER
14
  *
15
  * Do not edit or add to this file if you wish to upgrade
16
- * the Adfab EmailCampaign module to newer versions in the future.
17
- * If you wish to customize the Adfab EmailCampaign module for your needs
18
  * please refer to http://www.magentocommerce.com for more information.
19
  *
20
  * @category Adfab
21
- * @package Adfab_EmailCampaign
22
  * @copyright Copyright (C) 2014
23
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
24
  */
13
  * DISCLAIMER
14
  *
15
  * Do not edit or add to this file if you wish to upgrade
16
+ * the Adfab Emailcampaign module to newer versions in the future.
17
+ * If you wish to customize the Adfab Emailcampaign module for your needs
18
  * please refer to http://www.magentocommerce.com for more information.
19
  *
20
  * @category Adfab
21
+ * @package Adfab_Emailcampaign
22
  * @copyright Copyright (C) 2014
23
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
24
  */
app/code/community/Adfab/Emailcampaign/sql/adfab_emailcampaign_setup/mysql4-install-0.1.0.php CHANGED
@@ -14,12 +14,12 @@
14
  * DISCLAIMER
15
  *
16
  * Do not edit or add to this file if you wish to upgrade
17
- * the Adfab EmailCampaign module to newer versions in the future.
18
- * If you wish to customize the Adfab EmailCampaign module for your needs
19
  * please refer to http://www.magentocommerce.com for more information.
20
  *
21
  * @category Adfab
22
- * @package Adfab_EmailCampaign
23
  * @copyright Copyright (C) 2014 Adfab (http://www.adfab.fr/)
24
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
25
  */
14
  * DISCLAIMER
15
  *
16
  * Do not edit or add to this file if you wish to upgrade
17
+ * the Adfab Emailcampaign module to newer versions in the future.
18
+ * If you wish to customize the Adfab Emailcampaign module for your needs
19
  * please refer to http://www.magentocommerce.com for more information.
20
  *
21
  * @category Adfab
22
+ * @package Adfab_Emailcampaign
23
  * @copyright Copyright (C) 2014 Adfab (http://www.adfab.fr/)
24
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
25
  */
app/code/community/Adfab/Emailcampaign/sql/adfab_emailcampaign_setup/mysql4-upgrade-0.1.0-0.1.1.php CHANGED
@@ -14,12 +14,12 @@
14
  * DISCLAIMER
15
  *
16
  * Do not edit or add to this file if you wish to upgrade
17
- * the Adfab EmailCampaign module to newer versions in the future.
18
- * If you wish to customize the Adfab EmailCampaign module for your needs
19
  * please refer to http://www.magentocommerce.com for more information.
20
  *
21
  * @category Adfab
22
- * @package Adfab_EmailCampaign
23
  * @copyright Copyright (C) 2014 Adfab (http://www.adfab.fr/)
24
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
25
  */
14
  * DISCLAIMER
15
  *
16
  * Do not edit or add to this file if you wish to upgrade
17
+ * the Adfab Emailcampaign module to newer versions in the future.
18
+ * If you wish to customize the Adfab Emailcampaign module for your needs
19
  * please refer to http://www.magentocommerce.com for more information.
20
  *
21
  * @category Adfab
22
+ * @package Adfab_Emailcampaign
23
  * @copyright Copyright (C) 2014 Adfab (http://www.adfab.fr/)
24
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
25
  */
app/code/community/Adfab/Emailcampaign/sql/adfab_emailcampaign_setup/mysql4-upgrade-0.1.1-0.1.2.php CHANGED
@@ -14,12 +14,12 @@
14
  * DISCLAIMER
15
  *
16
  * Do not edit or add to this file if you wish to upgrade
17
- * the Adfab EmailCampaign module to newer versions in the future.
18
- * If you wish to customize the Adfab EmailCampaign module for your needs
19
  * please refer to http://www.magentocommerce.com for more information.
20
  *
21
  * @category Adfab
22
- * @package Adfab_EmailCampaign
23
  * @copyright Copyright (C) 2014 Adfab (http://www.adfab.fr/)
24
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
25
  */
14
  * DISCLAIMER
15
  *
16
  * Do not edit or add to this file if you wish to upgrade
17
+ * the Adfab Emailcampaign module to newer versions in the future.
18
+ * If you wish to customize the Adfab Emailcampaign module for your needs
19
  * please refer to http://www.magentocommerce.com for more information.
20
  *
21
  * @category Adfab
22
+ * @package Adfab_Emailcampaign
23
  * @copyright Copyright (C) 2014 Adfab (http://www.adfab.fr/)
24
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
25
  */
app/code/community/Adfab/Emailcampaign/sql/adfab_emailcampaign_setup/mysql4-upgrade-0.1.2-0.1.3.php CHANGED
@@ -14,12 +14,12 @@
14
  * DISCLAIMER
15
  *
16
  * Do not edit or add to this file if you wish to upgrade
17
- * the Adfab EmailCampaign module to newer versions in the future.
18
- * If you wish to customize the Adfab EmailCampaign module for your needs
19
  * please refer to http://www.magentocommerce.com for more information.
20
  *
21
  * @category Adfab
22
- * @package Adfab_EmailCampaign
23
  * @copyright Copyright (C) 2014 Adfab (http://www.adfab.fr/)
24
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
25
  */
14
  * DISCLAIMER
15
  *
16
  * Do not edit or add to this file if you wish to upgrade
17
+ * the Adfab Emailcampaign module to newer versions in the future.
18
+ * If you wish to customize the Adfab Emailcampaign module for your needs
19
  * please refer to http://www.magentocommerce.com for more information.
20
  *
21
  * @category Adfab
22
+ * @package Adfab_Emailcampaign
23
  * @copyright Copyright (C) 2014 Adfab (http://www.adfab.fr/)
24
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
25
  */
app/etc/modules/{Adfab_EmailCampaign.xml → Adfab_Emailcampaign.xml} RENAMED
@@ -13,21 +13,21 @@
13
  * DISCLAIMER
14
  *
15
  * Do not edit or add to this file if you wish to upgrade
16
- * the Adfab EmailCampaign module to newer versions in the future.
17
- * If you wish to customize the Adfab EmailCampaign module for your needs
18
  * please refer to http://www.magentocommerce.com for more information.
19
  *
20
  * @category Adfab
21
- * @package Adfab_EmailCampaign
22
  * @copyright Copyright (C) 2014
23
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
24
  */
25
  -->
26
  <config>
27
  <modules>
28
- <Adfab_EmailCampaign>
29
  <active>true</active>
30
  <codePool>community</codePool>
31
- </Adfab_EmailCampaign>
32
  </modules>
33
  </config>
13
  * DISCLAIMER
14
  *
15
  * Do not edit or add to this file if you wish to upgrade
16
+ * the Adfab Emailcampaign module to newer versions in the future.
17
+ * If you wish to customize the Adfab Emailcampaign module for your needs
18
  * please refer to http://www.magentocommerce.com for more information.
19
  *
20
  * @category Adfab
21
+ * @package Adfab_Emailcampaign
22
  * @copyright Copyright (C) 2014
23
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
24
  */
25
  -->
26
  <config>
27
  <modules>
28
+ <Adfab_Emailcampaign>
29
  <active>true</active>
30
  <codePool>community</codePool>
31
+ </Adfab_Emailcampaign>
32
  </modules>
33
  </config>
package.xml CHANGED
@@ -1,7 +1,7 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Adfab_Emailcampaign</name>
4
- <version>1.1.0</version>
5
  <stability>stable</stability>
6
  <license uri="http://opensource.org/licenses/AFL-3.0">AFL</license>
7
  <channel>community</channel>
@@ -20,13 +20,11 @@ We've decided to offer you this incredibly efficient tool ! &#xD;
20
  - Registration anniversary&#xD;
21
  - Wishlist reminder&#xD;
22
  - Wishlist stock alert</description>
23
- <notes>This version includes :&#xD;
24
- - A message on the admin dashboard on first launch (only) to confirm you that the module has been correctly installed&#xD;
25
- - New templates appear for the mails</notes>
26
  <authors><author><name>Adfab</name><user>Connect</user><email>dev@adfab.fr</email></author><author><name>Arnaud</name><user>Hours</user><email>arnaud.hours@adfab.fr</email></author><author><name>Gr&#xE9;gory</name><user>Besson</user><email>gregory.besson@adfab.fr</email></author><author><name>Fabien</name><user>Logarinho</user><email>fabien.logarinho@adfab.fr</email></author></authors>
27
- <date>2014-08-07</date>
28
- <time>13:55:14</time>
29
- <contents><target name="magecommunity"><dir name="Adfab"><dir name="Emailcampaign"><dir name="Block"><dir name="Adminhtml"><dir name="Campaign"><dir name="Edit"><file name="Form.php" hash="0e14b936f081327dde244c26a469000e"/><dir name="Tab"><file name="Cron.php" hash="56fda0e96489edcc8997e300fa178cd7"/><file name="Form.php" hash="d662b3d6b707466469948263e1309698"/></dir><file name="Tabs.php" hash="f8edebce5ed52f7ab35869139b4c667e"/></dir><file name="Edit.php" hash="70546433d72351a08f531ce8be2e6fab"/><dir name="Forms"><file name="AbandonedCart.php" hash="62eb3f76a11f7eb9e6ba7a9fb6297b8e"/><file name="Abstract.php" hash="cd21395d15097979bca2e0dc2c9e96fb"/><file name="CustomerBirthday.php" hash="0736553e8f248795610819d27eafa8f5"/><file name="WelcomeReminder.php" hash="447acd447bd6feb0b2bfd4b6c1c8899c"/><file name="WishlistReminder.php" hash="4d4dad5122fb58b06fde53cabd22eade"/><file name="WishlistStockAlert.php" hash="fb0d14c59f4e59cdf20a0c432f5fd18c"/></dir><file name="Grid.php" hash="a20cc4967161641384a92ea23da6c35c"/></dir><file name="Campaign.php" hash="31acd1b97010281ba507e2438314cb40"/><dir name="Form"><dir name="Edit"><dir name="Renderer"><file name="Cron.php" hash="b1308ad78156cf7842462657278e9a06"/></dir></dir></dir><dir name="Notification"><file name="Toolbar.php" hash="4d8d0581bb197db50fab9bbabcd06648"/></dir><dir name="Recipient"><file name="Grid.php" hash="251a9a0ad218d3e6cab91538851d056b"/></dir><file name="Recipient.php" hash="158f6054894b6e39c65244fa092315db"/></dir></dir><dir name="Helper"><file name="Connector.php" hash="5d3f3a03efea7b19641e499a3073959c"/><file name="Data.php" hash="2384b5b7c164683a8c3b19cce2f3d222"/></dir><dir name="Model"><dir name="Adminhtml"><file name="Notification.php" hash="84824b81e47decbdea780ec9d111e021"/><file name="Observer.php" hash="302ab66ac5018f6e7f5c9e45a7d09dde"/></dir><dir name="Campaign"><file name="AbandonedCart.php" hash="05e1e0c2e1e7ba559f20c3b739b2b67f"/><file name="Abstract.php" hash="68c0f52b903b7bab0b4c76ddbb766f91"/><file name="Cron.php" hash="ee928e3173d2440f15d31c42920c59e5"/><file name="CustomerBirthday.php" hash="597596fd4e15af747aa7777576cd77f5"/><file name="InscriptionAnniversary.php" hash="3763232d396c68130ce5a6c853c3f1fb"/><file name="Observer.php" hash="df021c67729661f7671cc661ad4bf064"/><file name="OrderSuccess.php" hash="370cc3c568c0c5ee97155c86d6b7dbd3"/><dir name="State"><file name="Abstract.php" hash="087d15fbda59f850e2b533f68489a4c1"/><file name="Production.php" hash="1bb53f8c2e6682a19293d8ecc1480c36"/><file name="Test.php" hash="717ab12665be109d56fe6904f3a8307c"/><file name="TestAllEmail.php" hash="0c29988515afe333f9776c23d128dc40"/></dir><file name="WelcomeReminder.php" hash="51c938c0a27f971b0cdaa97ba540bef0"/><file name="WishlistReminder.php" hash="cb327b1d2d79e23f0955315393e3842a"/><file name="WishlistStockAlert.php" hash="a0f92c9fefa5ca7ac02239ff37c6a137"/></dir><file name="Campaign.php" hash="0ad0040d5e2776c272feb367c56f47fb"/><dir name="Connector"><file name="Abstract.php" hash="deb770bb46596699e9bf02236766f115"/><file name="Magento.php" hash="f7f9c93867e30b3de67238a442f58802"/><file name="Void.php" hash="700c92b9f22e93276936be2e6590c0c4"/></dir><dir name="Cron"><file name="Observer.php" hash="0b390fadab4757f409154f7861ecc5d3"/></dir><file name="Cron.php" hash="17a79cd6d87e5d5916f1a496e4a42fbe"/><file name="Flag.php" hash="6e2afa0c37bfab846e2360095df2c226"/><file name="Observer.php" hash="f236fd79b41f7bdc706fee4dd7518698"/><dir name="Resource"><dir name="Adminhtml"><dir name="Notification"><file name="Collection.php" hash="ccf2675e3a189397783bf3afbf9603fa"/></dir><file name="Notification.php" hash="3d2846f3e4565be43897f7b199ead3c7"/></dir><dir name="Campaign"><file name="Collection.php" hash="58d6a15feaea4b1d259d9629ed51c002"/></dir><file name="Campaign.php" hash="9329ebf56108dcb5877e029b03a2e519"/></dir><dir name="Source"><file name="Campaign.php" hash="9fb1452e0905b3640eeeeb2839c55100"/><file name="Connector.php" hash="f1798cd25e98eeb91a479f8a512021d8"/><file name="Mode.php" hash="7500ce6ca8f65dd4e56b999550891874"/><file name="Template.php" hash="f11035d9ea946b16d1ea6fde33f2bead"/></dir><file name="Status.php" hash="b82c5333930574cecac7af32dfc6c8fb"/></dir><dir name="Test"><dir name="Model"><dir name="Campaign"><dir name="State"><file name="Config.php" hash="426f057a1fd887b1be84c6b2a68cabdc"/></dir></dir><file name="Campaign.php" hash="36a5a40b6223f3ea4c1c3d59e313dc0b"/><file name="Config.php" hash="2ae2f73eb660837c5c12d009e5bd0c07"/></dir></dir><dir name="controllers"><dir name="Adminhtml"><file name="CampaignController.php" hash="3abbfa4172e2fdca385076d3e7f73c1a"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="ff400241d220bf092e7ae0afbab892e6"/><file name="config.xml" hash="43c015aefe4de015175c39c4e88cf2b9"/><file name="system.xml" hash="45e4b5547251980ec5b88d60f85376cc"/></dir><dir name="sql"><dir name="adfab_emailcampaign_setup"><file name="mysql4-install-0.1.0.php" hash="0ee583e15229b3f9fed7bba14e999bc0"/><file name="mysql4-upgrade-0.1.0-0.1.1.php" hash="a0046605f23a83cd649d0efe79953384"/><file name="mysql4-upgrade-0.1.1-0.1.2.php" hash="9689646b2269be7e89e3538ba6d74fab"/><file name="mysql4-upgrade-0.1.2-0.1.3.php" hash="6d92e62ef0878558d4b9e96d3dcb9c38"/></dir></dir></dir></dir></target><target name="mageskin"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="css"><file name="jquery-cron.css" hash="cb5a119e0ea73442fd20dda1ea210334"/></dir><dir name="js"><file name="emailcampaign.js" hash="93d4c1b7a32df8912d48ba3262550ece"/></dir></dir></dir></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="emailcampaign.xml" hash="e39336df778af319ce028dd061db41ca"/></dir><dir name="template"><dir name="emailcampaign"><dir name="notification"><file name="toolbar.phtml" hash="d34f7ad086c70032c9fb1486d9fb0ed1"/><file name="window.phtml" hash="9c9c48d9855cbe13efef37170c565162"/></dir><dir name="system"><dir name="email"><dir name="template"><file name="edit.phtml" hash="cf9dfae96dd8ba9fd62fed537dc46af5"/></dir></dir></dir></dir></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Adfab_EmailCampaign.xml" hash="2375f511dca0ba71d45dbefd68ab1bd1"/></dir></target><target name="magelocale"><dir name="en_US"><dir name="emailcampaign"><file name="Adfab_EmailCampaign.csv" hash="8b7bb7916608dadeddd50952297df175"/><file name="Adfab_EmailCampaign_AbandonedCart.csv" hash="ee4435a37b05062c23c088c137c32cc0"/><file name="Adfab_EmailCampaign_CustomerBirthday.csv" hash="54c7d1860ac81be27c3b007db25d794d"/><file name="Adfab_EmailCampaign_InscriptionAnniversary.csv" hash="befaa0fa1f6fce97d8571407e94f7d9f"/><file name="Adfab_EmailCampaign_OrderSuccess.csv" hash="e3ff726605dd139054ffe6e7f91ab1d8"/><file name="Adfab_EmailCampaign_WelcomeReminder.csv" hash="8edb549e7b5cf31718361d6d1885340e"/><file name="Adfab_EmailCampaign_WishlistReminder.csv" hash="bd615da4bfcf92fe312bcb366d5a3baf"/><file name="Adfab_EmailCampaign_WishlistStockAlert.csv" hash="00ecd662351382621701eb876e0aa504"/></dir><dir name="template"><dir name="email"><dir name="emailcampaign"><file name="abandoned_cart.html" hash="4aeba2686af64de18dc7889cc1ee7f08"/><file name="customer_birthday.html" hash="3ddc1e77440af5d55357117b4d668bf0"/><file name="inscription_anniversary.html" hash="adcee0bce9d9d53e72f5ab0e62c512e8"/><file name="order_success.html" hash="27f50eb0f7dc590b1a775aed6232f24c"/><file name="welcome_reminder.html" hash="71874766623132765a88de43e1405f5e"/><file name="wishlist_reminder.html" hash="741d80736b53325dbd9483559ce3576a"/><file name="wishlist_stock_alert.html" hash="d08af25d00badc73c60e018e9aef901a"/></dir></dir></dir></dir><dir name="fr_FR"><dir name="emailcampaign"><file name="Adfab_EmailCampaign.csv" hash="04f84b4080c0eb56120a82a7215e1295"/><file name="Adfab_EmailCampaign_AbandonedCart.csv" hash="962c2f9b0b13302b5c910bd776a0e177"/><file name="Adfab_EmailCampaign_CustomerBirthday.csv" hash="de370aaffa47c3bd003f92163546b826"/><file name="Adfab_EmailCampaign_InscriptionAnniversary.csv" hash="32314f7b43a6431890c196f7ac0b9dea"/><file name="Adfab_EmailCampaign_OrderSuccess.csv" hash="6b1cd6e24298331c4a3e317e24695d1c"/><file name="Adfab_EmailCampaign_WelcomeReminder.csv" hash="de057c50c853f81ed0f2bc10a7565f6a"/><file name="Adfab_EmailCampaign_WishlistReminder.csv" hash="f4071c638993793d001d6902d1cbca44"/><file name="Adfab_EmailCampaign_WishlistStockAlert.csv" hash="0aa97b28c6e1dfbcfa9816a5bd4a5766"/></dir></dir></target><target name="mageweb"><dir name="js"><dir name="jquery"><file name="jquery.min.js" hash="941baad892cc00de1c928a0d5321ec3e"/><file name="jquery-cron.min.js" hash="7102f517bb2ffb5d6d5f4d9f4ccb5a1e"/></dir></dir></target></contents>
30
  <compatible/>
31
  <dependencies><required><php><min>5.3.0</min><max>6.0.0</max></php></required></dependencies>
32
  </package>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Adfab_Emailcampaign</name>
4
+ <version>1.1.1</version>
5
  <stability>stable</stability>
6
  <license uri="http://opensource.org/licenses/AFL-3.0">AFL</license>
7
  <channel>community</channel>
20
  - Registration anniversary&#xD;
21
  - Wishlist reminder&#xD;
22
  - Wishlist stock alert</description>
23
+ <notes>This version fixes a bug in Linux</notes>
 
 
24
  <authors><author><name>Adfab</name><user>Connect</user><email>dev@adfab.fr</email></author><author><name>Arnaud</name><user>Hours</user><email>arnaud.hours@adfab.fr</email></author><author><name>Gr&#xE9;gory</name><user>Besson</user><email>gregory.besson@adfab.fr</email></author><author><name>Fabien</name><user>Logarinho</user><email>fabien.logarinho@adfab.fr</email></author></authors>
25
+ <date>2014-08-08</date>
26
+ <time>16:45:26</time>
27
+ <contents><target name="magecommunity"><dir name="Adfab"><dir name="Emailcampaign"><dir name="Block"><dir name="Adminhtml"><dir name="Campaign"><dir name="Edit"><file name="Form.php" hash="17b3141fda07951f72d06341f960dc54"/><dir name="Tab"><file name="Cron.php" hash="dbaf7601d04aae4c5d6972bd4333838a"/><file name="Form.php" hash="a5aceaae136b4e53f428644a2848fdc6"/></dir><file name="Tabs.php" hash="a5ab15e699aab8dde3bdf70ddd4379e2"/></dir><file name="Edit.php" hash="0db1b26f82e8151706bb6e7cf08baa99"/><dir name="Forms"><file name="AbandonedCart.php" hash="79e7018381e3e8de0a2be018eea2981b"/><file name="Abstract.php" hash="3bbf50b440d5216f14a6e23cd3a4316d"/><file name="CustomerBirthday.php" hash="3e075965149631fc95e498b54586d66b"/><file name="WelcomeReminder.php" hash="d55577f9e38001dbc68ecab75dfbb451"/><file name="WishlistReminder.php" hash="b20ac7a287d8bbb1e3fa5429bb0fd91c"/><file name="WishlistStockAlert.php" hash="45cb38386e6816aec2a078d3567a258c"/></dir><file name="Grid.php" hash="c0659f431119f6fd454c84b6540bac7e"/></dir><file name="Campaign.php" hash="17b1361fe6bd0cbcae614e3d47c5581c"/><dir name="Form"><dir name="Edit"><dir name="Renderer"><file name="Cron.php" hash="f2e66687504b3980e12b217a53d59a5e"/></dir></dir></dir><dir name="Notification"><file name="Toolbar.php" hash="be40e4dba0ccd9b93e689dc7b210dd60"/></dir><dir name="Recipient"><file name="Grid.php" hash="9bbb6bf0ea8b5acb3db524b3df258a75"/></dir><file name="Recipient.php" hash="7b06927116341c82586a8b416c70f4a3"/></dir></dir><dir name="Helper"><file name="Connector.php" hash="7dcf9487bfed13013c854ed585ac4f45"/><file name="Data.php" hash="4631fc49592697385cbe63497181197b"/></dir><dir name="Model"><dir name="Adminhtml"><file name="Notification.php" hash="3b1e2cf2d1811a7908ed5a93b5ca9ded"/><file name="Observer.php" hash="302ab66ac5018f6e7f5c9e45a7d09dde"/></dir><dir name="Campaign"><file name="AbandonedCart.php" hash="64ab3df40466c0d0cb933baf60352c37"/><file name="Abstract.php" hash="ff0da3e18c92f5c342160c30187975ea"/><file name="Cron.php" hash="d6f2086c2d036a04ce39771102aef995"/><file name="CustomerBirthday.php" hash="fe679efcb28553b939c3eefd971d79fa"/><file name="InscriptionAnniversary.php" hash="aa0645a1b8e0e38e8113e43477ea2666"/><file name="Observer.php" hash="a788652786bfbfc9a34ec61eb76a51b9"/><file name="OrderSuccess.php" hash="efdc12cb22d9736aae968e2384dd2295"/><dir name="State"><file name="Abstract.php" hash="96c8a99efe9ad64563a2ad85541be148"/><file name="Production.php" hash="b8d1caf82586cf5f920eba995218f105"/><file name="Test.php" hash="114099329a96cba468027a153b074913"/><file name="TestAllEmail.php" hash="11964da8f2db503c14f66fbc33b14f5f"/></dir><file name="WelcomeReminder.php" hash="86723aab551338cdfa63067594527ab5"/><file name="WishlistReminder.php" hash="9f279bd38530780ab27cc2bdf3d61716"/><file name="WishlistStockAlert.php" hash="98c804c7567b1dddb07147bca9b3e535"/></dir><file name="Campaign.php" hash="ac20316047cb7c57fb774ca9792ebe14"/><dir name="Connector"><file name="Abstract.php" hash="1e011fddfc80a8a47cfbebf3ac4e7428"/><file name="Magento.php" hash="df16665526e8857512b4999d35b6e69c"/><file name="Void.php" hash="5f4b6da600618d513c9aa28f67a05885"/></dir><dir name="Cron"><file name="Observer.php" hash="fcc919aff07af27a3e05f44dfef03e8c"/></dir><file name="Cron.php" hash="be087bcc8adc875b744cd655c3cfc45c"/><file name="Flag.php" hash="f0b2123724d6ba31e4740d1ab8a9f293"/><file name="Observer.php" hash="8b56d3812ad59eef9e39eaad0eb66836"/><dir name="Resource"><dir name="Adminhtml"><dir name="Notification"><file name="Collection.php" hash="cadae2e35cd3df4d4b054b2aca25bae8"/></dir><file name="Notification.php" hash="8b9e5eaf96ece9bf184b19e2e8ee7c53"/></dir><dir name="Campaign"><file name="Collection.php" hash="2fb20db254a502f8a2776714e0326faa"/></dir><file name="Campaign.php" hash="7816e85906c384b54ce903feec7a9eac"/></dir><dir name="Source"><file name="Campaign.php" hash="3f68de176fd1915c01a89f5728a7ff98"/><file name="Connector.php" hash="9a2e4743e8abdce16fc70b0a571e0584"/><file name="Mode.php" hash="b2594ab728f6ca4e9511887f0bf06b13"/><file name="Template.php" hash="53f81f70bba6b27c0efae344258f7cf1"/></dir><file name="Status.php" hash="666bfc12e1beba81c7f90b6fd4940ef5"/></dir><dir name="Test"><dir name="Model"><dir name="Campaign"><dir name="State"><file name="Config.php" hash="d7db829c3f727d97b3795f88fd900dbf"/></dir></dir><file name="Campaign.php" hash="712f6cef45d3afbac1817260c0d1c085"/><file name="Config.php" hash="51660acdb18f5edd0758398ce30f0f08"/></dir></dir><dir name="controllers"><dir name="Adminhtml"><file name="CampaignController.php" hash="c7f32fd1c40e563a623b7d6cd3845cbb"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="329ebfedd1e70abfad1292e8fac1c758"/><file name="config.xml" hash="3ca46037bcf3676e01c43fc242eaad49"/><file name="system.xml" hash="50c56b8ac3d5a469e39c15d696c5ac54"/></dir><dir name="sql"><dir name="adfab_emailcampaign_setup"><file name="mysql4-install-0.1.0.php" hash="092aefa58169dae54b748068f1166664"/><file name="mysql4-upgrade-0.1.0-0.1.1.php" hash="32499400d3ce2cd954f99658d9e12432"/><file name="mysql4-upgrade-0.1.1-0.1.2.php" hash="d86f2097978904afd8f397498b188886"/><file name="mysql4-upgrade-0.1.2-0.1.3.php" hash="ff8cac3085d9bb774a6dffa6b99707fc"/></dir></dir></dir></dir></target><target name="mageskin"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="css"><file name="jquery-cron.css" hash="cb5a119e0ea73442fd20dda1ea210334"/></dir><dir name="js"><file name="emailcampaign.js" hash="93d4c1b7a32df8912d48ba3262550ece"/></dir></dir></dir></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="emailcampaign.xml" hash="e39336df778af319ce028dd061db41ca"/></dir><dir name="template"><dir name="emailcampaign"><dir name="notification"><file name="toolbar.phtml" hash="d34f7ad086c70032c9fb1486d9fb0ed1"/><file name="window.phtml" hash="9c9c48d9855cbe13efef37170c565162"/></dir><dir name="system"><dir name="email"><dir name="template"><file name="edit.phtml" hash="cf9dfae96dd8ba9fd62fed537dc46af5"/></dir></dir></dir></dir></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Adfab_Emailcampaign.xml" hash="28ca10d36911d1aacc4592e31d343f52"/></dir></target><target name="magelocale"><dir name="en_US"><dir name="emailcampaign"><file name="Adfab_EmailCampaign.csv" hash="8b7bb7916608dadeddd50952297df175"/><file name="Adfab_EmailCampaign_AbandonedCart.csv" hash="ee4435a37b05062c23c088c137c32cc0"/><file name="Adfab_EmailCampaign_CustomerBirthday.csv" hash="54c7d1860ac81be27c3b007db25d794d"/><file name="Adfab_EmailCampaign_InscriptionAnniversary.csv" hash="befaa0fa1f6fce97d8571407e94f7d9f"/><file name="Adfab_EmailCampaign_OrderSuccess.csv" hash="e3ff726605dd139054ffe6e7f91ab1d8"/><file name="Adfab_EmailCampaign_WelcomeReminder.csv" hash="8edb549e7b5cf31718361d6d1885340e"/><file name="Adfab_EmailCampaign_WishlistReminder.csv" hash="bd615da4bfcf92fe312bcb366d5a3baf"/><file name="Adfab_EmailCampaign_WishlistStockAlert.csv" hash="00ecd662351382621701eb876e0aa504"/></dir><dir name="template"><dir name="email"><dir name="emailcampaign"><file name="abandoned_cart.html" hash="4aeba2686af64de18dc7889cc1ee7f08"/><file name="customer_birthday.html" hash="3ddc1e77440af5d55357117b4d668bf0"/><file name="inscription_anniversary.html" hash="adcee0bce9d9d53e72f5ab0e62c512e8"/><file name="order_success.html" hash="27f50eb0f7dc590b1a775aed6232f24c"/><file name="welcome_reminder.html" hash="71874766623132765a88de43e1405f5e"/><file name="wishlist_reminder.html" hash="741d80736b53325dbd9483559ce3576a"/><file name="wishlist_stock_alert.html" hash="d08af25d00badc73c60e018e9aef901a"/></dir></dir></dir></dir><dir name="fr_FR"><dir name="emailcampaign"><file name="Adfab_EmailCampaign.csv" hash="04f84b4080c0eb56120a82a7215e1295"/><file name="Adfab_EmailCampaign_AbandonedCart.csv" hash="962c2f9b0b13302b5c910bd776a0e177"/><file name="Adfab_EmailCampaign_CustomerBirthday.csv" hash="de370aaffa47c3bd003f92163546b826"/><file name="Adfab_EmailCampaign_InscriptionAnniversary.csv" hash="32314f7b43a6431890c196f7ac0b9dea"/><file name="Adfab_EmailCampaign_OrderSuccess.csv" hash="6b1cd6e24298331c4a3e317e24695d1c"/><file name="Adfab_EmailCampaign_WelcomeReminder.csv" hash="de057c50c853f81ed0f2bc10a7565f6a"/><file name="Adfab_EmailCampaign_WishlistReminder.csv" hash="f4071c638993793d001d6902d1cbca44"/><file name="Adfab_EmailCampaign_WishlistStockAlert.csv" hash="0aa97b28c6e1dfbcfa9816a5bd4a5766"/></dir></dir></target><target name="mageweb"><dir name="js"><dir name="jquery"><file name="jquery.min.js" hash="941baad892cc00de1c928a0d5321ec3e"/><file name="jquery-cron.min.js" hash="7102f517bb2ffb5d6d5f4d9f4ccb5a1e"/></dir></dir></target></contents>
28
  <compatible/>
29
  <dependencies><required><php><min>5.3.0</min><max>6.0.0</max></php></required></dependencies>
30
  </package>