Version Notes
- Allows Single Opt In as an optional setting
- Make "send opt-in email..." unchecked by default
- Bug Fix: Cannot overwrite with blank email address
- Bug Fix: If incorrect URL or login details entered, checkout could be disrupted
Download this release
Release Info
Developer | MailUp |
Extension | MailUp |
Version | 2.5.0 |
Comparing to | |
See all releases |
Code changes from version 2.4.1 to 2.5.0
- app/code/local/SevenLike/MailUp/Block/Adminhtml/Log/Grid.php +159 -159
- app/code/local/SevenLike/MailUp/Block/Adminhtml/Mailup/Grid.php +246 -246
- app/code/local/SevenLike/MailUp/Block/Adminhtml/Sync/Grid.php +180 -180
- app/code/local/SevenLike/MailUp/Helper/Data.php +24 -6
- app/code/local/SevenLike/MailUp/Model/Config.php +27 -3
- app/code/local/SevenLike/MailUp/Model/Job.php +1 -1
- app/code/local/SevenLike/MailUp/Model/Lists.php +23 -14
- app/code/local/SevenLike/MailUp/Model/MailUpWsImport.php +40 -15
- app/code/local/SevenLike/MailUp/Model/Mysql14/Job.php +0 -30
- app/code/local/SevenLike/MailUp/Model/Mysql14/Job/Collection.php +0 -11
- app/code/local/SevenLike/MailUp/Model/Mysql4/Job.php +29 -29
- app/code/local/SevenLike/MailUp/Model/Mysql4/Job/Collection.php +10 -10
- app/code/local/SevenLike/MailUp/Model/Mysql4/Log.php +24 -24
- app/code/local/SevenLike/MailUp/Model/Mysql4/Log/Collection.php +10 -10
- app/code/local/SevenLike/MailUp/Model/Mysql4/Sync.php +69 -69
- app/code/local/SevenLike/MailUp/Model/Mysql4/Sync/Collection.php +10 -10
- app/code/local/SevenLike/MailUp/Model/Observer.php +29 -19
- app/code/local/SevenLike/MailUp/controllers/Adminhtml/FilterController.php +15 -20
- app/code/local/SevenLike/MailUp/controllers/TestController.php +6 -72
- app/code/local/SevenLike/MailUp/etc/config.xml +2 -0
- app/code/local/SevenLike/MailUp/etc/system.xml +10 -0
- app/design/adminhtml/default/default/template/sevenlike/mailup/confirm.phtml +1 -1
- app/design/adminhtml/default/default/template/sevenlike/mailup/filter_.phtml +0 -526
- app/design/frontend/base/default/layout/mailup.xml +0 -1
- app/etc/modules/SevenLike_MailUp.xml +1 -1
- app/locale/en_US/SevenLike_MailUp.csv +86 -86
- app/locale/it_IT/SevenLike_MailUp.csv +105 -105
- package.xml +47 -48
- skin/adminhtml/default/default/images/MailUp_300_200_transparent_small.png +0 -0
- skin/adminhtml/default/default/sevenlike/mailup/mailup.css +1 -1
app/code/local/SevenLike/MailUp/Block/Adminhtml/Log/Grid.php
CHANGED
@@ -1,160 +1,160 @@
|
|
1 |
-
<?php
|
2 |
-
/**
|
3 |
-
* Grid.php
|
4 |
-
*/
|
5 |
-
class SevenLike_MailUp_Block_Adminhtml_Log_Grid extends Mage_Adminhtml_Block_Widget_Grid
|
6 |
-
{
|
7 |
-
/**
|
8 |
-
* Constructor
|
9 |
-
*/
|
10 |
-
public function __construct()
|
11 |
-
{
|
12 |
-
parent::__construct();
|
13 |
-
$this->setId('MailUpLogGrid');
|
14 |
-
$this->setDefaultSort('id');
|
15 |
-
$this->setDefaultDir('ASC');
|
16 |
-
$this->setSaveParametersInSession(true);
|
17 |
-
}
|
18 |
-
|
19 |
-
/**
|
20 |
-
* Prepare Collection
|
21 |
-
*
|
22 |
-
* @return
|
23 |
-
*/
|
24 |
-
protected function _prepareCollection()
|
25 |
-
{
|
26 |
-
$collection = Mage::getModel('mailup/log')->getCollection();
|
27 |
-
$this->setCollection($collection);
|
28 |
-
|
29 |
-
//var_dump(Mage::getModel('mailup/job')->load(1));
|
30 |
-
|
31 |
-
return parent::_prepareCollection();
|
32 |
-
}
|
33 |
-
|
34 |
-
/**
|
35 |
-
* Prepare Grid Columns
|
36 |
-
*/
|
37 |
-
protected function _prepareColumns()
|
38 |
-
{
|
39 |
-
$this->addColumn('id', array(
|
40 |
-
'header' => Mage::helper('mailup')->__('ID'),
|
41 |
-
//'align' =>'right',
|
42 |
-
'width' => '80px',
|
43 |
-
'index' => 'id',
|
44 |
-
));
|
45 |
-
|
46 |
-
$this->addColumn('store_id', array(
|
47 |
-
'header' => Mage::helper('mailup')->__('Store'),
|
48 |
-
'align' => 'left',
|
49 |
-
//'width' => '150px',
|
50 |
-
'index' => 'store_id',
|
51 |
-
'type' => 'options',
|
52 |
-
'options' => Mage::getModel('mailup/source_store')->getSelectOptions(),
|
53 |
-
));
|
54 |
-
|
55 |
-
$this->addColumn('type', array(
|
56 |
-
'header' => Mage::helper('mailup')->__('Type'),
|
57 |
-
//'align' =>'right',
|
58 |
-
//'width' => '80px',
|
59 |
-
'index' => 'type',
|
60 |
-
));
|
61 |
-
|
62 |
-
$this->addColumn('job_id', array(
|
63 |
-
'header' => Mage::helper('mailup')->__('Job ID'),
|
64 |
-
//'align' =>'right',
|
65 |
-
'width' => '80px',
|
66 |
-
'index' => 'job_id',
|
67 |
-
));
|
68 |
-
|
69 |
-
// Not really in use yet!
|
70 |
-
/*$this->addColumn('status', array(
|
71 |
-
'header' => Mage::helper('mailup')->__('Status'),
|
72 |
-
//'align' =>'right',
|
73 |
-
//'width' => '80px',
|
74 |
-
'index' => 'status',
|
75 |
-
));*/
|
76 |
-
|
77 |
-
$this->addColumn('data', array(
|
78 |
-
'header' => Mage::helper('mailup')->__('Info'),
|
79 |
-
//'align' =>'right',
|
80 |
-
//'width' => '80px',
|
81 |
-
'index' => 'data',
|
82 |
-
));
|
83 |
-
|
84 |
-
$this->addColumn('event_time', array(
|
85 |
-
'header' => Mage::helper('mailup')->__('Event Time'),
|
86 |
-
'type' => 'datetime', // Add in Date Picker
|
87 |
-
//'type' => 'timestamp',
|
88 |
-
//'align' => 'center',
|
89 |
-
'width' => '180px',
|
90 |
-
'index' => 'event_time',
|
91 |
-
//'gmtoffset' => true
|
92 |
-
));
|
93 |
-
|
94 |
-
//
|
95 |
-
//
|
96 |
-
// $this->addColumn('status', array(
|
97 |
-
// 'header' => Mage::helper('importer')->__('Status'),
|
98 |
-
// 'align' => 'left',
|
99 |
-
// 'width' => '80px',
|
100 |
-
// 'index' => 'status',
|
101 |
-
// 'type' => 'options',
|
102 |
-
// 'options' => array(
|
103 |
-
// 1 => 'Enabled',
|
104 |
-
// 2 => 'Disabled',
|
105 |
-
// ),
|
106 |
-
// ));
|
107 |
-
//
|
108 |
-
|
109 |
-
// $this->addColumn('action',
|
110 |
-
// array(
|
111 |
-
// 'header' => Mage::helper('mailup')->__('Action'),
|
112 |
-
// 'width' => '100',
|
113 |
-
// 'type' => 'action',
|
114 |
-
// 'getter' => 'getId',
|
115 |
-
// 'actions' => array(
|
116 |
-
// array(
|
117 |
-
// 'caption' => Mage::helper('mailup')->__('Sync'),
|
118 |
-
// 'url' => array('base'=> '*/*/sync'),
|
119 |
-
// 'field' => 'id'
|
120 |
-
// )
|
121 |
-
// ),
|
122 |
-
// 'filter' => false,
|
123 |
-
// 'sortable' => false,
|
124 |
-
// 'index' => 'stores',
|
125 |
-
// 'is_system' => true,
|
126 |
-
// ));
|
127 |
-
|
128 |
-
return parent::_prepareColumns();
|
129 |
-
}
|
130 |
-
|
131 |
-
// /**
|
132 |
-
// * Prepare Mass Action
|
133 |
-
// */
|
134 |
-
// protected function _prepareMassaction()
|
135 |
-
// {
|
136 |
-
// $this->setMassactionIdField('id');
|
137 |
-
// $this->getMassactionBlock()->setFormFieldName('importer');
|
138 |
-
//
|
139 |
-
// $this->getMassactionBlock()->addItem('delete', array(
|
140 |
-
// 'label' => Mage::helper('importer')->__('Delete'),
|
141 |
-
// 'url' => $this->getUrl('*/*/massDelete'),
|
142 |
-
// 'confirm' => Mage::helper('importer')->__('Are you sure?')
|
143 |
-
// ));
|
144 |
-
//
|
145 |
-
// $statuses = Mage::getSingleton('importer/import')->getOptionArray();
|
146 |
-
// array_unshift($statuses, array('label'=>'', 'value'=>''));
|
147 |
-
//
|
148 |
-
// return $this;
|
149 |
-
// }
|
150 |
-
|
151 |
-
/**
|
152 |
-
* Get row url - None editable
|
153 |
-
*/
|
154 |
-
public function getRowUrl($row)
|
155 |
-
{
|
156 |
-
return '';
|
157 |
-
//return $this->getUrl('*/*/edit', array('id' => $row->getId()));
|
158 |
-
}
|
159 |
-
|
160 |
}
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Grid.php
|
4 |
+
*/
|
5 |
+
class SevenLike_MailUp_Block_Adminhtml_Log_Grid extends Mage_Adminhtml_Block_Widget_Grid
|
6 |
+
{
|
7 |
+
/**
|
8 |
+
* Constructor
|
9 |
+
*/
|
10 |
+
public function __construct()
|
11 |
+
{
|
12 |
+
parent::__construct();
|
13 |
+
$this->setId('MailUpLogGrid');
|
14 |
+
$this->setDefaultSort('id');
|
15 |
+
$this->setDefaultDir('ASC');
|
16 |
+
$this->setSaveParametersInSession(true);
|
17 |
+
}
|
18 |
+
|
19 |
+
/**
|
20 |
+
* Prepare Collection
|
21 |
+
*
|
22 |
+
* @return
|
23 |
+
*/
|
24 |
+
protected function _prepareCollection()
|
25 |
+
{
|
26 |
+
$collection = Mage::getModel('mailup/log')->getCollection();
|
27 |
+
$this->setCollection($collection);
|
28 |
+
|
29 |
+
//var_dump(Mage::getModel('mailup/job')->load(1));
|
30 |
+
|
31 |
+
return parent::_prepareCollection();
|
32 |
+
}
|
33 |
+
|
34 |
+
/**
|
35 |
+
* Prepare Grid Columns
|
36 |
+
*/
|
37 |
+
protected function _prepareColumns()
|
38 |
+
{
|
39 |
+
$this->addColumn('id', array(
|
40 |
+
'header' => Mage::helper('mailup')->__('ID'),
|
41 |
+
//'align' =>'right',
|
42 |
+
'width' => '80px',
|
43 |
+
'index' => 'id',
|
44 |
+
));
|
45 |
+
|
46 |
+
$this->addColumn('store_id', array(
|
47 |
+
'header' => Mage::helper('mailup')->__('Store'),
|
48 |
+
'align' => 'left',
|
49 |
+
//'width' => '150px',
|
50 |
+
'index' => 'store_id',
|
51 |
+
'type' => 'options',
|
52 |
+
'options' => Mage::getModel('mailup/source_store')->getSelectOptions(),
|
53 |
+
));
|
54 |
+
|
55 |
+
$this->addColumn('type', array(
|
56 |
+
'header' => Mage::helper('mailup')->__('Type'),
|
57 |
+
//'align' =>'right',
|
58 |
+
//'width' => '80px',
|
59 |
+
'index' => 'type',
|
60 |
+
));
|
61 |
+
|
62 |
+
$this->addColumn('job_id', array(
|
63 |
+
'header' => Mage::helper('mailup')->__('Job ID'),
|
64 |
+
//'align' =>'right',
|
65 |
+
'width' => '80px',
|
66 |
+
'index' => 'job_id',
|
67 |
+
));
|
68 |
+
|
69 |
+
// Not really in use yet!
|
70 |
+
/*$this->addColumn('status', array(
|
71 |
+
'header' => Mage::helper('mailup')->__('Status'),
|
72 |
+
//'align' =>'right',
|
73 |
+
//'width' => '80px',
|
74 |
+
'index' => 'status',
|
75 |
+
));*/
|
76 |
+
|
77 |
+
$this->addColumn('data', array(
|
78 |
+
'header' => Mage::helper('mailup')->__('Info'),
|
79 |
+
//'align' =>'right',
|
80 |
+
//'width' => '80px',
|
81 |
+
'index' => 'data',
|
82 |
+
));
|
83 |
+
|
84 |
+
$this->addColumn('event_time', array(
|
85 |
+
'header' => Mage::helper('mailup')->__('Event Time'),
|
86 |
+
'type' => 'datetime', // Add in Date Picker
|
87 |
+
//'type' => 'timestamp',
|
88 |
+
//'align' => 'center',
|
89 |
+
'width' => '180px',
|
90 |
+
'index' => 'event_time',
|
91 |
+
//'gmtoffset' => true
|
92 |
+
));
|
93 |
+
|
94 |
+
//
|
95 |
+
//
|
96 |
+
// $this->addColumn('status', array(
|
97 |
+
// 'header' => Mage::helper('importer')->__('Status'),
|
98 |
+
// 'align' => 'left',
|
99 |
+
// 'width' => '80px',
|
100 |
+
// 'index' => 'status',
|
101 |
+
// 'type' => 'options',
|
102 |
+
// 'options' => array(
|
103 |
+
// 1 => 'Enabled',
|
104 |
+
// 2 => 'Disabled',
|
105 |
+
// ),
|
106 |
+
// ));
|
107 |
+
//
|
108 |
+
|
109 |
+
// $this->addColumn('action',
|
110 |
+
// array(
|
111 |
+
// 'header' => Mage::helper('mailup')->__('Action'),
|
112 |
+
// 'width' => '100',
|
113 |
+
// 'type' => 'action',
|
114 |
+
// 'getter' => 'getId',
|
115 |
+
// 'actions' => array(
|
116 |
+
// array(
|
117 |
+
// 'caption' => Mage::helper('mailup')->__('Sync'),
|
118 |
+
// 'url' => array('base'=> '*/*/sync'),
|
119 |
+
// 'field' => 'id'
|
120 |
+
// )
|
121 |
+
// ),
|
122 |
+
// 'filter' => false,
|
123 |
+
// 'sortable' => false,
|
124 |
+
// 'index' => 'stores',
|
125 |
+
// 'is_system' => true,
|
126 |
+
// ));
|
127 |
+
|
128 |
+
return parent::_prepareColumns();
|
129 |
+
}
|
130 |
+
|
131 |
+
// /**
|
132 |
+
// * Prepare Mass Action
|
133 |
+
// */
|
134 |
+
// protected function _prepareMassaction()
|
135 |
+
// {
|
136 |
+
// $this->setMassactionIdField('id');
|
137 |
+
// $this->getMassactionBlock()->setFormFieldName('importer');
|
138 |
+
//
|
139 |
+
// $this->getMassactionBlock()->addItem('delete', array(
|
140 |
+
// 'label' => Mage::helper('importer')->__('Delete'),
|
141 |
+
// 'url' => $this->getUrl('*/*/massDelete'),
|
142 |
+
// 'confirm' => Mage::helper('importer')->__('Are you sure?')
|
143 |
+
// ));
|
144 |
+
//
|
145 |
+
// $statuses = Mage::getSingleton('importer/import')->getOptionArray();
|
146 |
+
// array_unshift($statuses, array('label'=>'', 'value'=>''));
|
147 |
+
//
|
148 |
+
// return $this;
|
149 |
+
// }
|
150 |
+
|
151 |
+
/**
|
152 |
+
* Get row url - None editable
|
153 |
+
*/
|
154 |
+
public function getRowUrl($row)
|
155 |
+
{
|
156 |
+
return '';
|
157 |
+
//return $this->getUrl('*/*/edit', array('id' => $row->getId()));
|
158 |
+
}
|
159 |
+
|
160 |
}
|
app/code/local/SevenLike/MailUp/Block/Adminhtml/Mailup/Grid.php
CHANGED
@@ -1,247 +1,247 @@
|
|
1 |
-
<?php
|
2 |
-
/**
|
3 |
-
* Grid.php
|
4 |
-
*/
|
5 |
-
class SevenLike_MailUp_Block_Adminhtml_MailUp_Grid extends Mage_Adminhtml_Block_Widget_Grid
|
6 |
-
{
|
7 |
-
/**
|
8 |
-
* Constructor
|
9 |
-
*/
|
10 |
-
public function __construct()
|
11 |
-
{
|
12 |
-
parent::__construct();
|
13 |
-
$this->setId('MailUpGrid');
|
14 |
-
$this->setDefaultSort('id');
|
15 |
-
$this->setDefaultDir('ASC');
|
16 |
-
$this->setSaveParametersInSession(true);
|
17 |
-
}
|
18 |
-
|
19 |
-
/**
|
20 |
-
* Prepare Collection
|
21 |
-
*
|
22 |
-
* @return
|
23 |
-
*/
|
24 |
-
protected function _prepareCollection()
|
25 |
-
{
|
26 |
-
$collection = Mage::getModel('mailup/job')->getCollection();
|
27 |
-
$this->setCollection($collection);
|
28 |
-
|
29 |
-
//var_dump(Mage::getModel('mailup/job')->load(1));
|
30 |
-
|
31 |
-
return parent::_prepareCollection();
|
32 |
-
}
|
33 |
-
|
34 |
-
/**
|
35 |
-
* Prepare Grid Columns
|
36 |
-
*/
|
37 |
-
protected function _prepareColumns()
|
38 |
-
{
|
39 |
-
$this->addColumn('id', array(
|
40 |
-
'header' => Mage::helper('mailup')->__('ID'),
|
41 |
-
//'align' =>'right',
|
42 |
-
'width' => '80px',
|
43 |
-
'index' => 'id',
|
44 |
-
));
|
45 |
-
|
46 |
-
$this->addColumn('type', array(
|
47 |
-
'header' => Mage::helper('mailup')->__('Type'),
|
48 |
-
'align' => 'left',
|
49 |
-
'index' => 'type',
|
50 |
-
'type' => 'options',
|
51 |
-
'options' => array(
|
52 |
-
0 => 'Manual Sync',
|
53 |
-
1 => 'Auto Sync',
|
54 |
-
//2 => 'Disabled',
|
55 |
-
),
|
56 |
-
));
|
57 |
-
|
58 |
-
$this->addColumn('store_id', array(
|
59 |
-
'header' => Mage::helper('mailup')->__('Store'),
|
60 |
-
'align' => 'left',
|
61 |
-
//'width' => '150px',
|
62 |
-
'index' => 'store_id',
|
63 |
-
'type' => 'options',
|
64 |
-
'options' => Mage::getModel('mailup/source_store')->getSelectOptions(),
|
65 |
-
));
|
66 |
-
|
67 |
-
/*$this->addColumn('store_id', array(
|
68 |
-
'header' => Mage::helper('mailup')->__('Store ID'),
|
69 |
-
//'align' =>'right',
|
70 |
-
'width' => '80px',
|
71 |
-
'index' => 'store_id',
|
72 |
-
));*/
|
73 |
-
|
74 |
-
$this->addColumn('mailupgroupid', array(
|
75 |
-
'header' => Mage::helper('mailup')->__('Mailup Group ID'),
|
76 |
-
//'align' =>'right',
|
77 |
-
'width' => '80px',
|
78 |
-
'index' => 'mailupgroupid',
|
79 |
-
));
|
80 |
-
|
81 |
-
$this->addColumn('list_id', array(
|
82 |
-
'header' => Mage::helper('mailup')->__('Mailup List ID'),
|
83 |
-
//'align' =>'right',
|
84 |
-
'width' => '80px',
|
85 |
-
'index' => 'list_id',
|
86 |
-
));
|
87 |
-
|
88 |
-
$this->addColumn('list_guid', array(
|
89 |
-
'header' => Mage::helper('mailup')->__('Mailup List GUID'),
|
90 |
-
'index' => 'list_guid',
|
91 |
-
));
|
92 |
-
|
93 |
-
$this->addColumn('send_optin', array(
|
94 |
-
'header' => Mage::helper('mailup')->__('Opt In'),
|
95 |
-
'align' => 'left',
|
96 |
-
'index' => 'send_optin',
|
97 |
-
'type' => 'options',
|
98 |
-
'options' => array(
|
99 |
-
0 => 'No',
|
100 |
-
1 => 'Yes',
|
101 |
-
),
|
102 |
-
));
|
103 |
-
|
104 |
-
$this->addColumn('as_pending', array(
|
105 |
-
'header' => Mage::helper('mailup')->__('As Pending'),
|
106 |
-
'align' => 'left',
|
107 |
-
'index' => 'as_pending',
|
108 |
-
'type' => 'options',
|
109 |
-
'options' => array(
|
110 |
-
0 => 'No',
|
111 |
-
1 => 'Yes',
|
112 |
-
),
|
113 |
-
));
|
114 |
-
|
115 |
-
$this->addColumn('status', array(
|
116 |
-
'header' => Mage::helper('mailup')->__('Status'),
|
117 |
-
//'align' =>'right',
|
118 |
-
'index' => 'status',
|
119 |
-
));
|
120 |
-
|
121 |
-
$this->addColumn('process_id', array(
|
122 |
-
'header' => Mage::helper('mailup')->__('Process ID'),
|
123 |
-
//'align' =>'right',
|
124 |
-
'width' => '80px',
|
125 |
-
'index' => 'process_id',
|
126 |
-
));
|
127 |
-
|
128 |
-
$this->addColumn('tries', array(
|
129 |
-
'header' => Mage::helper('mailup')->__('Tries'),
|
130 |
-
//'align' =>'right',
|
131 |
-
'width' => '50px',
|
132 |
-
'index' => 'tries',
|
133 |
-
));
|
134 |
-
|
135 |
-
$this->addColumn('queue_datetime', array(
|
136 |
-
'header' => Mage::helper('mailup')->__('Queue Time'),
|
137 |
-
'type' => 'datetime', // Add in Date Picker
|
138 |
-
//'type' => 'timestamp',
|
139 |
-
//'align' => 'center',
|
140 |
-
'width' => '180px',
|
141 |
-
'index' => 'queue_datetime',
|
142 |
-
//'gmtoffset' => true
|
143 |
-
));
|
144 |
-
|
145 |
-
$this->addColumn('start_datetime', array(
|
146 |
-
'header' => Mage::helper('mailup')->__('Started'),
|
147 |
-
'type' => 'datetime', // Add in Date Picker
|
148 |
-
//'type' => 'timestamp',
|
149 |
-
//'align' => 'center',
|
150 |
-
'width' => '180px',
|
151 |
-
'index' => 'start_datetime',
|
152 |
-
//'gmtoffset' => true
|
153 |
-
));
|
154 |
-
|
155 |
-
$this->addColumn('finish_datetime', array(
|
156 |
-
'header' => Mage::helper('mailup')->__('Finished'),
|
157 |
-
'type' => 'datetime', // Add in Date Picker
|
158 |
-
//'type' => 'timestamp',
|
159 |
-
//'align' => 'center',
|
160 |
-
'width' => '180px',
|
161 |
-
'index' => 'finish_datetime',
|
162 |
-
//'gmtoffset' => true
|
163 |
-
));
|
164 |
-
|
165 |
-
//
|
166 |
-
//
|
167 |
-
// $this->addColumn('status', array(
|
168 |
-
// 'header' => Mage::helper('importer')->__('Status'),
|
169 |
-
// 'align' => 'left',
|
170 |
-
// 'width' => '80px',
|
171 |
-
// 'index' => 'status',
|
172 |
-
// 'type' => 'options',
|
173 |
-
// 'options' => array(
|
174 |
-
// 1 => 'Enabled',
|
175 |
-
// 2 => 'Disabled',
|
176 |
-
// ),
|
177 |
-
// ));
|
178 |
-
//
|
179 |
-
|
180 |
-
$this->addColumn('action',
|
181 |
-
array(
|
182 |
-
'header' => Mage::helper('mailup')->__('Action'),
|
183 |
-
'width' => '100',
|
184 |
-
'type' => 'action',
|
185 |
-
'getter' => 'getId',
|
186 |
-
'actions' => array(
|
187 |
-
array(
|
188 |
-
'caption' => Mage::helper('mailup')->__('Run'),
|
189 |
-
'url' => array('base'=> '*/*/runjob'),
|
190 |
-
'field' => 'id'
|
191 |
-
),
|
192 |
-
array(
|
193 |
-
'caption' => Mage::helper('mailup')->__('StartProcess'),
|
194 |
-
'url' => array('base'=> '*/*/startProcess'),
|
195 |
-
'field' => 'id'
|
196 |
-
),
|
197 |
-
array(
|
198 |
-
'caption' => Mage::helper('mailup')->__('GetProcessDetail'),
|
199 |
-
'url' => array('base'=> '*/*/getProcessDetail'),
|
200 |
-
'field' => 'id'
|
201 |
-
),
|
202 |
-
array(
|
203 |
-
'caption' => Mage::helper('mailup')->__('Delete'),
|
204 |
-
'url' => array('base'=> '*/*/delete'),
|
205 |
-
'field' => 'id'
|
206 |
-
),
|
207 |
-
),
|
208 |
-
'filter' => false,
|
209 |
-
'sortable' => false,
|
210 |
-
'index' => 'stores',
|
211 |
-
'is_system' => true,
|
212 |
-
));
|
213 |
-
|
214 |
-
|
215 |
-
return parent::_prepareColumns();
|
216 |
-
}
|
217 |
-
|
218 |
-
// /**
|
219 |
-
// * Prepare Mass Action
|
220 |
-
// */
|
221 |
-
// protected function _prepareMassaction()
|
222 |
-
// {
|
223 |
-
// $this->setMassactionIdField('id');
|
224 |
-
// $this->getMassactionBlock()->setFormFieldName('importer');
|
225 |
-
//
|
226 |
-
// $this->getMassactionBlock()->addItem('delete', array(
|
227 |
-
// 'label' => Mage::helper('importer')->__('Delete'),
|
228 |
-
// 'url' => $this->getUrl('*/*/massDelete'),
|
229 |
-
// 'confirm' => Mage::helper('importer')->__('Are you sure?')
|
230 |
-
// ));
|
231 |
-
//
|
232 |
-
// $statuses = Mage::getSingleton('importer/import')->getOptionArray();
|
233 |
-
// array_unshift($statuses, array('label'=>'', 'value'=>''));
|
234 |
-
//
|
235 |
-
// return $this;
|
236 |
-
// }
|
237 |
-
|
238 |
-
/**
|
239 |
-
* Get row url - None editable
|
240 |
-
*/
|
241 |
-
public function getRowUrl($row)
|
242 |
-
{
|
243 |
-
return '';
|
244 |
-
//return $this->getUrl('*/*/edit', array('id' => $row->getId()));
|
245 |
-
}
|
246 |
-
|
247 |
}
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Grid.php
|
4 |
+
*/
|
5 |
+
class SevenLike_MailUp_Block_Adminhtml_MailUp_Grid extends Mage_Adminhtml_Block_Widget_Grid
|
6 |
+
{
|
7 |
+
/**
|
8 |
+
* Constructor
|
9 |
+
*/
|
10 |
+
public function __construct()
|
11 |
+
{
|
12 |
+
parent::__construct();
|
13 |
+
$this->setId('MailUpGrid');
|
14 |
+
$this->setDefaultSort('id');
|
15 |
+
$this->setDefaultDir('ASC');
|
16 |
+
$this->setSaveParametersInSession(true);
|
17 |
+
}
|
18 |
+
|
19 |
+
/**
|
20 |
+
* Prepare Collection
|
21 |
+
*
|
22 |
+
* @return
|
23 |
+
*/
|
24 |
+
protected function _prepareCollection()
|
25 |
+
{
|
26 |
+
$collection = Mage::getModel('mailup/job')->getCollection();
|
27 |
+
$this->setCollection($collection);
|
28 |
+
|
29 |
+
//var_dump(Mage::getModel('mailup/job')->load(1));
|
30 |
+
|
31 |
+
return parent::_prepareCollection();
|
32 |
+
}
|
33 |
+
|
34 |
+
/**
|
35 |
+
* Prepare Grid Columns
|
36 |
+
*/
|
37 |
+
protected function _prepareColumns()
|
38 |
+
{
|
39 |
+
$this->addColumn('id', array(
|
40 |
+
'header' => Mage::helper('mailup')->__('ID'),
|
41 |
+
//'align' =>'right',
|
42 |
+
'width' => '80px',
|
43 |
+
'index' => 'id',
|
44 |
+
));
|
45 |
+
|
46 |
+
$this->addColumn('type', array(
|
47 |
+
'header' => Mage::helper('mailup')->__('Type'),
|
48 |
+
'align' => 'left',
|
49 |
+
'index' => 'type',
|
50 |
+
'type' => 'options',
|
51 |
+
'options' => array(
|
52 |
+
0 => 'Manual Sync',
|
53 |
+
1 => 'Auto Sync',
|
54 |
+
//2 => 'Disabled',
|
55 |
+
),
|
56 |
+
));
|
57 |
+
|
58 |
+
$this->addColumn('store_id', array(
|
59 |
+
'header' => Mage::helper('mailup')->__('Store'),
|
60 |
+
'align' => 'left',
|
61 |
+
//'width' => '150px',
|
62 |
+
'index' => 'store_id',
|
63 |
+
'type' => 'options',
|
64 |
+
'options' => Mage::getModel('mailup/source_store')->getSelectOptions(),
|
65 |
+
));
|
66 |
+
|
67 |
+
/*$this->addColumn('store_id', array(
|
68 |
+
'header' => Mage::helper('mailup')->__('Store ID'),
|
69 |
+
//'align' =>'right',
|
70 |
+
'width' => '80px',
|
71 |
+
'index' => 'store_id',
|
72 |
+
));*/
|
73 |
+
|
74 |
+
$this->addColumn('mailupgroupid', array(
|
75 |
+
'header' => Mage::helper('mailup')->__('Mailup Group ID'),
|
76 |
+
//'align' =>'right',
|
77 |
+
'width' => '80px',
|
78 |
+
'index' => 'mailupgroupid',
|
79 |
+
));
|
80 |
+
|
81 |
+
$this->addColumn('list_id', array(
|
82 |
+
'header' => Mage::helper('mailup')->__('Mailup List ID'),
|
83 |
+
//'align' =>'right',
|
84 |
+
'width' => '80px',
|
85 |
+
'index' => 'list_id',
|
86 |
+
));
|
87 |
+
|
88 |
+
$this->addColumn('list_guid', array(
|
89 |
+
'header' => Mage::helper('mailup')->__('Mailup List GUID'),
|
90 |
+
'index' => 'list_guid',
|
91 |
+
));
|
92 |
+
|
93 |
+
$this->addColumn('send_optin', array(
|
94 |
+
'header' => Mage::helper('mailup')->__('Opt In'),
|
95 |
+
'align' => 'left',
|
96 |
+
'index' => 'send_optin',
|
97 |
+
'type' => 'options',
|
98 |
+
'options' => array(
|
99 |
+
0 => 'No',
|
100 |
+
1 => 'Yes',
|
101 |
+
),
|
102 |
+
));
|
103 |
+
|
104 |
+
$this->addColumn('as_pending', array(
|
105 |
+
'header' => Mage::helper('mailup')->__('As Pending'),
|
106 |
+
'align' => 'left',
|
107 |
+
'index' => 'as_pending',
|
108 |
+
'type' => 'options',
|
109 |
+
'options' => array(
|
110 |
+
0 => 'No',
|
111 |
+
1 => 'Yes',
|
112 |
+
),
|
113 |
+
));
|
114 |
+
|
115 |
+
$this->addColumn('status', array(
|
116 |
+
'header' => Mage::helper('mailup')->__('Status'),
|
117 |
+
//'align' =>'right',
|
118 |
+
'index' => 'status',
|
119 |
+
));
|
120 |
+
|
121 |
+
$this->addColumn('process_id', array(
|
122 |
+
'header' => Mage::helper('mailup')->__('Process ID'),
|
123 |
+
//'align' =>'right',
|
124 |
+
'width' => '80px',
|
125 |
+
'index' => 'process_id',
|
126 |
+
));
|
127 |
+
|
128 |
+
$this->addColumn('tries', array(
|
129 |
+
'header' => Mage::helper('mailup')->__('Tries'),
|
130 |
+
//'align' =>'right',
|
131 |
+
'width' => '50px',
|
132 |
+
'index' => 'tries',
|
133 |
+
));
|
134 |
+
|
135 |
+
$this->addColumn('queue_datetime', array(
|
136 |
+
'header' => Mage::helper('mailup')->__('Queue Time'),
|
137 |
+
'type' => 'datetime', // Add in Date Picker
|
138 |
+
//'type' => 'timestamp',
|
139 |
+
//'align' => 'center',
|
140 |
+
'width' => '180px',
|
141 |
+
'index' => 'queue_datetime',
|
142 |
+
//'gmtoffset' => true
|
143 |
+
));
|
144 |
+
|
145 |
+
$this->addColumn('start_datetime', array(
|
146 |
+
'header' => Mage::helper('mailup')->__('Started'),
|
147 |
+
'type' => 'datetime', // Add in Date Picker
|
148 |
+
//'type' => 'timestamp',
|
149 |
+
//'align' => 'center',
|
150 |
+
'width' => '180px',
|
151 |
+
'index' => 'start_datetime',
|
152 |
+
//'gmtoffset' => true
|
153 |
+
));
|
154 |
+
|
155 |
+
$this->addColumn('finish_datetime', array(
|
156 |
+
'header' => Mage::helper('mailup')->__('Finished'),
|
157 |
+
'type' => 'datetime', // Add in Date Picker
|
158 |
+
//'type' => 'timestamp',
|
159 |
+
//'align' => 'center',
|
160 |
+
'width' => '180px',
|
161 |
+
'index' => 'finish_datetime',
|
162 |
+
//'gmtoffset' => true
|
163 |
+
));
|
164 |
+
|
165 |
+
//
|
166 |
+
//
|
167 |
+
// $this->addColumn('status', array(
|
168 |
+
// 'header' => Mage::helper('importer')->__('Status'),
|
169 |
+
// 'align' => 'left',
|
170 |
+
// 'width' => '80px',
|
171 |
+
// 'index' => 'status',
|
172 |
+
// 'type' => 'options',
|
173 |
+
// 'options' => array(
|
174 |
+
// 1 => 'Enabled',
|
175 |
+
// 2 => 'Disabled',
|
176 |
+
// ),
|
177 |
+
// ));
|
178 |
+
//
|
179 |
+
|
180 |
+
$this->addColumn('action',
|
181 |
+
array(
|
182 |
+
'header' => Mage::helper('mailup')->__('Action'),
|
183 |
+
'width' => '100',
|
184 |
+
'type' => 'action',
|
185 |
+
'getter' => 'getId',
|
186 |
+
'actions' => array(
|
187 |
+
array(
|
188 |
+
'caption' => Mage::helper('mailup')->__('Run'),
|
189 |
+
'url' => array('base'=> '*/*/runjob'),
|
190 |
+
'field' => 'id'
|
191 |
+
),
|
192 |
+
array(
|
193 |
+
'caption' => Mage::helper('mailup')->__('StartProcess'),
|
194 |
+
'url' => array('base'=> '*/*/startProcess'),
|
195 |
+
'field' => 'id'
|
196 |
+
),
|
197 |
+
array(
|
198 |
+
'caption' => Mage::helper('mailup')->__('GetProcessDetail'),
|
199 |
+
'url' => array('base'=> '*/*/getProcessDetail'),
|
200 |
+
'field' => 'id'
|
201 |
+
),
|
202 |
+
array(
|
203 |
+
'caption' => Mage::helper('mailup')->__('Delete'),
|
204 |
+
'url' => array('base'=> '*/*/delete'),
|
205 |
+
'field' => 'id'
|
206 |
+
),
|
207 |
+
),
|
208 |
+
'filter' => false,
|
209 |
+
'sortable' => false,
|
210 |
+
'index' => 'stores',
|
211 |
+
'is_system' => true,
|
212 |
+
));
|
213 |
+
|
214 |
+
|
215 |
+
return parent::_prepareColumns();
|
216 |
+
}
|
217 |
+
|
218 |
+
// /**
|
219 |
+
// * Prepare Mass Action
|
220 |
+
// */
|
221 |
+
// protected function _prepareMassaction()
|
222 |
+
// {
|
223 |
+
// $this->setMassactionIdField('id');
|
224 |
+
// $this->getMassactionBlock()->setFormFieldName('importer');
|
225 |
+
//
|
226 |
+
// $this->getMassactionBlock()->addItem('delete', array(
|
227 |
+
// 'label' => Mage::helper('importer')->__('Delete'),
|
228 |
+
// 'url' => $this->getUrl('*/*/massDelete'),
|
229 |
+
// 'confirm' => Mage::helper('importer')->__('Are you sure?')
|
230 |
+
// ));
|
231 |
+
//
|
232 |
+
// $statuses = Mage::getSingleton('importer/import')->getOptionArray();
|
233 |
+
// array_unshift($statuses, array('label'=>'', 'value'=>''));
|
234 |
+
//
|
235 |
+
// return $this;
|
236 |
+
// }
|
237 |
+
|
238 |
+
/**
|
239 |
+
* Get row url - None editable
|
240 |
+
*/
|
241 |
+
public function getRowUrl($row)
|
242 |
+
{
|
243 |
+
return '';
|
244 |
+
//return $this->getUrl('*/*/edit', array('id' => $row->getId()));
|
245 |
+
}
|
246 |
+
|
247 |
}
|
app/code/local/SevenLike/MailUp/Block/Adminhtml/Sync/Grid.php
CHANGED
@@ -1,181 +1,181 @@
|
|
1 |
-
<?php
|
2 |
-
/**
|
3 |
-
* Grid.php
|
4 |
-
*/
|
5 |
-
class SevenLike_MailUp_Block_Adminhtml_Sync_Grid extends Mage_Adminhtml_Block_Widget_Grid
|
6 |
-
{
|
7 |
-
/**
|
8 |
-
* Constructor
|
9 |
-
*/
|
10 |
-
public function __construct()
|
11 |
-
{
|
12 |
-
parent::__construct();
|
13 |
-
$this->setId('MailUpSyncGrid');
|
14 |
-
$this->setDefaultSort('id');
|
15 |
-
$this->setDefaultDir('ASC');
|
16 |
-
$this->setSaveParametersInSession(true);
|
17 |
-
}
|
18 |
-
|
19 |
-
/**
|
20 |
-
* Prepare Collection
|
21 |
-
*
|
22 |
-
* @return
|
23 |
-
*/
|
24 |
-
protected function _prepareCollection()
|
25 |
-
{
|
26 |
-
$collection = Mage::getModel('mailup/sync')->getCollection();
|
27 |
-
$this->setCollection($collection);
|
28 |
-
|
29 |
-
//var_dump(Mage::getModel('mailup/job')->load(1));
|
30 |
-
|
31 |
-
return parent::_prepareCollection();
|
32 |
-
}
|
33 |
-
|
34 |
-
/**
|
35 |
-
* Prepare Grid Columns
|
36 |
-
*/
|
37 |
-
protected function _prepareColumns()
|
38 |
-
{
|
39 |
-
$this->addColumn('id', array(
|
40 |
-
'header' => Mage::helper('mailup')->__('ID'),
|
41 |
-
//'align' =>'right',
|
42 |
-
'width' => '80px',
|
43 |
-
'index' => 'id',
|
44 |
-
));
|
45 |
-
|
46 |
-
|
47 |
-
|
48 |
-
$this->addColumn('store_id', array(
|
49 |
-
'header' => Mage::helper('mailup')->__('Store'),
|
50 |
-
'align' => 'left',
|
51 |
-
//'width' => '150px',
|
52 |
-
'index' => 'store_id',
|
53 |
-
'type' => 'options',
|
54 |
-
'options' => Mage::getModel('mailup/source_store')->getSelectOptions(),
|
55 |
-
));
|
56 |
-
|
57 |
-
/*$this->addColumn('store_id', array(
|
58 |
-
'header' => Mage::helper('mailup')->__('Store ID'),
|
59 |
-
//'align' =>'right',
|
60 |
-
'width' => '80px',
|
61 |
-
'index' => 'store_id',
|
62 |
-
));*/
|
63 |
-
|
64 |
-
$this->addColumn('customer_id', array(
|
65 |
-
'header' => Mage::helper('mailup')->__('Customer ID'),
|
66 |
-
//'align' =>'right',
|
67 |
-
'width' => '80px',
|
68 |
-
'index' => 'customer_id',
|
69 |
-
));
|
70 |
-
|
71 |
-
$this->addColumn('entity', array(
|
72 |
-
'header' => Mage::helper('mailup')->__('Entity'),
|
73 |
-
//'align' =>'right',
|
74 |
-
//'width' => '80px',
|
75 |
-
'index' => 'entity',
|
76 |
-
));
|
77 |
-
|
78 |
-
$this->addColumn('job_id', array(
|
79 |
-
'header' => Mage::helper('mailup')->__('Job ID'),
|
80 |
-
//'align' =>'right',
|
81 |
-
'width' => '80px',
|
82 |
-
'index' => 'job_id',
|
83 |
-
));
|
84 |
-
|
85 |
-
$this->addColumn('needs_sync', array(
|
86 |
-
'header' => Mage::helper('mailup')->__('Needs Sync'),
|
87 |
-
'align' => 'left',
|
88 |
-
'index' => 'needs_sync',
|
89 |
-
'type' => 'options',
|
90 |
-
'options' => array(
|
91 |
-
0 => 'No',
|
92 |
-
1 => 'Yes',
|
93 |
-
),
|
94 |
-
));
|
95 |
-
|
96 |
-
$this->addColumn('created', array(
|
97 |
-
'header' => Mage::helper('mailup')->__('Created'),
|
98 |
-
'type' => 'timestamp',
|
99 |
-
//'align' => 'center',
|
100 |
-
'width' => '180px',
|
101 |
-
'index' => 'created',
|
102 |
-
//'gmtoffset' => true
|
103 |
-
));
|
104 |
-
|
105 |
-
$this->addColumn('last_sync', array(
|
106 |
-
'header' => Mage::helper('mailup')->__('Last Sync Time'),
|
107 |
-
'type' => 'datetime', // Add in Date Picker
|
108 |
-
//'type' => 'timestamp',
|
109 |
-
//'align' => 'center',
|
110 |
-
'width' => '180px',
|
111 |
-
'index' => 'last_sync',
|
112 |
-
//'gmtoffset' => true
|
113 |
-
));
|
114 |
-
|
115 |
-
//
|
116 |
-
//
|
117 |
-
// $this->addColumn('status', array(
|
118 |
-
// 'header' => Mage::helper('importer')->__('Status'),
|
119 |
-
// 'align' => 'left',
|
120 |
-
// 'width' => '80px',
|
121 |
-
// 'index' => 'status',
|
122 |
-
// 'type' => 'options',
|
123 |
-
// 'options' => array(
|
124 |
-
// 1 => 'Enabled',
|
125 |
-
// 2 => 'Disabled',
|
126 |
-
// ),
|
127 |
-
// ));
|
128 |
-
//
|
129 |
-
|
130 |
-
// $this->addColumn('action',
|
131 |
-
// array(
|
132 |
-
// 'header' => Mage::helper('mailup')->__('Action'),
|
133 |
-
// 'width' => '100',
|
134 |
-
// 'type' => 'action',
|
135 |
-
// 'getter' => 'getId',
|
136 |
-
// 'actions' => array(
|
137 |
-
// array(
|
138 |
-
// 'caption' => Mage::helper('mailup')->__('Sync'),
|
139 |
-
// 'url' => array('base'=> '*/*/sync'),
|
140 |
-
// 'field' => 'id'
|
141 |
-
// )
|
142 |
-
// ),
|
143 |
-
// 'filter' => false,
|
144 |
-
// 'sortable' => false,
|
145 |
-
// 'index' => 'stores',
|
146 |
-
// 'is_system' => true,
|
147 |
-
// ));
|
148 |
-
|
149 |
-
return parent::_prepareColumns();
|
150 |
-
}
|
151 |
-
|
152 |
-
// /**
|
153 |
-
// * Prepare Mass Action
|
154 |
-
// */
|
155 |
-
// protected function _prepareMassaction()
|
156 |
-
// {
|
157 |
-
// $this->setMassactionIdField('id');
|
158 |
-
// $this->getMassactionBlock()->setFormFieldName('importer');
|
159 |
-
//
|
160 |
-
// $this->getMassactionBlock()->addItem('delete', array(
|
161 |
-
// 'label' => Mage::helper('importer')->__('Delete'),
|
162 |
-
// 'url' => $this->getUrl('*/*/massDelete'),
|
163 |
-
// 'confirm' => Mage::helper('importer')->__('Are you sure?')
|
164 |
-
// ));
|
165 |
-
//
|
166 |
-
// $statuses = Mage::getSingleton('importer/import')->getOptionArray();
|
167 |
-
// array_unshift($statuses, array('label'=>'', 'value'=>''));
|
168 |
-
//
|
169 |
-
// return $this;
|
170 |
-
// }
|
171 |
-
|
172 |
-
/**
|
173 |
-
* Get row url - None editable
|
174 |
-
*/
|
175 |
-
public function getRowUrl($row)
|
176 |
-
{
|
177 |
-
return '';
|
178 |
-
//return $this->getUrl('*/*/edit', array('id' => $row->getId()));
|
179 |
-
}
|
180 |
-
|
181 |
}
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Grid.php
|
4 |
+
*/
|
5 |
+
class SevenLike_MailUp_Block_Adminhtml_Sync_Grid extends Mage_Adminhtml_Block_Widget_Grid
|
6 |
+
{
|
7 |
+
/**
|
8 |
+
* Constructor
|
9 |
+
*/
|
10 |
+
public function __construct()
|
11 |
+
{
|
12 |
+
parent::__construct();
|
13 |
+
$this->setId('MailUpSyncGrid');
|
14 |
+
$this->setDefaultSort('id');
|
15 |
+
$this->setDefaultDir('ASC');
|
16 |
+
$this->setSaveParametersInSession(true);
|
17 |
+
}
|
18 |
+
|
19 |
+
/**
|
20 |
+
* Prepare Collection
|
21 |
+
*
|
22 |
+
* @return
|
23 |
+
*/
|
24 |
+
protected function _prepareCollection()
|
25 |
+
{
|
26 |
+
$collection = Mage::getModel('mailup/sync')->getCollection();
|
27 |
+
$this->setCollection($collection);
|
28 |
+
|
29 |
+
//var_dump(Mage::getModel('mailup/job')->load(1));
|
30 |
+
|
31 |
+
return parent::_prepareCollection();
|
32 |
+
}
|
33 |
+
|
34 |
+
/**
|
35 |
+
* Prepare Grid Columns
|
36 |
+
*/
|
37 |
+
protected function _prepareColumns()
|
38 |
+
{
|
39 |
+
$this->addColumn('id', array(
|
40 |
+
'header' => Mage::helper('mailup')->__('ID'),
|
41 |
+
//'align' =>'right',
|
42 |
+
'width' => '80px',
|
43 |
+
'index' => 'id',
|
44 |
+
));
|
45 |
+
|
46 |
+
|
47 |
+
|
48 |
+
$this->addColumn('store_id', array(
|
49 |
+
'header' => Mage::helper('mailup')->__('Store'),
|
50 |
+
'align' => 'left',
|
51 |
+
//'width' => '150px',
|
52 |
+
'index' => 'store_id',
|
53 |
+
'type' => 'options',
|
54 |
+
'options' => Mage::getModel('mailup/source_store')->getSelectOptions(),
|
55 |
+
));
|
56 |
+
|
57 |
+
/*$this->addColumn('store_id', array(
|
58 |
+
'header' => Mage::helper('mailup')->__('Store ID'),
|
59 |
+
//'align' =>'right',
|
60 |
+
'width' => '80px',
|
61 |
+
'index' => 'store_id',
|
62 |
+
));*/
|
63 |
+
|
64 |
+
$this->addColumn('customer_id', array(
|
65 |
+
'header' => Mage::helper('mailup')->__('Customer ID'),
|
66 |
+
//'align' =>'right',
|
67 |
+
'width' => '80px',
|
68 |
+
'index' => 'customer_id',
|
69 |
+
));
|
70 |
+
|
71 |
+
$this->addColumn('entity', array(
|
72 |
+
'header' => Mage::helper('mailup')->__('Entity'),
|
73 |
+
//'align' =>'right',
|
74 |
+
//'width' => '80px',
|
75 |
+
'index' => 'entity',
|
76 |
+
));
|
77 |
+
|
78 |
+
$this->addColumn('job_id', array(
|
79 |
+
'header' => Mage::helper('mailup')->__('Job ID'),
|
80 |
+
//'align' =>'right',
|
81 |
+
'width' => '80px',
|
82 |
+
'index' => 'job_id',
|
83 |
+
));
|
84 |
+
|
85 |
+
$this->addColumn('needs_sync', array(
|
86 |
+
'header' => Mage::helper('mailup')->__('Needs Sync'),
|
87 |
+
'align' => 'left',
|
88 |
+
'index' => 'needs_sync',
|
89 |
+
'type' => 'options',
|
90 |
+
'options' => array(
|
91 |
+
0 => 'No',
|
92 |
+
1 => 'Yes',
|
93 |
+
),
|
94 |
+
));
|
95 |
+
|
96 |
+
$this->addColumn('created', array(
|
97 |
+
'header' => Mage::helper('mailup')->__('Created'),
|
98 |
+
'type' => 'timestamp',
|
99 |
+
//'align' => 'center',
|
100 |
+
'width' => '180px',
|
101 |
+
'index' => 'created',
|
102 |
+
//'gmtoffset' => true
|
103 |
+
));
|
104 |
+
|
105 |
+
$this->addColumn('last_sync', array(
|
106 |
+
'header' => Mage::helper('mailup')->__('Last Sync Time'),
|
107 |
+
'type' => 'datetime', // Add in Date Picker
|
108 |
+
//'type' => 'timestamp',
|
109 |
+
//'align' => 'center',
|
110 |
+
'width' => '180px',
|
111 |
+
'index' => 'last_sync',
|
112 |
+
//'gmtoffset' => true
|
113 |
+
));
|
114 |
+
|
115 |
+
//
|
116 |
+
//
|
117 |
+
// $this->addColumn('status', array(
|
118 |
+
// 'header' => Mage::helper('importer')->__('Status'),
|
119 |
+
// 'align' => 'left',
|
120 |
+
// 'width' => '80px',
|
121 |
+
// 'index' => 'status',
|
122 |
+
// 'type' => 'options',
|
123 |
+
// 'options' => array(
|
124 |
+
// 1 => 'Enabled',
|
125 |
+
// 2 => 'Disabled',
|
126 |
+
// ),
|
127 |
+
// ));
|
128 |
+
//
|
129 |
+
|
130 |
+
// $this->addColumn('action',
|
131 |
+
// array(
|
132 |
+
// 'header' => Mage::helper('mailup')->__('Action'),
|
133 |
+
// 'width' => '100',
|
134 |
+
// 'type' => 'action',
|
135 |
+
// 'getter' => 'getId',
|
136 |
+
// 'actions' => array(
|
137 |
+
// array(
|
138 |
+
// 'caption' => Mage::helper('mailup')->__('Sync'),
|
139 |
+
// 'url' => array('base'=> '*/*/sync'),
|
140 |
+
// 'field' => 'id'
|
141 |
+
// )
|
142 |
+
// ),
|
143 |
+
// 'filter' => false,
|
144 |
+
// 'sortable' => false,
|
145 |
+
// 'index' => 'stores',
|
146 |
+
// 'is_system' => true,
|
147 |
+
// ));
|
148 |
+
|
149 |
+
return parent::_prepareColumns();
|
150 |
+
}
|
151 |
+
|
152 |
+
// /**
|
153 |
+
// * Prepare Mass Action
|
154 |
+
// */
|
155 |
+
// protected function _prepareMassaction()
|
156 |
+
// {
|
157 |
+
// $this->setMassactionIdField('id');
|
158 |
+
// $this->getMassactionBlock()->setFormFieldName('importer');
|
159 |
+
//
|
160 |
+
// $this->getMassactionBlock()->addItem('delete', array(
|
161 |
+
// 'label' => Mage::helper('importer')->__('Delete'),
|
162 |
+
// 'url' => $this->getUrl('*/*/massDelete'),
|
163 |
+
// 'confirm' => Mage::helper('importer')->__('Are you sure?')
|
164 |
+
// ));
|
165 |
+
//
|
166 |
+
// $statuses = Mage::getSingleton('importer/import')->getOptionArray();
|
167 |
+
// array_unshift($statuses, array('label'=>'', 'value'=>''));
|
168 |
+
//
|
169 |
+
// return $this;
|
170 |
+
// }
|
171 |
+
|
172 |
+
/**
|
173 |
+
* Get row url - None editable
|
174 |
+
*/
|
175 |
+
public function getRowUrl($row)
|
176 |
+
{
|
177 |
+
return '';
|
178 |
+
//return $this->getUrl('*/*/edit', array('id' => $row->getId()));
|
179 |
+
}
|
180 |
+
|
181 |
}
|
app/code/local/SevenLike/MailUp/Helper/Data.php
CHANGED
@@ -6,6 +6,24 @@
|
|
6 |
*/
|
7 |
class SevenLike_MailUp_Helper_Data extends Mage_Core_Helper_Abstract
|
8 |
{
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
9 |
/**
|
10 |
* split customers into batches
|
11 |
*/
|
@@ -349,12 +367,12 @@ class SevenLike_MailUp_Helper_Data extends Mage_Core_Helper_Abstract
|
|
349 |
"idGroup" => $groupId,
|
350 |
"xmlDoc" => "",
|
351 |
"idGroups" => $groupId,
|
352 |
-
"importType" =>
|
353 |
-
"mobileInputType" =>
|
354 |
"asPending" => $jobModel->getAsPending() ? 1 : 0,
|
355 |
"ConfirmEmail" => $jobModel->getSendOptin() ? 1 : 0,
|
356 |
"asOptOut" => 0,
|
357 |
-
"forceOptIn" => 0, //
|
358 |
"replaceGroups" => 0,
|
359 |
"idConfirmNL" => 0
|
360 |
);
|
@@ -403,12 +421,12 @@ class SevenLike_MailUp_Helper_Data extends Mage_Core_Helper_Abstract
|
|
403 |
'listsGUIDs' => $post['mailupListGUID'],
|
404 |
'groupsIDs' => $groupId,
|
405 |
"idList" => $idList,
|
406 |
-
"importType" =>
|
407 |
-
"mobileInputType" =>
|
408 |
"asPending" => $jobModel->getAsPending() ? 1 : 0,
|
409 |
"ConfirmEmail" => $jobModel->getSendOptin() ? 1 : 0,
|
410 |
"asOptOut" => 0,
|
411 |
-
"forceOptIn" => 0, //
|
412 |
"replaceGroups" => 0,
|
413 |
"idConfirmNL" => 0
|
414 |
);
|
6 |
*/
|
7 |
class SevenLike_MailUp_Helper_Data extends Mage_Core_Helper_Abstract
|
8 |
{
|
9 |
+
/**
|
10 |
+
* importType takes one of the following values, varying:
|
11 |
+
* - Whether to import email, sms or both (in the former cases, the other is discarded)
|
12 |
+
* - Whether empty fields over-write the values in MailUp (4-6) or are ignored (1-3)
|
13 |
+
*/
|
14 |
+
const IMPORT_TYPE_IGNORE_EMPTY_ONLY_EMAIL = 1;
|
15 |
+
const IMPORT_TYPE_IGNORE_EMPTY_ONLY_SMS = 2;
|
16 |
+
const IMPORT_TYPE_IGNORE_EMPTY_EMAIL_AND_SMS = 3;
|
17 |
+
const IMPORT_TYPE_REPLACE_EMPTY_ONLY_EMAIL = 4;
|
18 |
+
const IMPORT_TYPE_REPLACE_EMPTY_ONLY_SMS = 5;
|
19 |
+
const IMPORT_TYPE_REPLACE_EMPTY_EMAIL_AND_SMS = 6;
|
20 |
+
|
21 |
+
/**
|
22 |
+
* Whether the mobile input type splits the international code into a seperate field
|
23 |
+
*/
|
24 |
+
const MOBILE_INPUT_TYPE_INCLUDE_INTL_CODE = 1;
|
25 |
+
const MOBILE_INPUT_TYPE_SPLIT_INTL_CODE = 2;
|
26 |
+
|
27 |
/**
|
28 |
* split customers into batches
|
29 |
*/
|
367 |
"idGroup" => $groupId,
|
368 |
"xmlDoc" => "",
|
369 |
"idGroups" => $groupId,
|
370 |
+
"importType" => self::IMPORT_TYPE_REPLACE_EMPTY_ONLY_EMAIL,
|
371 |
+
"mobileInputType" => self::MOBILE_INPUT_TYPE_SPLIT_INTL_CODE,
|
372 |
"asPending" => $jobModel->getAsPending() ? 1 : 0,
|
373 |
"ConfirmEmail" => $jobModel->getSendOptin() ? 1 : 0,
|
374 |
"asOptOut" => 0,
|
375 |
+
"forceOptIn" => 0, // Dangerous to use as this can over-write pending/un-subscribe statuses
|
376 |
"replaceGroups" => 0,
|
377 |
"idConfirmNL" => 0
|
378 |
);
|
421 |
'listsGUIDs' => $post['mailupListGUID'],
|
422 |
'groupsIDs' => $groupId,
|
423 |
"idList" => $idList,
|
424 |
+
"importType" => self::IMPORT_TYPE_REPLACE_EMPTY_ONLY_EMAIL,
|
425 |
+
"mobileInputType" => self::MOBILE_INPUT_TYPE_SPLIT_INTL_CODE,
|
426 |
"asPending" => $jobModel->getAsPending() ? 1 : 0,
|
427 |
"ConfirmEmail" => $jobModel->getSendOptin() ? 1 : 0,
|
428 |
"asOptOut" => 0,
|
429 |
+
"forceOptIn" => 0, // Dangerous to use as this can over-write pending/un-subscribe statuses
|
430 |
"replaceGroups" => 0,
|
431 |
"idConfirmNL" => 0
|
432 |
);
|
app/code/local/SevenLike/MailUp/Model/Config.php
CHANGED
@@ -13,12 +13,25 @@ class SevenLike_MailUp_Model_Config
|
|
13 |
const XML_MAILUP_PASSWORD = 'mailup_newsletter/mailup/password_ws';
|
14 |
const XML_MAILUP_LIST_ID = 'mailup_newsletter/mailup/list';
|
15 |
const XML_SUBSCRIBE_IN_CHECKOUT = 'mailup_newsletter/mailup/enable_subscribe_in_checkout';
|
|
|
16 |
const XML_CRON_FREQ = 'mailup_newsletter/mailup/mailup_cron_frequency';
|
17 |
const XML_WEBHOOK_KEY = 'mailup_newsletter/mailup/webhook_crypt_key';
|
18 |
const XML_DISABLE_NOTIFICATION = 'mailup_newsletter/mailup/disablenewslettersuccesses';
|
|
|
19 |
|
20 |
const XML_MAPPING_SECTION = 'mailup_newsletter/mailup_mapping';
|
21 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
22 |
/**
|
23 |
* Is the log enabled?
|
24 |
*
|
@@ -31,7 +44,7 @@ class SevenLike_MailUp_Model_Config
|
|
31 |
}
|
32 |
|
33 |
/**
|
34 |
-
* Write a log entry
|
35 |
*
|
36 |
* @param string
|
37 |
* @param int
|
@@ -47,7 +60,7 @@ class SevenLike_MailUp_Model_Config
|
|
47 |
}
|
48 |
|
49 |
/**
|
50 |
-
* Write a log entry
|
51 |
*
|
52 |
* @param string
|
53 |
* @param int
|
@@ -172,6 +185,17 @@ class SevenLike_MailUp_Model_Config
|
|
172 |
{
|
173 |
return (int) Mage::getStoreConfig(self::XML_SUBSCRIBE_IN_CHECKOUT, $storeId);
|
174 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
175 |
|
176 |
/**
|
177 |
* Get the cron freq settings
|
13 |
const XML_MAILUP_PASSWORD = 'mailup_newsletter/mailup/password_ws';
|
14 |
const XML_MAILUP_LIST_ID = 'mailup_newsletter/mailup/list';
|
15 |
const XML_SUBSCRIBE_IN_CHECKOUT = 'mailup_newsletter/mailup/enable_subscribe_in_checkout';
|
16 |
+
const XML_REQ_SUBSCRIPTION_CONF = 'mailup_newsletter/mailup/require_subscription_confirmation';
|
17 |
const XML_CRON_FREQ = 'mailup_newsletter/mailup/mailup_cron_frequency';
|
18 |
const XML_WEBHOOK_KEY = 'mailup_newsletter/mailup/webhook_crypt_key';
|
19 |
const XML_DISABLE_NOTIFICATION = 'mailup_newsletter/mailup/disablenewslettersuccesses';
|
20 |
+
const XML_TEST_MODE_ENABLE = 'mailup_newsletter/mailup/enable_testmode';
|
21 |
|
22 |
const XML_MAPPING_SECTION = 'mailup_newsletter/mailup_mapping';
|
23 |
+
|
24 |
+
/**
|
25 |
+
* Is test mode enabled
|
26 |
+
*
|
27 |
+
* @param int
|
28 |
+
* @return bool
|
29 |
+
*/
|
30 |
+
public function isTestMode($storeId = NULL)
|
31 |
+
{
|
32 |
+
return (bool) Mage::getStoreConfig(self::XML_TEST_MODE_ENABLE, $storeId);
|
33 |
+
}
|
34 |
+
|
35 |
/**
|
36 |
* Is the log enabled?
|
37 |
*
|
44 |
}
|
45 |
|
46 |
/**
|
47 |
+
* Write a log entry if enabled.
|
48 |
*
|
49 |
* @param string
|
50 |
* @param int
|
60 |
}
|
61 |
|
62 |
/**
|
63 |
+
* Write a log entry if enabled.
|
64 |
*
|
65 |
* @param string
|
66 |
* @param int
|
185 |
{
|
186 |
return (int) Mage::getStoreConfig(self::XML_SUBSCRIBE_IN_CHECKOUT, $storeId);
|
187 |
}
|
188 |
+
|
189 |
+
/**
|
190 |
+
* Is Require Subscription Confirmation set in config?
|
191 |
+
*
|
192 |
+
* @param int
|
193 |
+
* @return int
|
194 |
+
*/
|
195 |
+
public function isRequireSubscriptionConfirmation($storeId = NULL)
|
196 |
+
{
|
197 |
+
return (int) Mage::getStoreConfig(self::XML_REQ_SUBSCRIPTION_CONF, $storeId);
|
198 |
+
}
|
199 |
|
200 |
/**
|
201 |
* Get the cron freq settings
|
app/code/local/SevenLike/MailUp/Model/Job.php
CHANGED
@@ -13,7 +13,7 @@
|
|
13 |
* @method void setStatus(string $status)
|
14 |
* @method void setTries(int $num) How many times we've tried.
|
15 |
* @method void setType(string $type) What type of job?
|
16 |
-
* @method void setAsPending(int $
|
17 |
* @method void setQueueDatetime(string $dateTime) Set the Datetime the job was queued.
|
18 |
* @method void setStartDatetime(string $dateTime) Set when the job was started
|
19 |
* @method void setFinishDatetime(string $dateTime) Set when the job was finished / completed
|
13 |
* @method void setStatus(string $status)
|
14 |
* @method void setTries(int $num) How many times we've tried.
|
15 |
* @method void setType(string $type) What type of job?
|
16 |
+
* @method void setAsPending(int $yesOrNo) Set the customers in this job to pending state or not
|
17 |
* @method void setQueueDatetime(string $dateTime) Set the Datetime the job was queued.
|
18 |
* @method void setStartDatetime(string $dateTime) Set when the job was started
|
19 |
* @method void setFinishDatetime(string $dateTime) Set when the job was finished / completed
|
app/code/local/SevenLike/MailUp/Model/Lists.php
CHANGED
@@ -103,21 +103,27 @@ class SevenLike_MailUp_Model_Lists
|
|
103 |
|
104 |
return $selectLists;
|
105 |
}
|
106 |
-
|
107 |
/**
|
108 |
-
*
|
109 |
-
*
|
110 |
-
* @
|
|
|
|
|
111 |
*/
|
112 |
-
|
113 |
public function getListDataArray($listId, $storeId)
|
114 |
{
|
115 |
$listData = $this->getDataArray($storeId);
|
116 |
-
if(isset($listData[$listId])) {
|
117 |
return $listData[$listId];
|
118 |
}
|
119 |
-
|
120 |
-
|
|
|
|
|
|
|
|
|
|
|
121 |
}
|
122 |
|
123 |
/**
|
@@ -125,7 +131,6 @@ class SevenLike_MailUp_Model_Lists
|
|
125 |
*
|
126 |
* @return array
|
127 |
*/
|
128 |
-
|
129 |
public function getDataArray($storeId)
|
130 |
{
|
131 |
$selectLists = array();
|
@@ -174,14 +179,14 @@ class SevenLike_MailUp_Model_Lists
|
|
174 |
*
|
175 |
* @param int
|
176 |
* @param int
|
177 |
-
* @return string
|
178 |
*/
|
179 |
public function getListGuid($listId, $storeId)
|
180 |
{
|
181 |
$listData = $this->getListDataArray($listId, $storeId);
|
182 |
-
|
183 |
-
if( !
|
184 |
-
|
185 |
}
|
186 |
|
187 |
return $listData['listGUID'];
|
@@ -190,11 +195,15 @@ class SevenLike_MailUp_Model_Lists
|
|
190 |
/**
|
191 |
* Get the groups for a given list.
|
192 |
*
|
193 |
-
* @param int
|
194 |
*/
|
195 |
public function getListGroups($listId, $storeId)
|
196 |
{
|
197 |
$listData = $this->getListDataArray($listId, $storeId);
|
|
|
|
|
|
|
|
|
198 |
|
199 |
return $listData['groups'];
|
200 |
}
|
103 |
|
104 |
return $selectLists;
|
105 |
}
|
106 |
+
|
107 |
/**
|
108 |
+
*
|
109 |
+
* Get an array of list data, and its groups.
|
110 |
+
* @param $listId
|
111 |
+
* @param $storeId
|
112 |
+
* @return bool|array
|
113 |
*/
|
|
|
114 |
public function getListDataArray($listId, $storeId)
|
115 |
{
|
116 |
$listData = $this->getDataArray($storeId);
|
117 |
+
if (isset($listData[$listId])) {
|
118 |
return $listData[$listId];
|
119 |
}
|
120 |
+
|
121 |
+
// If list not found, return false
|
122 |
+
if (Mage::getStoreConfig('mailup_newsletter/mailup/enable_log', $storeId)) {
|
123 |
+
Mage::log('Invalid List ID: ' . $listId);
|
124 |
+
}
|
125 |
+
|
126 |
+
return false;
|
127 |
}
|
128 |
|
129 |
/**
|
131 |
*
|
132 |
* @return array
|
133 |
*/
|
|
|
134 |
public function getDataArray($storeId)
|
135 |
{
|
136 |
$selectLists = array();
|
179 |
*
|
180 |
* @param int
|
181 |
* @param int
|
182 |
+
* @return string|false
|
183 |
*/
|
184 |
public function getListGuid($listId, $storeId)
|
185 |
{
|
186 |
$listData = $this->getListDataArray($listId, $storeId);
|
187 |
+
|
188 |
+
if ($listData === false || !isset($listData['listGUID'])) {
|
189 |
+
return false;
|
190 |
}
|
191 |
|
192 |
return $listData['listGUID'];
|
195 |
/**
|
196 |
* Get the groups for a given list.
|
197 |
*
|
198 |
+
* @param int|false
|
199 |
*/
|
200 |
public function getListGroups($listId, $storeId)
|
201 |
{
|
202 |
$listData = $this->getListDataArray($listId, $storeId);
|
203 |
+
|
204 |
+
if ($listData === false || !isset($listData['groups'])) {
|
205 |
+
return false;
|
206 |
+
}
|
207 |
|
208 |
return $listData['groups'];
|
209 |
}
|
app/code/local/SevenLike/MailUp/Model/MailUpWsImport.php
CHANGED
@@ -555,7 +555,8 @@ class MailUpWsImport
|
|
555 |
$tempSubscribed[] = $customer;
|
556 |
}
|
557 |
}
|
558 |
-
|
|
|
559 |
}
|
560 |
/**
|
561 |
* FILTRO 1 ACQUISTATO: in base al fatto se ha effettuato o meno acquisti:
|
@@ -584,10 +585,10 @@ class MailUpWsImport
|
|
584 |
}
|
585 |
|
586 |
if ($request->getRequest()->getParam('mailupCustomers') == 1) {
|
587 |
-
$customersFiltered =
|
588 |
}
|
589 |
elseif ($request->getRequest()->getParam('mailupCustomers') == 2) {
|
590 |
-
$customersFiltered =
|
591 |
}
|
592 |
}
|
593 |
/**
|
@@ -642,7 +643,7 @@ class MailUpWsImport
|
|
642 |
$count++;
|
643 |
}
|
644 |
|
645 |
-
$customersFiltered =
|
646 |
}
|
647 |
/**
|
648 |
* FILTER BOUGHT IN CATEGORY 3: Depending on whether bought at least one product in a given category
|
@@ -674,7 +675,7 @@ class MailUpWsImport
|
|
674 |
foreach ($items as $product) {
|
675 |
$_prod = Mage::getModel('catalog/product')->load($product->getProductId()); // ned to load full product for cats.
|
676 |
$productCategories = Mage::getResourceSingleton('catalog/product')->getCategoryIds($_prod);
|
677 |
-
$matchingCategories =
|
678 |
if(is_array($matchingCategories) && ! empty($matchingCategories)) {
|
679 |
$tempCategory[] = $result[$count];
|
680 |
break 2;
|
@@ -684,7 +685,7 @@ class MailUpWsImport
|
|
684 |
unset($orders);
|
685 |
$count++;
|
686 |
}
|
687 |
-
$customersFiltered =
|
688 |
}
|
689 |
|
690 |
/**
|
@@ -701,7 +702,7 @@ class MailUpWsImport
|
|
701 |
}
|
702 |
}
|
703 |
|
704 |
-
$customersFiltered =
|
705 |
}
|
706 |
//FINE FILTRO 4 GRUPPO DI CLIENTI: testato ok
|
707 |
|
@@ -726,7 +727,7 @@ class MailUpWsImport
|
|
726 |
unset($customerItem); //->unsetData();
|
727 |
}
|
728 |
|
729 |
-
$customersFiltered =
|
730 |
}
|
731 |
//FINE FILTRO 5 PAESE DI PROVENIENZA: testato ok
|
732 |
|
@@ -751,7 +752,7 @@ class MailUpWsImport
|
|
751 |
unset($customerItem); //->unsetData();
|
752 |
}
|
753 |
|
754 |
-
$customersFiltered =
|
755 |
}
|
756 |
//FINE FILTRO 6 CAP DI PROVENIENZA: testato ok
|
757 |
|
@@ -816,7 +817,7 @@ class MailUpWsImport
|
|
816 |
}
|
817 |
}
|
818 |
|
819 |
-
$customersFiltered =
|
820 |
}
|
821 |
//FINE FILTRO 7 DATA CREAZIONE CLIENTE: testato ok
|
822 |
|
@@ -866,7 +867,7 @@ class MailUpWsImport
|
|
866 |
unset($orders); //->unsetData();
|
867 |
}
|
868 |
|
869 |
-
$customersFiltered =
|
870 |
}
|
871 |
//FINE FILTRO 8 TOTALE ACQUISTATO: testato ok
|
872 |
|
@@ -962,10 +963,10 @@ class MailUpWsImport
|
|
962 |
}
|
963 |
|
964 |
if ($request->getRequest()->getParam('mailupOrderYesNo') == 'yes') {
|
965 |
-
$customersFiltered =
|
966 |
}
|
967 |
else {
|
968 |
-
$customersFiltered =
|
969 |
}
|
970 |
}
|
971 |
//FINE FILTRO 9 DATA ACQUISTATO: testato ok
|
@@ -1000,7 +1001,7 @@ class MailUpWsImport
|
|
1000 |
}
|
1001 |
}
|
1002 |
|
1003 |
-
//$customersFiltered =
|
1004 |
$customersFiltered = $tempMod;
|
1005 |
}
|
1006 |
//FINE GESTISCO LE MODIFICHE MANUALI
|
@@ -1035,7 +1036,7 @@ class MailUpWsImport
|
|
1035 |
}
|
1036 |
|
1037 |
/**
|
1038 |
-
* Save Filter
|
1039 |
*
|
1040 |
* @param type $filter_name
|
1041 |
* @param type $post
|
@@ -1137,4 +1138,28 @@ class MailUpWsImport
|
|
1137 |
{
|
1138 |
print_r($this->soapClient->__getFunctions());
|
1139 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1140 |
}
|
555 |
$tempSubscribed[] = $customer;
|
556 |
}
|
557 |
}
|
558 |
+
|
559 |
+
$customersFiltered = self::intersectByEntityId($tempSubscribed, $customersFiltered);
|
560 |
}
|
561 |
/**
|
562 |
* FILTRO 1 ACQUISTATO: in base al fatto se ha effettuato o meno acquisti:
|
585 |
}
|
586 |
|
587 |
if ($request->getRequest()->getParam('mailupCustomers') == 1) {
|
588 |
+
$customersFiltered = self::intersectByEntityId($tempPurchased, $customersFiltered);
|
589 |
}
|
590 |
elseif ($request->getRequest()->getParam('mailupCustomers') == 2) {
|
591 |
+
$customersFiltered = self::intersectByEntityId($tempNoPurchased, $customersFiltered);
|
592 |
}
|
593 |
}
|
594 |
/**
|
643 |
$count++;
|
644 |
}
|
645 |
|
646 |
+
$customersFiltered = self::intersectByEntityId($tempProduct, $customersFiltered);
|
647 |
}
|
648 |
/**
|
649 |
* FILTER BOUGHT IN CATEGORY 3: Depending on whether bought at least one product in a given category
|
675 |
foreach ($items as $product) {
|
676 |
$_prod = Mage::getModel('catalog/product')->load($product->getProductId()); // ned to load full product for cats.
|
677 |
$productCategories = Mage::getResourceSingleton('catalog/product')->getCategoryIds($_prod);
|
678 |
+
$matchingCategories = self::intersectByEntityId($productCategories, $searchCategories);
|
679 |
if(is_array($matchingCategories) && ! empty($matchingCategories)) {
|
680 |
$tempCategory[] = $result[$count];
|
681 |
break 2;
|
685 |
unset($orders);
|
686 |
$count++;
|
687 |
}
|
688 |
+
$customersFiltered = self::intersectByEntityId($tempCategory, $customersFiltered);
|
689 |
}
|
690 |
|
691 |
/**
|
702 |
}
|
703 |
}
|
704 |
|
705 |
+
$customersFiltered = self::intersectByEntityId($tempGroup, $customersFiltered);
|
706 |
}
|
707 |
//FINE FILTRO 4 GRUPPO DI CLIENTI: testato ok
|
708 |
|
727 |
unset($customerItem); //->unsetData();
|
728 |
}
|
729 |
|
730 |
+
$customersFiltered = self::intersectByEntityId($tempCountry, $customersFiltered);
|
731 |
}
|
732 |
//FINE FILTRO 5 PAESE DI PROVENIENZA: testato ok
|
733 |
|
752 |
unset($customerItem); //->unsetData();
|
753 |
}
|
754 |
|
755 |
+
$customersFiltered = self::intersectByEntityId($tempPostCode, $customersFiltered);
|
756 |
}
|
757 |
//FINE FILTRO 6 CAP DI PROVENIENZA: testato ok
|
758 |
|
817 |
}
|
818 |
}
|
819 |
|
820 |
+
$customersFiltered = self::intersectByEntityId($tempDate, $customersFiltered);
|
821 |
}
|
822 |
//FINE FILTRO 7 DATA CREAZIONE CLIENTE: testato ok
|
823 |
|
867 |
unset($orders); //->unsetData();
|
868 |
}
|
869 |
|
870 |
+
$customersFiltered = self::intersectByEntityId($tempTotal, $customersFiltered);
|
871 |
}
|
872 |
//FINE FILTRO 8 TOTALE ACQUISTATO: testato ok
|
873 |
|
963 |
}
|
964 |
|
965 |
if ($request->getRequest()->getParam('mailupOrderYesNo') == 'yes') {
|
966 |
+
$customersFiltered = self::intersectByEntityId($tempOrderedDateYes, $customersFiltered);
|
967 |
}
|
968 |
else {
|
969 |
+
$customersFiltered = self::intersectByEntityId($tempOrderedDateNo, $customersFiltered);
|
970 |
}
|
971 |
}
|
972 |
//FINE FILTRO 9 DATA ACQUISTATO: testato ok
|
1001 |
}
|
1002 |
}
|
1003 |
|
1004 |
+
//$customersFiltered = self::intersectByEntityId($tempMod, $customersFiltered);
|
1005 |
$customersFiltered = $tempMod;
|
1006 |
}
|
1007 |
//FINE GESTISCO LE MODIFICHE MANUALI
|
1036 |
}
|
1037 |
|
1038 |
/**
|
1039 |
+
* Save Filter Hint
|
1040 |
*
|
1041 |
* @param type $filter_name
|
1042 |
* @param type $post
|
1138 |
{
|
1139 |
print_r($this->soapClient->__getFunctions());
|
1140 |
}
|
1141 |
+
|
1142 |
+
/**
|
1143 |
+
* Recursive intersection of $array1 and $array2 by entity IDs
|
1144 |
+
* NOTE that php's self::intersectByEntityId is not recursive, so cannot be used on arrays of arrays
|
1145 |
+
*
|
1146 |
+
* @param array $array1
|
1147 |
+
* @param array $array2
|
1148 |
+
* @return array
|
1149 |
+
*/
|
1150 |
+
public static function intersectByEntityId($array1, $array2)
|
1151 |
+
{
|
1152 |
+
$tempIds = array();
|
1153 |
+
foreach ($array1 as $entity1) {
|
1154 |
+
$tempIds[$entity1['entity_id']] = true;
|
1155 |
+
}
|
1156 |
+
$tempArray = array();
|
1157 |
+
foreach ($array2 as $entity2) {
|
1158 |
+
if (isset($tempIds[$entity2['entity_id']])) {
|
1159 |
+
$tempArray[] = $entity2;
|
1160 |
+
}
|
1161 |
+
}
|
1162 |
+
|
1163 |
+
return $tempArray;
|
1164 |
+
}
|
1165 |
}
|
app/code/local/SevenLike/MailUp/Model/Mysql14/Job.php
DELETED
@@ -1,30 +0,0 @@
|
|
1 |
-
<?php
|
2 |
-
/**
|
3 |
-
* Job.php
|
4 |
-
*/
|
5 |
-
class SevenLike_MailUp_Model_Mysql4_Job extends Mage_Core_Model_Mysql4_Abstract
|
6 |
-
{
|
7 |
-
protected function _construct()
|
8 |
-
{
|
9 |
-
$this->_init("mailup/job", "id");
|
10 |
-
}
|
11 |
-
|
12 |
-
// /**
|
13 |
-
// * Get product identifier by sku
|
14 |
-
// *
|
15 |
-
// * @param string $sku
|
16 |
-
// * @return int|false
|
17 |
-
// */
|
18 |
-
// public function getIdBySku($sku)
|
19 |
-
// {
|
20 |
-
// $adapter = $this->_getReadAdapter();
|
21 |
-
//
|
22 |
-
// $select = $adapter->select()
|
23 |
-
// ->from('phpsolut_import')
|
24 |
-
// ->where('sku = :sku');
|
25 |
-
//
|
26 |
-
// $bind = array(':sku' => (string)$sku);
|
27 |
-
//
|
28 |
-
// return $adapter->fetchOne($select, $bind);
|
29 |
-
// }
|
30 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
app/code/local/SevenLike/MailUp/Model/Mysql14/Job/Collection.php
DELETED
@@ -1,11 +0,0 @@
|
|
1 |
-
<?php
|
2 |
-
/**
|
3 |
-
* Collection.php
|
4 |
-
*/
|
5 |
-
class SevenLike_MailUp_Model_Mysql4_Job_Collection extends Mage_Core_Model_Mysql4_Collection_Abstract
|
6 |
-
{
|
7 |
-
public function _construct()
|
8 |
-
{
|
9 |
-
$this->_init("mailup/job");
|
10 |
-
}
|
11 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
app/code/local/SevenLike/MailUp/Model/Mysql4/Job.php
CHANGED
@@ -1,30 +1,30 @@
|
|
1 |
-
<?php
|
2 |
-
/**
|
3 |
-
* Job.php
|
4 |
-
*/
|
5 |
-
class SevenLike_MailUp_Model_Mysql4_Job extends Mage_Core_Model_Mysql4_Abstract
|
6 |
-
{
|
7 |
-
protected function _construct()
|
8 |
-
{
|
9 |
-
$this->_init("mailup/job", "id");
|
10 |
-
}
|
11 |
-
|
12 |
-
// /**
|
13 |
-
// * Get product identifier by sku
|
14 |
-
// *
|
15 |
-
// * @param string $sku
|
16 |
-
// * @return int|false
|
17 |
-
// */
|
18 |
-
// public function getIdBySku($sku)
|
19 |
-
// {
|
20 |
-
// $adapter = $this->_getReadAdapter();
|
21 |
-
//
|
22 |
-
// $select = $adapter->select()
|
23 |
-
// ->from('phpsolut_import')
|
24 |
-
// ->where('sku = :sku');
|
25 |
-
//
|
26 |
-
// $bind = array(':sku' => (string)$sku);
|
27 |
-
//
|
28 |
-
// return $adapter->fetchOne($select, $bind);
|
29 |
-
// }
|
30 |
}
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Job.php
|
4 |
+
*/
|
5 |
+
class SevenLike_MailUp_Model_Mysql4_Job extends Mage_Core_Model_Mysql4_Abstract
|
6 |
+
{
|
7 |
+
protected function _construct()
|
8 |
+
{
|
9 |
+
$this->_init("mailup/job", "id");
|
10 |
+
}
|
11 |
+
|
12 |
+
// /**
|
13 |
+
// * Get product identifier by sku
|
14 |
+
// *
|
15 |
+
// * @param string $sku
|
16 |
+
// * @return int|false
|
17 |
+
// */
|
18 |
+
// public function getIdBySku($sku)
|
19 |
+
// {
|
20 |
+
// $adapter = $this->_getReadAdapter();
|
21 |
+
//
|
22 |
+
// $select = $adapter->select()
|
23 |
+
// ->from('phpsolut_import')
|
24 |
+
// ->where('sku = :sku');
|
25 |
+
//
|
26 |
+
// $bind = array(':sku' => (string)$sku);
|
27 |
+
//
|
28 |
+
// return $adapter->fetchOne($select, $bind);
|
29 |
+
// }
|
30 |
}
|
app/code/local/SevenLike/MailUp/Model/Mysql4/Job/Collection.php
CHANGED
@@ -1,11 +1,11 @@
|
|
1 |
-
<?php
|
2 |
-
/**
|
3 |
-
* Collection.php
|
4 |
-
*/
|
5 |
-
class SevenLike_MailUp_Model_Mysql4_Job_Collection extends Mage_Core_Model_Mysql4_Collection_Abstract
|
6 |
-
{
|
7 |
-
public function _construct()
|
8 |
-
{
|
9 |
-
$this->_init("mailup/job");
|
10 |
-
}
|
11 |
}
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Collection.php
|
4 |
+
*/
|
5 |
+
class SevenLike_MailUp_Model_Mysql4_Job_Collection extends Mage_Core_Model_Mysql4_Collection_Abstract
|
6 |
+
{
|
7 |
+
public function _construct()
|
8 |
+
{
|
9 |
+
$this->_init("mailup/job");
|
10 |
+
}
|
11 |
}
|
app/code/local/SevenLike/MailUp/Model/Mysql4/Log.php
CHANGED
@@ -1,25 +1,25 @@
|
|
1 |
-
<?php
|
2 |
-
/**
|
3 |
-
* Log.php
|
4 |
-
*
|
5 |
-
* @method string getType()
|
6 |
-
* @method void setType(string $type)
|
7 |
-
* @method string getStatus()
|
8 |
-
* @method void setStatus(string $type)
|
9 |
-
* @method int getStoreId()
|
10 |
-
* @method void setStoreId(int $storeId)
|
11 |
-
* @method int getJobId()
|
12 |
-
* @method void setJobId(int $jobId)
|
13 |
-
*/
|
14 |
-
class SevenLike_MailUp_Model_Mysql4_Log extends Mage_Core_Model_Mysql4_Abstract
|
15 |
-
{
|
16 |
-
const TYPE_ERROR = 'ERROR';
|
17 |
-
const TYPE_DEBUG = 'DEBUG';
|
18 |
-
const TYPE_CRON = 'CRON';
|
19 |
-
const TYPE_WARN = 'WARNING';
|
20 |
-
|
21 |
-
protected function _construct()
|
22 |
-
{
|
23 |
-
$this->_init("mailup/log", "id");
|
24 |
-
}
|
25 |
}
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Log.php
|
4 |
+
*
|
5 |
+
* @method string getType()
|
6 |
+
* @method void setType(string $type)
|
7 |
+
* @method string getStatus()
|
8 |
+
* @method void setStatus(string $type)
|
9 |
+
* @method int getStoreId()
|
10 |
+
* @method void setStoreId(int $storeId)
|
11 |
+
* @method int getJobId()
|
12 |
+
* @method void setJobId(int $jobId)
|
13 |
+
*/
|
14 |
+
class SevenLike_MailUp_Model_Mysql4_Log extends Mage_Core_Model_Mysql4_Abstract
|
15 |
+
{
|
16 |
+
const TYPE_ERROR = 'ERROR';
|
17 |
+
const TYPE_DEBUG = 'DEBUG';
|
18 |
+
const TYPE_CRON = 'CRON';
|
19 |
+
const TYPE_WARN = 'WARNING';
|
20 |
+
|
21 |
+
protected function _construct()
|
22 |
+
{
|
23 |
+
$this->_init("mailup/log", "id");
|
24 |
+
}
|
25 |
}
|
app/code/local/SevenLike/MailUp/Model/Mysql4/Log/Collection.php
CHANGED
@@ -1,11 +1,11 @@
|
|
1 |
-
<?php
|
2 |
-
/**
|
3 |
-
* Collection.php
|
4 |
-
*/
|
5 |
-
class SevenLike_MailUp_Model_Mysql4_Log_Collection extends Mage_Core_Model_Mysql4_Collection_Abstract
|
6 |
-
{
|
7 |
-
public function _construct()
|
8 |
-
{
|
9 |
-
$this->_init("mailup/log");
|
10 |
-
}
|
11 |
}
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Collection.php
|
4 |
+
*/
|
5 |
+
class SevenLike_MailUp_Model_Mysql4_Log_Collection extends Mage_Core_Model_Mysql4_Collection_Abstract
|
6 |
+
{
|
7 |
+
public function _construct()
|
8 |
+
{
|
9 |
+
$this->_init("mailup/log");
|
10 |
+
}
|
11 |
}
|
app/code/local/SevenLike/MailUp/Model/Mysql4/Sync.php
CHANGED
@@ -1,70 +1,70 @@
|
|
1 |
-
<?php
|
2 |
-
/**
|
3 |
-
* Job.php
|
4 |
-
*/
|
5 |
-
class SevenLike_MailUp_Model_Mysql4_Sync extends Mage_Core_Model_Mysql4_Abstract
|
6 |
-
{
|
7 |
-
protected function _construct()
|
8 |
-
{
|
9 |
-
$this->_init("mailup/sync", "id");
|
10 |
-
}
|
11 |
-
|
12 |
-
/**
|
13 |
-
* Get the ID from the unique values
|
14 |
-
*
|
15 |
-
* @param int
|
16 |
-
* @param int
|
17 |
-
* @param int
|
18 |
-
*/
|
19 |
-
public function getIdByUniqueKey($customerId, $jobId, $storeId)
|
20 |
-
{
|
21 |
-
$adapter = $this->_getReadAdapter();
|
22 |
-
$select = $adapter->select()
|
23 |
-
->from($this->getMainTable())
|
24 |
-
->where('customer_id = :customer_id AND job_id = :job_id AND store_id = :store_id')
|
25 |
-
;
|
26 |
-
|
27 |
-
$bind = array(
|
28 |
-
':customer_id' => $customerId,
|
29 |
-
':job_id' => $jobId,
|
30 |
-
':store_id' => $storeId
|
31 |
-
);
|
32 |
-
|
33 |
-
return $adapter->fetchOne($select, $bind);
|
34 |
-
}
|
35 |
-
|
36 |
-
|
37 |
-
/**
|
38 |
-
* Load by unique Key
|
39 |
-
*/
|
40 |
-
public function loadByUniqueKey()
|
41 |
-
{
|
42 |
-
//(`customer_id`,`entity`,`job_id`, `store_id`)
|
43 |
-
|
44 |
-
|
45 |
-
}
|
46 |
-
|
47 |
-
// /**
|
48 |
-
// * Get product identifier by sku
|
49 |
-
// *
|
50 |
-
// * @param string $sku
|
51 |
-
// * @return int|false
|
52 |
-
// */
|
53 |
-
// public function getIdBySku($sku)
|
54 |
-
// {
|
55 |
-
// $adapter = $this->_getReadAdapter();
|
56 |
-
//
|
57 |
-
// $select = $adapter->select()
|
58 |
-
// ->from('phpsolut_import')
|
59 |
-
// ->where('sku = :sku');
|
60 |
-
//
|
61 |
-
// $bind = array(':sku' => (string)$sku);
|
62 |
-
//
|
63 |
-
// return $adapter->fetchOne($select, $bind);
|
64 |
-
// }
|
65 |
-
|
66 |
-
//return $this->_getReadAdapter()->fetchOne(
|
67 |
-
// 'select connect_id from '.$this->getMainTable().' where sku=?',
|
68 |
-
// $sku
|
69 |
-
// );
|
70 |
}
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Job.php
|
4 |
+
*/
|
5 |
+
class SevenLike_MailUp_Model_Mysql4_Sync extends Mage_Core_Model_Mysql4_Abstract
|
6 |
+
{
|
7 |
+
protected function _construct()
|
8 |
+
{
|
9 |
+
$this->_init("mailup/sync", "id");
|
10 |
+
}
|
11 |
+
|
12 |
+
/**
|
13 |
+
* Get the ID from the unique values
|
14 |
+
*
|
15 |
+
* @param int
|
16 |
+
* @param int
|
17 |
+
* @param int
|
18 |
+
*/
|
19 |
+
public function getIdByUniqueKey($customerId, $jobId, $storeId)
|
20 |
+
{
|
21 |
+
$adapter = $this->_getReadAdapter();
|
22 |
+
$select = $adapter->select()
|
23 |
+
->from($this->getMainTable())
|
24 |
+
->where('customer_id = :customer_id AND job_id = :job_id AND store_id = :store_id')
|
25 |
+
;
|
26 |
+
|
27 |
+
$bind = array(
|
28 |
+
':customer_id' => $customerId,
|
29 |
+
':job_id' => $jobId,
|
30 |
+
':store_id' => $storeId
|
31 |
+
);
|
32 |
+
|
33 |
+
return $adapter->fetchOne($select, $bind);
|
34 |
+
}
|
35 |
+
|
36 |
+
|
37 |
+
/**
|
38 |
+
* Load by unique Key
|
39 |
+
*/
|
40 |
+
public function loadByUniqueKey()
|
41 |
+
{
|
42 |
+
//(`customer_id`,`entity`,`job_id`, `store_id`)
|
43 |
+
|
44 |
+
|
45 |
+
}
|
46 |
+
|
47 |
+
// /**
|
48 |
+
// * Get product identifier by sku
|
49 |
+
// *
|
50 |
+
// * @param string $sku
|
51 |
+
// * @return int|false
|
52 |
+
// */
|
53 |
+
// public function getIdBySku($sku)
|
54 |
+
// {
|
55 |
+
// $adapter = $this->_getReadAdapter();
|
56 |
+
//
|
57 |
+
// $select = $adapter->select()
|
58 |
+
// ->from('phpsolut_import')
|
59 |
+
// ->where('sku = :sku');
|
60 |
+
//
|
61 |
+
// $bind = array(':sku' => (string)$sku);
|
62 |
+
//
|
63 |
+
// return $adapter->fetchOne($select, $bind);
|
64 |
+
// }
|
65 |
+
|
66 |
+
//return $this->_getReadAdapter()->fetchOne(
|
67 |
+
// 'select connect_id from '.$this->getMainTable().' where sku=?',
|
68 |
+
// $sku
|
69 |
+
// );
|
70 |
}
|
app/code/local/SevenLike/MailUp/Model/Mysql4/Sync/Collection.php
CHANGED
@@ -1,11 +1,11 @@
|
|
1 |
-
<?php
|
2 |
-
/**
|
3 |
-
* Collection.php
|
4 |
-
*/
|
5 |
-
class SevenLike_MailUp_Model_Mysql4_Sync_Collection extends Mage_Core_Model_Mysql4_Collection_Abstract
|
6 |
-
{
|
7 |
-
public function _construct()
|
8 |
-
{
|
9 |
-
$this->_init("mailup/sync");
|
10 |
-
}
|
11 |
}
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Collection.php
|
4 |
+
*/
|
5 |
+
class SevenLike_MailUp_Model_Mysql4_Sync_Collection extends Mage_Core_Model_Mysql4_Collection_Abstract
|
6 |
+
{
|
7 |
+
public function _construct()
|
8 |
+
{
|
9 |
+
$this->_init("mailup/sync");
|
10 |
+
}
|
11 |
}
|
app/code/local/SevenLike/MailUp/Model/Observer.php
CHANGED
@@ -169,9 +169,10 @@ class SevenLike_MailUp_Model_Observer
|
|
169 |
}
|
170 |
}
|
171 |
}
|
172 |
-
|
173 |
$console = Mage::getStoreConfig('mailup_newsletter/mailup/url_console');
|
174 |
$listId = Mage::getStoreConfig('mailup_newsletter/mailup/list');
|
|
|
175 |
|
176 |
try {
|
177 |
$wsImport = new MailUpWsImport();
|
@@ -202,6 +203,7 @@ class SevenLike_MailUp_Model_Observer
|
|
202 |
$ws .= "?ListGuid=" . rawurlencode($listGUID);
|
203 |
$ws .= "&List=" . rawurlencode($listId);
|
204 |
$ws .= "&Email=" . rawurlencode($model->getEmail());
|
|
|
205 |
|
206 |
try {
|
207 |
if(Mage::getStoreConfig('mailup_newsletter/mailup/enable_log')) {
|
@@ -255,13 +257,13 @@ class SevenLike_MailUp_Model_Observer
|
|
255 |
}
|
256 |
|
257 |
/**
|
258 |
-
*
|
259 |
*
|
260 |
* @return void
|
261 |
*/
|
262 |
public function subscribeDuringCheckout()
|
263 |
{
|
264 |
-
if (
|
265 |
$order_id = Mage::getSingleton("checkout/session")->getLastRealOrderId();
|
266 |
$order = Mage::getModel("sales/order")->loadByIncrementId($order_id);
|
267 |
try {
|
@@ -351,16 +353,16 @@ class SevenLike_MailUp_Model_Observer
|
|
351 |
*/
|
352 |
private static function setCustomerForDataSync($customerId, $storeId = NULL)
|
353 |
{
|
354 |
-
if(Mage::getStoreConfig('mailup_newsletter/mailup/enable_log')) {
|
355 |
Mage::log("TRIGGERED setCustomerForDataSync [StoreID:{$storeId}]");
|
356 |
}
|
357 |
|
358 |
-
if( ! isset($storeId)) {
|
359 |
$storeId = Mage::app()->getStore()->getId();
|
360 |
}
|
361 |
|
362 |
-
if( ! $customerId) {
|
363 |
-
return
|
364 |
}
|
365 |
|
366 |
$helper = Mage::helper('mailup');
|
@@ -371,22 +373,30 @@ class SevenLike_MailUp_Model_Observer
|
|
371 |
/* @var $lists SevenLike_MailUp_Model_Lists */
|
372 |
$listID = $config->getMailupListId($storeId);
|
373 |
$listGuid = $lists->getListGuid($listID, $storeId);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
374 |
$job = Mage::getModel('mailup/job');
|
375 |
/* @var $job SevenLike_MailUp_Model_Job */
|
376 |
|
377 |
/**
|
378 |
* Only Sync if they are a subscriber!
|
379 |
*/
|
380 |
-
if( ! $helper->isSubscriber($customerId, $storeId)) {
|
381 |
return;
|
382 |
}
|
383 |
-
|
|
|
384 |
$job->setData(array(
|
385 |
-
|
386 |
-
|
387 |
'as_pending' => 0,
|
388 |
-
|
389 |
-
|
390 |
'store_id' => $storeId,
|
391 |
'list_id' => $listID,
|
392 |
'list_guid' => $listGuid,
|
@@ -407,11 +417,11 @@ class SevenLike_MailUp_Model_Observer
|
|
407 |
/** @var $jobTask SevenLike_MailUp_Model_Sync */
|
408 |
$jobTask->setData(array(
|
409 |
'store_id' => $storeId,
|
410 |
-
|
411 |
-
|
412 |
-
|
413 |
-
|
414 |
-
|
415 |
));
|
416 |
$jobTask->save();
|
417 |
$config->dbLog("Sync [Insert] [customer] [{$customerId}]", $job->getId(), $storeId);
|
@@ -430,7 +440,7 @@ class SevenLike_MailUp_Model_Observer
|
|
430 |
* OR we use a separate Auto Sync job!!
|
431 |
*/
|
432 |
|
433 |
-
return
|
434 |
}
|
435 |
|
436 |
/**
|
169 |
}
|
170 |
}
|
171 |
}
|
172 |
+
|
173 |
$console = Mage::getStoreConfig('mailup_newsletter/mailup/url_console');
|
174 |
$listId = Mage::getStoreConfig('mailup_newsletter/mailup/list');
|
175 |
+
$confirm = Mage::getStoreConfig('mailup_newsletter/mailup/require_subscription_confirmation');
|
176 |
|
177 |
try {
|
178 |
$wsImport = new MailUpWsImport();
|
203 |
$ws .= "?ListGuid=" . rawurlencode($listGUID);
|
204 |
$ws .= "&List=" . rawurlencode($listId);
|
205 |
$ws .= "&Email=" . rawurlencode($model->getEmail());
|
206 |
+
$ws .= "&Confirm=" . rawurlencode($confirm);
|
207 |
|
208 |
try {
|
209 |
if(Mage::getStoreConfig('mailup_newsletter/mailup/enable_log')) {
|
257 |
}
|
258 |
|
259 |
/**
|
260 |
+
* Subscribe the user, during checkout.
|
261 |
*
|
262 |
* @return void
|
263 |
*/
|
264 |
public function subscribeDuringCheckout()
|
265 |
{
|
266 |
+
if (isset($_REQUEST["mailup_subscribe2"]) && $_REQUEST["mailup_subscribe2"]) {
|
267 |
$order_id = Mage::getSingleton("checkout/session")->getLastRealOrderId();
|
268 |
$order = Mage::getModel("sales/order")->loadByIncrementId($order_id);
|
269 |
try {
|
353 |
*/
|
354 |
private static function setCustomerForDataSync($customerId, $storeId = NULL)
|
355 |
{
|
356 |
+
if (Mage::getStoreConfig('mailup_newsletter/mailup/enable_log')) {
|
357 |
Mage::log("TRIGGERED setCustomerForDataSync [StoreID:{$storeId}]");
|
358 |
}
|
359 |
|
360 |
+
if ( ! isset($storeId)) {
|
361 |
$storeId = Mage::app()->getStore()->getId();
|
362 |
}
|
363 |
|
364 |
+
if ( ! $customerId) {
|
365 |
+
return false;
|
366 |
}
|
367 |
|
368 |
$helper = Mage::helper('mailup');
|
373 |
/* @var $lists SevenLike_MailUp_Model_Lists */
|
374 |
$listID = $config->getMailupListId($storeId);
|
375 |
$listGuid = $lists->getListGuid($listID, $storeId);
|
376 |
+
// If list is not available, then cancel sync
|
377 |
+
if ($listGuid === false) {
|
378 |
+
if (Mage::getStoreConfig('mailup_newsletter/mailup/enable_log')) {
|
379 |
+
Mage::log("Could not fetch valid list, so cancelling customer sync");
|
380 |
+
}
|
381 |
+
return false;
|
382 |
+
}
|
383 |
$job = Mage::getModel('mailup/job');
|
384 |
/* @var $job SevenLike_MailUp_Model_Job */
|
385 |
|
386 |
/**
|
387 |
* Only Sync if they are a subscriber!
|
388 |
*/
|
389 |
+
if ( ! $helper->isSubscriber($customerId, $storeId)) {
|
390 |
return;
|
391 |
}
|
392 |
+
|
393 |
+
// Set options for those already subscribed (not pending and no opt-in)
|
394 |
$job->setData(array(
|
395 |
+
'mailupgroupid' => '',
|
396 |
+
'send_optin' => 0,
|
397 |
'as_pending' => 0,
|
398 |
+
'status' => 'queued',
|
399 |
+
'queue_datetime' => gmdate('Y-m-d H:i:s'),
|
400 |
'store_id' => $storeId,
|
401 |
'list_id' => $listID,
|
402 |
'list_guid' => $listGuid,
|
417 |
/** @var $jobTask SevenLike_MailUp_Model_Sync */
|
418 |
$jobTask->setData(array(
|
419 |
'store_id' => $storeId,
|
420 |
+
'customer_id' => $customerId,
|
421 |
+
'entity' => 'customer',
|
422 |
+
'job_id' => $job->getId(),
|
423 |
+
'needs_sync' => true,
|
424 |
+
'last_sync' => null,
|
425 |
));
|
426 |
$jobTask->save();
|
427 |
$config->dbLog("Sync [Insert] [customer] [{$customerId}]", $job->getId(), $storeId);
|
440 |
* OR we use a separate Auto Sync job!!
|
441 |
*/
|
442 |
|
443 |
+
return true;
|
444 |
}
|
445 |
|
446 |
/**
|
app/code/local/SevenLike/MailUp/controllers/Adminhtml/FilterController.php
CHANGED
@@ -69,35 +69,30 @@ class SevenLike_MailUp_Adminhtml_FilterController extends Mage_Adminhtml_Control
|
|
69 |
}
|
70 |
|
71 |
/**
|
72 |
-
*
|
73 |
* Create a new job for each batch.
|
74 |
*/
|
75 |
-
foreach($batches as $batchNumber => $batch) {
|
76 |
try {
|
77 |
$customerCount = 0;
|
78 |
/**
|
79 |
-
* We have split into subscribers and
|
80 |
*/
|
81 |
-
foreach($batch as $subscribeStatus => $customerIdArray) {
|
82 |
-
|
83 |
-
if(empty($customerIdArray)) {
|
84 |
continue;
|
85 |
}
|
86 |
-
|
87 |
-
|
88 |
-
|
89 |
-
|
90 |
-
|
91 |
-
|
92 |
-
|
93 |
-
|
94 |
-
|
95 |
-
}
|
96 |
-
else {
|
97 |
-
$asPending = 1;
|
98 |
-
$sendOptin = 1;
|
99 |
-
}
|
100 |
}
|
|
|
101 |
$job = Mage::getModel('mailup/job');
|
102 |
/* @var $job SevenLike_MailUp_Model_Job */
|
103 |
$job->setData(array(
|
69 |
}
|
70 |
|
71 |
/**
|
72 |
+
* Makes batches if required. Separate the jobs into max amount of customers.
|
73 |
* Create a new job for each batch.
|
74 |
*/
|
75 |
+
foreach ($batches as $batchNumber => $batch) {
|
76 |
try {
|
77 |
$customerCount = 0;
|
78 |
/**
|
79 |
+
* We have split into subscribers and non-subscribers
|
80 |
*/
|
81 |
+
foreach ($batch as $subscribeStatus => $customerIdArray) {
|
82 |
+
if (empty($customerIdArray)) {
|
|
|
83 |
continue;
|
84 |
}
|
85 |
+
|
86 |
+
// Default - set subscriptions as not pending with no confirmation email
|
87 |
+
$asPending = 0;
|
88 |
+
$sendOptin = 0;
|
89 |
+
/* If customer is not subscribed and confirmation email is requested,
|
90 |
+
then set as pending with a confirmation email */
|
91 |
+
if ($subscribeStatus != self::STATUS_SUBSCRIBED && $sendOptinEmail) {
|
92 |
+
$asPending = 1;
|
93 |
+
$sendOptin = 1;
|
|
|
|
|
|
|
|
|
|
|
94 |
}
|
95 |
+
|
96 |
$job = Mage::getModel('mailup/job');
|
97 |
/* @var $job SevenLike_MailUp_Model_Job */
|
98 |
$job->setData(array(
|
app/code/local/SevenLike/MailUp/controllers/TestController.php
CHANGED
@@ -14,13 +14,13 @@ class SevenLike_MailUp_TestController extends Mage_Core_Controller_Front_Action
|
|
14 |
*/
|
15 |
public function preDispatch()
|
16 |
{
|
17 |
-
|
18 |
/* @var $config SevenLike_MailUp_Model_Config */
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
return parent::preDispatch();
|
25 |
}
|
26 |
|
@@ -83,24 +83,6 @@ class SevenLike_MailUp_TestController extends Mage_Core_Controller_Front_Action
|
|
83 |
$job = Mage::getModel('mailup/job');
|
84 |
/* @var $job SevenLike_MailUp_Model_Job */
|
85 |
|
86 |
-
foreach($job->fetchQueuedJobsCollection() as $job) {
|
87 |
-
echo "Job [{$job->getId()}] [{$job->getType()}] <br />";
|
88 |
-
}
|
89 |
-
|
90 |
-
echo '<br />----<br />';
|
91 |
-
|
92 |
-
foreach($job->fetchManualSyncQueuedJobsCollection() as $job) {
|
93 |
-
echo "Job [{$job->getId()}] [{$job->getType()}] <br />";
|
94 |
-
}
|
95 |
-
|
96 |
-
echo '<br />----<br />';
|
97 |
-
|
98 |
-
foreach($job->fetchAutoSyncQueuedJobsCollection() as $job) {
|
99 |
-
echo "Job [{$job->getId()}] [{$job->getType()}] <br />";
|
100 |
-
}
|
101 |
-
|
102 |
-
return;
|
103 |
-
|
104 |
$tasks = $jobTask->getSyncItemsCollection();
|
105 |
foreach($tasks as $task) {
|
106 |
var_dump($task->getData());
|
@@ -113,54 +95,6 @@ class SevenLike_MailUp_TestController extends Mage_Core_Controller_Front_Action
|
|
113 |
var_dump($jobTask->getJob());
|
114 |
}
|
115 |
|
116 |
-
/**
|
117 |
-
* List jobs
|
118 |
-
*/
|
119 |
-
public function cronAction()
|
120 |
-
{
|
121 |
-
echo "Server Time: " . date('H:i:s') . "<br /><br />";
|
122 |
-
|
123 |
-
$read = Mage::getSingleton('core/resource')->getConnection('core_read');
|
124 |
-
$stmt = $read->query("
|
125 |
-
SELECT *
|
126 |
-
FROM cron_schedule
|
127 |
-
ORDER BY scheduled_at DESC"
|
128 |
-
);
|
129 |
-
while ($row = $stmt->fetch()) {
|
130 |
-
echo "{$row['job_code']} | {$row['status']} | {$row['scheduled_at']} | {$row['messages']}<br />";
|
131 |
-
}
|
132 |
-
}
|
133 |
-
|
134 |
-
/**
|
135 |
-
* List pending jobs
|
136 |
-
*/
|
137 |
-
public function cronPendingAction()
|
138 |
-
{
|
139 |
-
echo "Server Time: " . date('H:i:s') . "<br /><br />";
|
140 |
-
|
141 |
-
$read = Mage::getSingleton('core/resource')->getConnection('core_read');
|
142 |
-
$stmt = $read->query("
|
143 |
-
SELECT *
|
144 |
-
FROM cron_schedule where status = 'pending'
|
145 |
-
ORDER BY scheduled_at DESC"
|
146 |
-
);
|
147 |
-
while ($row = $stmt->fetch()) {
|
148 |
-
echo "{$row['job_code']} | {$row['status']} | {$row['scheduled_at']} | {$row['messages']}<br />";
|
149 |
-
}
|
150 |
-
}
|
151 |
-
|
152 |
-
/**
|
153 |
-
* List jobs
|
154 |
-
*/
|
155 |
-
public function removeRunningAction()
|
156 |
-
{
|
157 |
-
$write = Mage::getSingleton('core/resource')->getConnection('core_write');
|
158 |
-
$stmt = $write->query("
|
159 |
-
DELETE FROM cron_schedule WHERE job_code = 'sevenlike_mailup' AND status = 'running'"
|
160 |
-
);
|
161 |
-
die('done');
|
162 |
-
}
|
163 |
-
|
164 |
/**
|
165 |
* Show Current Processes
|
166 |
*/
|
14 |
*/
|
15 |
public function preDispatch()
|
16 |
{
|
17 |
+
$config = Mage::getModel('mailup/config');
|
18 |
/* @var $config SevenLike_MailUp_Model_Config */
|
19 |
+
|
20 |
+
if( ! $config->isTestMode()) {
|
21 |
+
die('Access Denied.');
|
22 |
+
}
|
23 |
+
|
24 |
return parent::preDispatch();
|
25 |
}
|
26 |
|
83 |
$job = Mage::getModel('mailup/job');
|
84 |
/* @var $job SevenLike_MailUp_Model_Job */
|
85 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
86 |
$tasks = $jobTask->getSyncItemsCollection();
|
87 |
foreach($tasks as $task) {
|
88 |
var_dump($task->getData());
|
95 |
var_dump($jobTask->getJob());
|
96 |
}
|
97 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
98 |
/**
|
99 |
* Show Current Processes
|
100 |
*/
|
app/code/local/SevenLike/MailUp/etc/config.xml
CHANGED
@@ -179,6 +179,8 @@
|
|
179 |
<mailup>
|
180 |
<model>mailup/ws</model>
|
181 |
<disablenewslettersuccesses>1</disablenewslettersuccesses>
|
|
|
|
|
182 |
</mailup>
|
183 |
</mailup_newsletter>
|
184 |
</default>
|
179 |
<mailup>
|
180 |
<model>mailup/ws</model>
|
181 |
<disablenewslettersuccesses>1</disablenewslettersuccesses>
|
182 |
+
<require_subscription_confirmation>1</require_subscription_confirmation>
|
183 |
+
<enable_testmode>0</enable_testmode>
|
184 |
</mailup>
|
185 |
</mailup_newsletter>
|
186 |
</default>
|
app/code/local/SevenLike/MailUp/etc/system.xml
CHANGED
@@ -78,6 +78,16 @@
|
|
78 |
<show_in_website>1</show_in_website>
|
79 |
<show_in_store>1</show_in_store>
|
80 |
</enable_subscribe_in_checkout>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
81 |
<enable_cron_export tranlate="label comment">
|
82 |
<label>Enable Automatic Data Export to MailUp</label>
|
83 |
<frontend_type>select</frontend_type>
|
78 |
<show_in_website>1</show_in_website>
|
79 |
<show_in_store>1</show_in_store>
|
80 |
</enable_subscribe_in_checkout>
|
81 |
+
<require_subscription_confirmation tranlate="label comment">
|
82 |
+
<label>Require Subscription Confirmation</label>
|
83 |
+
<frontend_type>select</frontend_type>
|
84 |
+
<source_model>adminhtml/system_config_source_yesno</source_model>
|
85 |
+
<sort_order>75</sort_order>
|
86 |
+
<show_in_default>1</show_in_default>
|
87 |
+
<show_in_website>1</show_in_website>
|
88 |
+
<show_in_store>1</show_in_store>
|
89 |
+
<comment>Double opt-in required</comment>
|
90 |
+
</require_subscription_confirmation>
|
91 |
<enable_cron_export tranlate="label comment">
|
92 |
<label>Enable Automatic Data Export to MailUp</label>
|
93 |
<frontend_type>select</frontend_type>
|
app/design/adminhtml/default/default/template/sevenlike/mailup/confirm.phtml
CHANGED
@@ -181,7 +181,7 @@ $xml = simplexml_load_string($xmlLists);
|
|
181 |
</tr>
|
182 |
<tr>
|
183 |
<td>
|
184 |
-
<input type="checkbox" name="send_optin_email_to_new_subscribers" value="1" checked="checked" /> <?php echo $this->__('Send opt-in email to new subscribers') ?>
|
185 |
</td>
|
186 |
</tr>
|
187 |
</table>
|
181 |
</tr>
|
182 |
<tr>
|
183 |
<td>
|
184 |
+
<input type="checkbox" name="send_optin_email_to_new_subscribers" value="1"<?php if($listId == Mage::getStoreConfig('mailup_newsletter/mailup/require_subscription_confirmation', $storeId)): ?> checked="checked" <?php endif ?> /> <?php echo $this->__('Send opt-in email to new subscribers') ?>
|
185 |
</td>
|
186 |
</tr>
|
187 |
</table>
|
app/design/adminhtml/default/default/template/sevenlike/mailup/filter_.phtml
DELETED
@@ -1,526 +0,0 @@
|
|
1 |
-
<?php
|
2 |
-
/**
|
3 |
-
* filter.phtml
|
4 |
-
*/
|
5 |
-
$wsSend = new MailUpWsSend(); /** @todo add in storeID, use session.. **/
|
6 |
-
$accessKey = $wsSend->loginFromId();
|
7 |
-
|
8 |
-
if ($accessKey === false || strlen(Mage::getStoreConfig('mailup_newsletter/mailup/list')) < 1) {
|
9 |
-
echo $this->__('WARNING: before proceeding you must correctly configure the settings of MailUp access in System->Configuration->Newsletter->MailUp');
|
10 |
-
} else {
|
11 |
-
//controllo se la lista e' stata selezionata correttamente
|
12 |
-
$wsImport = new MailUpWsImport();
|
13 |
-
$mailupLists = $wsImport->GetNlList();
|
14 |
-
|
15 |
-
//carico i filtri salvati
|
16 |
-
$filterHints = $wsImport->getFilterHints();
|
17 |
-
|
18 |
-
//TODO: sembra inutilizzata
|
19 |
-
//chiamata attivazione web services su MailUp
|
20 |
-
//$urlWSActivation = 'http://'.Mage::getStoreConfig('newsletter/mailup/url_console').'/frontend/WSActivation.aspx?usr='.Mage::getStoreConfig('newsletter/mailup/user').'&pwd='.Mage::getStoreConfig('newsletter/mailup/password').'&nl_url='.Mage::getStoreConfig('newsletter/mailup/url_console').'&ws_name=WSMailUpImport';
|
21 |
-
//fopen($urlWSActivation, 'r');
|
22 |
-
|
23 |
-
//salvo i parametri in variabili
|
24 |
-
$mailupCustomers = $this->getRequest()->getParam('mailupCustomers');
|
25 |
-
$mailupProductSku = $this->getRequest()->getParam('mailupProductSku');
|
26 |
-
$mailupCategoryId = $this->getRequest()->getParam('mailupCategoryId');
|
27 |
-
$mailupCustomerGroupId = $this->getRequest()->getParam('mailupCustomerGroupId');
|
28 |
-
$mailupCountry = $this->getRequest()->getParam('mailupCountry');
|
29 |
-
$mailupPostCode = $this->getRequest()->getParam('mailupPostCode');
|
30 |
-
$mailupCustomerStartDate = $this->getRequest()->getParam('mailupCustomerStartDate');
|
31 |
-
$mailupCustomerEndDate = $this->getRequest()->getParam('mailupCustomerEndDate');
|
32 |
-
$mailupTotalAmountCond = $this->getRequest()->getParam('mailupTotalAmountCond');
|
33 |
-
$mailupTotalAmountValue = $this->getRequest()->getParam('mailupTotalAmountValue');
|
34 |
-
$mailupOrderStartDate = $this->getRequest()->getParam('mailupOrderStartDate');
|
35 |
-
$mailupOrderEndDate = $this->getRequest()->getParam('mailupOrderEndDate');
|
36 |
-
$mailupOrderYesNo = $this->getRequest()->getParam('mailupOrderYesNo');
|
37 |
-
$mailupSubscribed = $this->getRequest()->getParam('mailupSubscribed');
|
38 |
-
|
39 |
-
|
40 |
-
function print_category($category)
|
41 |
-
{
|
42 |
-
if (is_numeric($category)) {
|
43 |
-
$category = Mage::getModel("catalog/category")->load($category);
|
44 |
-
}
|
45 |
-
|
46 |
-
echo '<option value="'.$category->getData('entity_id').'">'.str_repeat("-", $category->getData("level")-2) . htmlspecialchars($category->getData('name')).'</option>';
|
47 |
-
$children = $category->getChildren();
|
48 |
-
if (!$children) return;
|
49 |
-
|
50 |
-
$children = explode(",", $children);
|
51 |
-
foreach($children as $child) {
|
52 |
-
print_category($child);
|
53 |
-
}
|
54 |
-
}
|
55 |
-
?>
|
56 |
-
|
57 |
-
<div class="content-header">
|
58 |
-
<table cellspacing="0" class="grid-header">
|
59 |
-
<tr>
|
60 |
-
<td>
|
61 |
-
<h3><?php echo $this->__('Filters')?></h3>
|
62 |
-
</td>
|
63 |
-
<td class="a-right">
|
64 |
-
<div id="mailuploading" class="mailuploading"><?php echo $this->__("Please wait for the next step to load") ?></div>
|
65 |
-
<button onclick="$$('.content-header-floating').invoke('setStyle', {visibility:'hidden'});document.getElementById('mailupsend').style.display='none';document.getElementById('mailuploading').style.display='block';editForm.submit();" class="scalable save" type="button" id="mailupsend">
|
66 |
-
<div class="mailuploading"></div><span><?php echo $this->__('Apply filter')?></span>
|
67 |
-
</button>
|
68 |
-
</td>
|
69 |
-
</tr>
|
70 |
-
</table>
|
71 |
-
</div>
|
72 |
-
|
73 |
-
<div class="entry-edit">
|
74 |
-
<form id="edit_form" name="edit_form" method="post" action="<?php echo $this->getUrl('*/*/confirm')?>">
|
75 |
-
<input name="form_key" type="hidden" value="<?php echo Mage::getSingleton('core/session')->getFormKey() ?>" />
|
76 |
-
|
77 |
-
<input name="filter_name" id="filter_name" type="hidden" value="" />
|
78 |
-
|
79 |
-
<p id="spansugger"><a href="#ottsugg"><?php echo $this->__('Get hints')?> ⇒</a></p>
|
80 |
-
<fieldset id="my-fieldset">
|
81 |
-
<table cellspacing="0" class="form-list</td>
|
82 |
-
<td colspan="2">
|
83 |
-
<input type="radio" name="mailupSubscribed" id="mailupSubscribedAllCustomers"
|
84 |
-
value="0" <?php if (isset($mailupCustomers) && $mailupCustomers == 0) { echo 'checked="checked"'; } ?> /> <label for="mailupSubscribedAllCustomers"><?php echo $this->__("All customers")?></label>
|
85 |
-
</td>
|
86 |
-
</tr>
|
87 |
-
</table>
|
88 |
-
|
89 |
-
<br /><br />
|
90 |
-
|
91 |
-
<table cellspacing="0" class="form-list">
|
92 |
-
<tr>
|
93 |
-
<td colspan="2">
|
94 |
-
<strong><?php echo $this->__('Groups')?></strong>
|
95 |
-
</td>
|
96 |
-
</tr>
|
97 |
-
<tr>
|
98 |
-
<td class="labelpg1"><?php echo $this->__('Select customer group')?></td>
|
99 |
-
<td class="input-ele">
|
100 |
-
<select name="mailupCustomerGroupId" class="slctpg1">
|
101 |
-
<?php
|
102 |
-
$customerGroups = Mage::helper('customer')->getGroups()->toOptionArray();
|
103 |
-
|
104 |
-
">
|
105 |
-
<tr>
|
106 |
-
<td colspan="3"><?php echo $this->__('By this plugin you can import contacts registered in your eCommerce in the MailUp platform.')?></td>
|
107 |
-
</tr>
|
108 |
-
</tr>
|
109 |
-
<tr>
|
110 |
-
<td colspan="3"> </td>
|
111 |
-
</tr>
|
112 |
-
<tr>
|
113 |
-
<td>
|
114 |
-
<strong><?php echo $this->__('Store')?></strong>
|
115 |
-
</td>
|
116 |
-
<td colspan="2">
|
117 |
-
<select name="store_id">
|
118 |
-
<?php foreach($this->_getStoresArray() as $store): ?>
|
119 |
-
<option value="<?php echo $store['id'] ?>">
|
120 |
-
<?php echo $store['name'] ?>
|
121 |
-
</option>
|
122 |
-
<?php endforeach ?>
|
123 |
-
</select>
|
124 |
-
</td>
|
125 |
-
</tr>
|
126 |
-
<tr>
|
127 |
-
<td colspan="3"> </td>
|
128 |
-
</tr>
|
129 |
-
<tr>
|
130 |
-
<td colspan="3">
|
131 |
-
<strong><?php echo $this->__('Sold products')?></strong>
|
132 |
-
</td>
|
133 |
-
</tr>
|
134 |
-
<?php //imposto il filtro per clienti: 0 = tutti, 1 = che hanno acquistato, 2 = che non hanno mai acquistato ?>
|
135 |
-
<tr>
|
136 |
-
<td class="input-ele spdnpg1">
|
137 |
-
<input type="radio" name="mailupCustomers" id="mailupCustomersAll" value="0" <?php if (isset($mailupCustomers) && $mailupCustomers == 0) { echo 'checked="checked"'; } ?>
|
138 |
-
onclick="customerDependentFilters(false);" /> <label for="mailupCustomersAll"><?php echo $this->__('All customers')?></label>
|
139 |
-
</td>
|
140 |
-
|
141 |
-
<td class="input-ele spdnpg1">
|
142 |
-
<input type="radio" name="mailupCustomers" id="mailupCustomersWhoHaveBought" value="1" <?php if (isset($mailupCustomers) && $mailupCustomers == 1) { echo 'checked="checked"'; } ?>
|
143 |
-
onclick="customerDependentFilters(false);" /> <label for="mailupCustomersWhoHaveBought"><?php echo $this->__('Customers who have purchased')?></label>
|
144 |
-
</td>
|
145 |
-
|
146 |
-
<td class="input-ele spdnpg1">
|
147 |
-
<input type="radio" name="mailupCustomers" id="mailupCustomersWhoHaventBought" value="2" <?php if (isset($mailupCustomers) && $mailupCustomers == 2) { echo 'checked="checked"'; } ?>
|
148 |
-
onclick="customerDependentFilters(true);" /> <label for="mailupCustomersWhoHaventBought"><?php echo $this->__("Customers who have not purchased")?></label>
|
149 |
-
</td>
|
150 |
-
</tr>
|
151 |
-
<tr>
|
152 |
-
<td colspan="3">
|
153 |
-
<strong><?php echo $this->__('Opt-in Status')?></strong>
|
154 |
-
</td>
|
155 |
-
</tr>
|
156 |
-
<tr>
|
157 |
-
<td>
|
158 |
-
<input type="radio" name="mailupSubscribed" id="mailupSubscribedOptIn"
|
159 |
-
value="1" <?php if (isset($mailupSubscribed) && $mailupSubscribed == 1) { echo 'checked="checked"'; } ?> /> <label for="mailupSubscribedOptIn"><?php echo $this->__("Opted-in Only"); ?></label>
|
160 |
-
if ($mailupCustomerGroupId) {
|
161 |
-
foreach ($customerGroups as $customerGroup) {
|
162 |
-
if ($mailupCustomerGroupId == $customerGroup['value']) {
|
163 |
-
echo '<option value="'.$customerGroup['value'].'">'.$customerGroup['label'].'</option>';
|
164 |
-
}
|
165 |
-
}
|
166 |
-
}
|
167 |
-
?>
|
168 |
-
|
169 |
-
<option value="0">-- <?php echo $this->__('Any')?> --</option>
|
170 |
-
|
171 |
-
<?php
|
172 |
-
foreach ($customerGroups as $customerGroup) {
|
173 |
-
echo '<option value="'.$customerGroup['value'].'">'.$customerGroup['label'].'</option>';
|
174 |
-
}
|
175 |
-
?>
|
176 |
-
</select>
|
177 |
-
</td>
|
178 |
-
</tr>
|
179 |
-
|
180 |
-
<tr>
|
181 |
-
<td colspan="2">
|
182 |
-
<br /><br /><strong><?php echo $this->__('Location')?></strong>
|
183 |
-
</td>
|
184 |
-
</tr>
|
185 |
-
<tr>
|
186 |
-
<td class="labelpg1"><?php echo $this->__('Select country')?></td>
|
187 |
-
<td class="input-ele">
|
188 |
-
<select name="mailupCountry" class="slctpg1">
|
189 |
-
<?php
|
190 |
-
$countries = Mage::getResourceModel('directory/country_collection')
|
191 |
-
->loadData()
|
192 |
-
->toOptionArray(false);
|
193 |
-
|
194 |
-
if ($mailupCountry) {
|
195 |
-
foreach ($countries as $country){
|
196 |
-
if ($country['value'] == $mailupCountry)
|
197 |
-
echo '<option value="'.$country['value'].'">'.$country['label'].'</option>';
|
198 |
-
}
|
199 |
-
}
|
200 |
-
?>
|
201 |
-
|
202 |
-
<option value="0">-- <?php echo $this->__('Any')?> --</option>
|
203 |
-
|
204 |
-
<?php
|
205 |
-
foreach ($countries as $country) {
|
206 |
-
echo '<option value="'.$country['value'].'">'.$country['label'].'</option>';
|
207 |
-
}
|
208 |
-
?>
|
209 |
-
</select>
|
210 |
-
</td>
|
211 |
-
</tr>
|
212 |
-
<tr>
|
213 |
-
<td class="labelpg1"><?php echo $this->__('Zip code')?></td>
|
214 |
-
<td class="input-ele">
|
215 |
-
<input type="text" class="inptptx1" name="mailupPostCode" size="10" value="<?php echo $mailupPostCode; ?>" /> <span class="tip">(<?php echo $this->__('e.g.')?> 12345)</span>
|
216 |
-
</td>
|
217 |
-
</tr>
|
218 |
-
</table>
|
219 |
-
|
220 |
-
<table cellspacing="0" class="form-list" id="customerDependentContainer">
|
221 |
-
<tr>
|
222 |
-
<td colspan="2">
|
223 |
-
<br /><br /><strong><?php echo $this->__('Products and categories')?></strong>
|
224 |
-
</td>
|
225 |
-
</tr>
|
226 |
-
|
227 |
-
<?php //select con tutti i prodotti ?>
|
228 |
-
<tr>
|
229 |
-
<td class="labelpg1"><?php echo $this->__('Insert product SKU')?></td>
|
230 |
-
<td class="input-ele">
|
231 |
-
<input type="text" class="inptptx1 customerDependent" name="mailupProductSku" size="20" value="<?php echo $mailupProductSku; ?>" /> <span class="tip">(<?php echo $this->__('e.g.')?> MYSKU123)</span>
|
232 |
-
</td>
|
233 |
-
</tr>
|
234 |
-
<?php //select con tutte le categorie ?>
|
235 |
-
<tr>
|
236 |
-
<td class="labelpg1"><?php echo $this->__('Select category')?></td>
|
237 |
-
<td class="input-ele">
|
238 |
-
<?php
|
239 |
-
$categoriesCollection = Mage::getModel('catalog/category')->getCollection();
|
240 |
-
$categoriesCollection->addAttributeToSelect('name');
|
241 |
-
$categoriesCollection->addAttributeToSelect('entity_id');
|
242 |
-
?>
|
243 |
-
<select id="mailupCategoryId" name="mailupCategoryId" class="slctpg1 customerDependent">
|
244 |
-
<?php
|
245 |
-
if ($mailupCategoryId) {
|
246 |
-
$category = Mage::getModel('catalog/category')->load($mailupCategoryId);
|
247 |
-
echo '<option value="'.$mailupCategoryId.'">'.$category->getData('name').'</option>';
|
248 |
-
}
|
249 |
-
?>
|
250 |
-
|
251 |
-
<option value="0">-- <?php echo $this->__('Any')?> --</option>
|
252 |
-
|
253 |
-
<?php
|
254 |
-
foreach ($categoriesCollection as $category) {
|
255 |
-
if ($category->getLevel() == 2) {
|
256 |
-
print_category($category);
|
257 |
-
}
|
258 |
-
}
|
259 |
-
?>
|
260 |
-
</select>
|
261 |
-
</td>
|
262 |
-
</tr>
|
263 |
-
|
264 |
-
<tr>
|
265 |
-
<td colspan="2">
|
266 |
-
<br /><br /><strong><?php echo $this->__('Subscription date')?></strong>
|
267 |
-
</td>
|
268 |
-
</tr>
|
269 |
-
<tr>
|
270 |
-
<td class="labelpg1"><?php echo $this->__('From')?></td>
|
271 |
-
<td class="input-ele">
|
272 |
-
<input type="text" class="inptptx1 customerDependent" name="mailupCustomerStartDate" id="mailupCustomerStartDate" size="20" value="<?php echo $mailupCustomerStartDate; ?>" />
|
273 |
-
<img id="mailupCustomerStartDateTrig" class="v-middle" alt="" src="<?php echo Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_SKIN) ?>/adminhtml/default/default/images/grid-cal.gif"> <span class="tip">(<?php echo Mage::app()->getLocale()->getDateFormat(Mage_Core_Model_Locale::FORMAT_TYPE_SHORT) ?>)</span>
|
274 |
-
<script type="text/javascript">
|
275 |
-
Calendar.setup({
|
276 |
-
inputField: "mailupCustomerStartDate",
|
277 |
-
ifFormat: "<?php echo Mage::app()->getLocale()->getDateStrFormat(Mage_Core_Model_Locale::FORMAT_TYPE_SHORT) ?>",
|
278 |
-
showsTime: false,
|
279 |
-
button: "mailupCustomerStartDateTrig",
|
280 |
-
align: "Bl",
|
281 |
-
singleClick : true
|
282 |
-
});
|
283 |
-
</script>
|
284 |
-
</td>
|
285 |
-
</tr>
|
286 |
-
<tr>
|
287 |
-
<td class="labelpg1"><?php echo $this->__('To')?></td>
|
288 |
-
<td class="input-ele">
|
289 |
-
<input type="text" class="inptptx1 customerDependent" name="mailupCustomerEndDate" id="mailupCustomerEndDate" size="20" value="<?php echo $mailupCustomerEndDate; ?>" />
|
290 |
-
<img id="mailupCustomerEndDateTrig" class="v-middle" alt="" src="<?php echo Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_SKIN) ?>/adminhtml/default/default/images/grid-cal.gif"> <span class="tip">(<?php echo Mage::app()->getLocale()->getDateFormat(Mage_Core_Model_Locale::FORMAT_TYPE_SHORT) ?>)</span>
|
291 |
-
<script type="text/javascript">
|
292 |
-
Calendar.setup({
|
293 |
-
inputField: "mailupCustomerEndDate",
|
294 |
-
ifFormat: "<?php echo Mage::app()->getLocale()->getDateStrFormat(Mage_Core_Model_Locale::FORMAT_TYPE_SHORT) ?>",
|
295 |
-
showsTime: false,
|
296 |
-
button: "mailupCustomerEndDateTrig",
|
297 |
-
align: "Bl",
|
298 |
-
singleClick : true
|
299 |
-
});
|
300 |
-
</script>
|
301 |
-
</td>
|
302 |
-
</tr>
|
303 |
-
<tr>
|
304 |
-
<td colspan="2">
|
305 |
-
<br /><br /><strong><?php echo $this->__('Total purchased amount')?></strong>
|
306 |
-
</td>
|
307 |
-
</tr>
|
308 |
-
<tr>
|
309 |
-
<td class="labelpg1"><?php echo $this->__('Order total')?></td>
|
310 |
-
<td class="input-ele">
|
311 |
-
<select id="mailupTotalAmountCond" name="mailupTotalAmountCond" class="slctpg2 customerDependent">
|
312 |
-
<?php
|
313 |
-
if ($mailupTotalAmountCond && $mailupTotalAmountCond != 'gt') {
|
314 |
-
if ($mailupTotalAmountCond == 'lt') {
|
315 |
-
echo '<option value="lt"> '.$this->__('less than').' </option>';
|
316 |
-
} elseif ($mailupTotalAmountCond == 'eq') {
|
317 |
-
echo '<option value="eq"> '.$this->__('same as').' </option>';
|
318 |
-
}
|
319 |
-
}
|
320 |
-
?>
|
321 |
-
<option value="gt"> <?php echo $this->__('more than')?> </option>
|
322 |
-
<option value="lt"> <?php echo $this->__('less than')?> </option>
|
323 |
-
<option value="eq"> <?php echo $this->__('same as')?> </option>
|
324 |
-
</select>
|
325 |
-
|
326 |
-
<!--label for="mailupTotalAmountValue" class="lbl1"><?php echo $this->__('Specify amount')?></label-->
|
327 |
-
<input type="text" class="inptptx1 customerDependent" id="mailupTotalAmountValue" name="mailupTotalAmountValue" size="20" value="<?php echo $mailupTotalAmountValue; ?>" /> <span class="tip">(<?php echo $this->__('e.g.')?> 50)</span>
|
328 |
-
</td>
|
329 |
-
</tr>
|
330 |
-
|
331 |
-
<tr>
|
332 |
-
<td colspan="2">
|
333 |
-
<br /><br /><strong><?php echo $this->__('Date of purchase')?></strong>
|
334 |
-
</td>
|
335 |
-
</tr>
|
336 |
-
|
337 |
-
<tr>
|
338 |
-
<td><?php echo $this->__('Show customers who'); ?></td>
|
339 |
-
<td>
|
340 |
-
<select name="mailupOrderYesNo" class="slctpg2 customerDependent">
|
341 |
-
<?php
|
342 |
-
if ($mailupOrderYesNo == 'no') {
|
343 |
-
echo '<option value="no">'.$this->__("Haven't purchased").'</option>';
|
344 |
-
}
|
345 |
-
?>
|
346 |
-
<option value="yes"> <?php echo $this->__('Have purchased'); ?> </option>
|
347 |
-
<option value="no"> <?php echo $this->__("Haven't purchased"); ?> </option>
|
348 |
-
</select>
|
349 |
-
</td>
|
350 |
-
</tr>
|
351 |
-
|
352 |
-
<tr>
|
353 |
-
<td class="labelpg1"><?php echo $this->__('From')?></td>
|
354 |
-
<td class="input-ele">
|
355 |
-
<input type="text" class="inptptx1 customerDependent" name="mailupOrderStartDate" id="mailupOrderStartDate" size="20" value="<?php echo $mailupOrderStartDate; ?>" /><img id="mailupOrderStartDateTrig" class="v-middle" alt="" src="/skin/adminhtml/default/default/images/grid-cal.gif"> <span class="tip">(<?php echo Mage::app()->getLocale()->getDateFormat(Mage_Core_Model_Locale::FORMAT_TYPE_SHORT) ?>)</span>
|
356 |
-
<script type="text/javascript">
|
357 |
-
Calendar.setup({
|
358 |
-
inputField: "mailupOrderStartDate",
|
359 |
-
ifFormat: "<?php echo Mage::app()->getLocale()->getDateStrFormat(Mage_Core_Model_Locale::FORMAT_TYPE_SHORT) ?>",
|
360 |
-
showsTime: false,
|
361 |
-
button: "mailupOrderStartDateTrig",
|
362 |
-
align: "Bl",
|
363 |
-
singleClick : true
|
364 |
-
});
|
365 |
-
</script>
|
366 |
-
</td>
|
367 |
-
</tr>
|
368 |
-
<tr>
|
369 |
-
<td class="labelpg1"><?php echo $this->__('To')?></td>
|
370 |
-
<td class="input-ele">
|
371 |
-
<input type="text" class="inptptx1 customerDependent" name="mailupOrderEndDate" id="mailupOrderEndDate" size="20" value="<?php echo $mailupOrderEndDate; ?>" /><img id="mailupOrderEndDateTrig" class="v-middle" alt="" src="/skin/adminhtml/default/default/images/grid-cal.gif"> <span class="tip">(<?php echo Mage::app()->getLocale()->getDateFormat(Mage_Core_Model_Locale::FORMAT_TYPE_SHORT) ?>)</span>
|
372 |
-
<script type="text/javascript">
|
373 |
-
Calendar.setup({
|
374 |
-
inputField: "mailupOrderEndDate",
|
375 |
-
ifFormat: "<?php echo Mage::app()->getLocale()->getDateStrFormat(Mage_Core_Model_Locale::FORMAT_TYPE_SHORT) ?>",
|
376 |
-
showsTime: false,
|
377 |
-
button: "mailupOrderEndDateTrig",
|
378 |
-
align: "Bl",
|
379 |
-
singleClick : true
|
380 |
-
});
|
381 |
-
</script>
|
382 |
-
</td>
|
383 |
-
</tr>
|
384 |
-
</table>
|
385 |
-
</fieldset>
|
386 |
-
</form>
|
387 |
-
|
388 |
-
<h4><span id="spantitle3"><a name="saveFilter"><?php echo $this->__('Save current filters as hint')?></a></span></h4>
|
389 |
-
<fieldset id="my-fieldset3">
|
390 |
-
<table>
|
391 |
-
<tr>
|
392 |
-
<td>
|
393 |
-
<input name="filter_name_text" id="filter_name_text" type="text" value="" maxlength="100" size="50" />
|
394 |
-
<input class="form-button" type="submit" onclick="saveFilterHint();return false;" value="<?php echo $this->__('Save hint')?>" />
|
395 |
-
</td>
|
396 |
-
</tr>
|
397 |
-
</table>
|
398 |
-
</fieldset>
|
399 |
-
|
400 |
-
<h4><span id="spantitle1"><a name="ottsugg"><?php echo $this->__('Filter hints')?></a></span></h4>
|
401 |
-
<fieldset id="my-fieldset2">
|
402 |
-
<table cellspacing="0" class="form-list">
|
403 |
-
<tr>
|
404 |
-
<td><?php echo $this->__('Set and customize one of the following filters:')?></td>
|
405 |
-
</tr>
|
406 |
-
<tr>
|
407 |
-
<td>
|
408 |
-
<form action="*/*/" id="filtro1" name="filtro1" method="post">
|
409 |
-
<input name="form_key" type="hidden" value="<?php echo Mage::getSingleton('core/session')->getFormKey() ?>" />
|
410 |
-
<input name="mailupCustomers" type="hidden" value="2" />
|
411 |
-
<input name="mailupCustomerGroupId" type="hidden" value="2" />
|
412 |
-
<p class="parscefil"><?php echo $this->__("All wholesale customers who haven't purchased yet")?> »</p>
|
413 |
-
<input class="form-button" type="submit" value="<?php echo $this->__('Set hint')?>" />
|
414 |
-
</form>
|
415 |
-
</td>
|
416 |
-
</tr>
|
417 |
-
<tr>
|
418 |
-
<td>
|
419 |
-
<form action="*/*/" id="filtro2" name="filtro2" method="post">
|
420 |
-
<input name="form_key" type="hidden" value="<?php echo Mage::getSingleton('core/session')->getFormKey() ?>" />
|
421 |
-
<input name="mailupCustomers" type="hidden" value="1" />
|
422 |
-
<input name="mailupTotalAmountCond" type="hidden" value="gt" />
|
423 |
-
<input name="mailupTotalAmountValue" type="hidden" value="50" />
|
424 |
-
<p class="parscefil"><?php echo $this->__('More than 50 Euros orders')?> »</p>
|
425 |
-
<input class="form-button" type="submit" value="<?php echo $this->__('Set hint')?>" />
|
426 |
-
</form>
|
427 |
-
</td>
|
428 |
-
</tr>
|
429 |
-
<tr>
|
430 |
-
<td>
|
431 |
-
<form action="*/*/" id="filtro3" name="filtro3" method="post">
|
432 |
-
<input name="form_key" type="hidden" value="<?php echo Mage::getSingleton('core/session')->getFormKey() ?>" />
|
433 |
-
<input name="mailupCustomers" type="hidden" value="0" />
|
434 |
-
<input name="mailupOrderYesNo" type="hidden" value="no" />
|
435 |
-
<input name="mailupOrderStartDate" type="hidden" value="01/01/<?php echo date('Y'); ?>" />
|
436 |
-
<p class="parscefil"><?php echo $this->__('Members with no purchase in')?> <?php echo date('Y'); ?> »</p>
|
437 |
-
<input class="form-button" type="submit" value="<?php echo $this->__('Set hint')?>" />
|
438 |
-
</form>
|
439 |
-
|
440 |
-
</td>
|
441 |
-
</tr>
|
442 |
-
|
443 |
-
<?php if(!empty($filterHints)): ?>
|
444 |
-
<tr>
|
445 |
-
<td> </td>
|
446 |
-
</tr>
|
447 |
-
<tr>
|
448 |
-
<td><?php echo $this->__('Or choose one of those you saved:')?></td>
|
449 |
-
</tr>
|
450 |
-
<?php endif ?>
|
451 |
-
|
452 |
-
<?php
|
453 |
-
foreach ($filterHints as $fh) {
|
454 |
-
$filter_name = $fh['filter_name'];
|
455 |
-
echo '<tr><td>';
|
456 |
-
echo '<form action="*/*/" id="'.$filter_name.'" name="'.$filter_name.'" method="post">';
|
457 |
-
echo '<input name="form_key" type="hidden" value="'. Mage::getSingleton('core/session')->getFormKey() .'" />';
|
458 |
-
$hints = explode('|', $fh['hints']);
|
459 |
-
foreach ($hints as $h) {
|
460 |
-
$array = explode('=', $h);
|
461 |
-
echo '<input name="'.$array[0].'" type="hidden" value="'.$array[1].'" />';
|
462 |
-
}
|
463 |
-
echo '<p class="parscefil">'.$filter_name.' »</p>';
|
464 |
-
echo '<input class="form-button" type="submit" value="'.$this->__('Set hint').'" />';
|
465 |
-
echo '</form>';
|
466 |
-
echo ' ';
|
467 |
-
echo '<form name="deleteForm_'.$filter_name.'" action="'.$this->getUrl('*/*/deleteFilterHint').'" method="post">';
|
468 |
-
echo '<input name="form_key" type="hidden" value="'. Mage::getSingleton('core/session')->getFormKey() .'" />';
|
469 |
-
echo '<input name="filter_name" type="hidden" value="'. $filter_name .'" />';
|
470 |
-
echo '<input class="form-button" type="submit" name="delete" onclick="if(confirm(\''.$this->__('Do you really want to delete this filter hint?').'\')==true){this.submit();}return false;" value="'.$this->__('Delete hint').'" />';
|
471 |
-
echo '</form>';
|
472 |
-
echo '</td></tr>';
|
473 |
-
} ?>
|
474 |
-
|
475 |
-
</table>
|
476 |
-
</fieldset>
|
477 |
-
|
478 |
-
<!--<a href="<?php echo $this->getUrl('*/*/testCron')?>">TEST CRON</a>
|
479 |
-
<a href="<?php echo $this->getUrl('*/*/testFields')?>">TEST GETFIELDS</a>-->
|
480 |
-
</div>
|
481 |
-
<script type="text/javascript">
|
482 |
-
var editForm = new varienForm('edit_form');
|
483 |
-
|
484 |
-
document.getElementsByClassName = function(className) {
|
485 |
-
var retnode = [];
|
486 |
-
var myclass = new RegExp('\\b'+className+'\\b');
|
487 |
-
var elements = this.getElementsByTagName('*');
|
488 |
-
var elementsLength = elements.length;
|
489 |
-
var element = null;
|
490 |
-
for (var i = 0; i < elementsLength; i++) {
|
491 |
-
element = elements[i];
|
492 |
-
if (myclass.test(element.className)) {
|
493 |
-
retnode.push(element);
|
494 |
-
}
|
495 |
-
}
|
496 |
-
return retnode;
|
497 |
-
};
|
498 |
-
|
499 |
-
function customerDependentFilters(isDisabled) {
|
500 |
-
document.getElementById('customerDependentContainer').style.display = (isDisabled) ? 'none' : 'block';
|
501 |
-
|
502 |
-
var elements = document.getElementsByClassName('customerDependent');
|
503 |
-
|
504 |
-
var elementsLength = elements.length;
|
505 |
-
for (var i=0; i < elementsLength; i++) {
|
506 |
-
elements[i].disabled = isDisabled;
|
507 |
-
}
|
508 |
-
}
|
509 |
-
|
510 |
-
function saveFilterHint() {
|
511 |
-
if (document.getElementById('filter_name_text').value=='') {
|
512 |
-
alert('<?php echo $this->__('Please, give your new hint a name.')?>');
|
513 |
-
} else {
|
514 |
-
document.getElementById('filter_name').value = document.getElementById('filter_name_text').value;
|
515 |
-
document.getElementById('edit_form').action = '<?php echo $this->getUrl('*/*/saveFilterHint')?>';
|
516 |
-
document.getElementById('edit_form').submit();
|
517 |
-
}
|
518 |
-
return false;
|
519 |
-
}
|
520 |
-
|
521 |
-
window.onload = function() {
|
522 |
-
var isDisabled = document.getElementById('mailupCustomersWhoHaventBought').checked;
|
523 |
-
customerDependentFilters(isDisabled);
|
524 |
-
}
|
525 |
-
</script>
|
526 |
-
<?php } ?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
app/design/frontend/base/default/layout/mailup.xml
CHANGED
@@ -16,5 +16,4 @@
|
|
16 |
<block type="mailup/index" name="mailup_index" template="mailup/index.phtml"/>
|
17 |
</reference>
|
18 |
</mailup_index_index>
|
19 |
-
|
20 |
</layout>
|
16 |
<block type="mailup/index" name="mailup_index" template="mailup/index.phtml"/>
|
17 |
</reference>
|
18 |
</mailup_index_index>
|
|
|
19 |
</layout>
|
app/etc/modules/SevenLike_MailUp.xml
CHANGED
@@ -1 +1 @@
|
|
1 |
-
<?xml version="1.0"
|
2 |
<modules>
|
3 |
<SevenLike_MailUp>
|
4 |
<active>true</active>
|
5 |
<codePool>local</codePool>
|
6 |
<depends>
|
7 |
<Mage_Newsletter />
|
8 |
</depends>
|
9 |
</SevenLike_MailUp>
|
10 |
</modules>
|
1 |
+
<?xml version="1.0"?>
|
2 |
<modules>
|
3 |
<SevenLike_MailUp>
|
4 |
<active>true</active>
|
5 |
<codePool>local</codePool>
|
6 |
<depends>
|
7 |
<Mage_Newsletter />
|
8 |
</depends>
|
9 |
</SevenLike_MailUp>
|
10 |
</modules>
|
app/locale/en_US/SevenLike_MailUp.csv
CHANGED
@@ -1,87 +1,87 @@
|
|
1 |
-
Members have not been sent correctly,Customers have not been sent correctly
|
2 |
-
Warning: no member has been selected,Warning: no customer has been selected
|
3 |
-
WARNING: before proceeding you must correctly configure the settings of MailUp access in System->Configuration->Newsletter->MailUp,WARNING: before proceeding you must correctly configure the MailUp extension settings under System->Configuration->Newsletter->MailUp
|
4 |
-
Apply filter,Apply filter
|
5 |
-
Get hints,View saved filters
|
6 |
-
Sold products,Purchase History
|
7 |
-
All customers,All customers
|
8 |
-
Customers who have purchased,Customers who have purchased
|
9 |
-
Customers who have not purchased,Customers who have not purchased
|
10 |
-
Select product,Select product
|
11 |
-
Any,Any
|
12 |
-
Select category,Products that belong to this category...
|
13 |
-
Groups,Groups
|
14 |
-
Select customer group,Select customer group
|
15 |
-
Location,Location
|
16 |
-
Select country,Select country
|
17 |
-
Zip code,Zip code
|
18 |
-
From,Between
|
19 |
-
To,And
|
20 |
-
Total purchased amount,Total purchased amount
|
21 |
-
Order total,Customers who have ordered
|
22 |
-
less than,less than
|
23 |
-
same as,exactly
|
24 |
-
more than,more than
|
25 |
-
Specify amount,Specify amount
|
26 |
-
Date of purchase,Purchase timeframe
|
27 |
-
Show customers who,Show customers who
|
28 |
-
Haven't purchased,did not purchase
|
29 |
-
Have purchased,purchased
|
30 |
-
In this period,In this period
|
31 |
-
Filter hints,Saved filters
|
32 |
-
All wholesale customers who haven't purchased yet,All wholesale customers who haven't purchased yet
|
33 |
-
Set filter,Set filter
|
34 |
-
More than 50 Euros orders,Customer who purchased over $50
|
35 |
-
Members with no purchase in,Members with no purchase in
|
36 |
-
Reset filters,Reset filters
|
37 |
-
Export to CSV,Export to CSV
|
38 |
-
Send to MailUp,Send to MailUp
|
39 |
-
Confirm filtered customers and select MailUp group,Confirm filtered customers and select MailUp group
|
40 |
-
Were found,Were found
|
41 |
-
records,records
|
42 |
-
Filtered customers,Filtered customers
|
43 |
-
Selected list,Selected list
|
44 |
-
Next step,Next step
|
45 |
-
Select group,Select group
|
46 |
-
Select an existing group,Select an existing group
|
47 |
-
or,or
|
48 |
-
Create new customer group,Create new customer group
|
49 |
-
Group name,Group name
|
50 |
-
Add a new e-mail address or select adresses to be removed from list,Add new email addresses or select addresses to be removed from list
|
51 |
-
Change members list: please add one email adress per row,Edit customers list: add one email address per row
|
52 |
-
Save changes,Save changes
|
53 |
-
Set and customize one of the following filters:,Set and customize one of the following filters:
|
54 |
-
Filter customers,Filter customers
|
55 |
-
You can find it on your browser url bar (e.g. g4a0.s03.it),Shown in your browser address field when you use MailUp (e.g. g4a0.s03.it)
|
56 |
-
"If you haven't yet, we suggest you to create a DEM list directly from your mailup console","If you haven't yet, we suggest you to create an 'ecommerce' (or similar) list in your MailUp account"
|
57 |
-
Insert product SKU,Products whose SKU contains...
|
58 |
-
Enable Cron Export,Enable Cron Export
|
59 |
-
Subscription date,Subscription date
|
60 |
-
Save hint,Save filter
|
61 |
-
Delete hint,Delete
|
62 |
-
Set hint,Use this filter
|
63 |
-
Or choose one of those you saved:,Or choose one of those you saved:
|
64 |
-
Do you really want to delete this hint?,Do you really want to delete this filter?
|
65 |
-
"Please, give your new hint a name.",Please provide a name for the filter.
|
66 |
-
Save current filters as hint,Save this filter
|
67 |
-
Opted-in Only,Opted-in Only
|
68 |
-
All customers,All customers
|
69 |
-
Products and categories,Products and categories
|
70 |
-
dd/mm/yyyy,dd/mm/yyyy
|
71 |
-
e.g.,e.g.
|
72 |
-
Opt-in Status,Opt-in Status
|
73 |
-
"Magento fields","Magento fields"
|
74 |
-
"Mailup fields","Mailup fields"
|
75 |
-
"Fields mapping","Map Fields"
|
76 |
-
Filters,"Sync/segment Customers"
|
77 |
-
"By this plugin you can import contacts registered in your eCommerce in the MailUp platform.","Create custom segments using the filters below and easily transfer them to a new or existing Group in your MailUp account."
|
78 |
-
"Web service username is not in the right format","Web service username is not in the right format, it should be the a letter followed by some numbers (eg: a12345)"
|
79 |
-
"Please fill the admin console URL","Please fill the admin console URL"
|
80 |
-
"Admin console URL is not in the right format","Admin console URL is not in the right format, a valid URL example is abc123.s00.it"
|
81 |
-
"Unable to connect to MailUp console","Unable to connect to your MailUp account"
|
82 |
-
"Your subscription is waiting for confirmation","Your subscription to the newsletter is waiting for confirmation, please check your email and click the confirmation link"
|
83 |
-
"MailUp configuration is not complete", "MailUp configuration is not complete, please <a href=''>click here</a> to fill the missing information"
|
84 |
-
"MailUp fields mapping is not complete","MailUp fields mapping is not complete, please <a href=''>click here</a> to fill the missing information"
|
85 |
-
"Filtered customers preview","Filtered customers preview (max 25)"
|
86 |
-
"Members have been sent correctly","Customers segmented successfully. The data export to MailUp will start within 5 minutes. The duration of the export process depends on the total amount of data being transferred."
|
87 |
"A MailUp import process is schedules and will be executed soon.","A MailUp import process is scheduled and will be executed soon."
|
1 |
+
Members have not been sent correctly,Customers have not been sent correctly
|
2 |
+
Warning: no member has been selected,Warning: no customer has been selected
|
3 |
+
WARNING: before proceeding you must correctly configure the settings of MailUp access in System->Configuration->Newsletter->MailUp,WARNING: before proceeding you must correctly configure the MailUp extension settings under System->Configuration->Newsletter->MailUp
|
4 |
+
Apply filter,Apply filter
|
5 |
+
Get hints,View saved filters
|
6 |
+
Sold products,Purchase History
|
7 |
+
All customers,All customers
|
8 |
+
Customers who have purchased,Customers who have purchased
|
9 |
+
Customers who have not purchased,Customers who have not purchased
|
10 |
+
Select product,Select product
|
11 |
+
Any,Any
|
12 |
+
Select category,Products that belong to this category...
|
13 |
+
Groups,Groups
|
14 |
+
Select customer group,Select customer group
|
15 |
+
Location,Location
|
16 |
+
Select country,Select country
|
17 |
+
Zip code,Zip code
|
18 |
+
From,Between
|
19 |
+
To,And
|
20 |
+
Total purchased amount,Total purchased amount
|
21 |
+
Order total,Customers who have ordered
|
22 |
+
less than,less than
|
23 |
+
same as,exactly
|
24 |
+
more than,more than
|
25 |
+
Specify amount,Specify amount
|
26 |
+
Date of purchase,Purchase timeframe
|
27 |
+
Show customers who,Show customers who
|
28 |
+
Haven't purchased,did not purchase
|
29 |
+
Have purchased,purchased
|
30 |
+
In this period,In this period
|
31 |
+
Filter hints,Saved filters
|
32 |
+
All wholesale customers who haven't purchased yet,All wholesale customers who haven't purchased yet
|
33 |
+
Set filter,Set filter
|
34 |
+
More than 50 Euros orders,Customer who purchased over $50
|
35 |
+
Members with no purchase in,Members with no purchase in
|
36 |
+
Reset filters,Reset filters
|
37 |
+
Export to CSV,Export to CSV
|
38 |
+
Send to MailUp,Send to MailUp
|
39 |
+
Confirm filtered customers and select MailUp group,Confirm filtered customers and select MailUp group
|
40 |
+
Were found,Were found
|
41 |
+
records,records
|
42 |
+
Filtered customers,Filtered customers
|
43 |
+
Selected list,Selected list
|
44 |
+
Next step,Next step
|
45 |
+
Select group,Select group
|
46 |
+
Select an existing group,Select an existing group
|
47 |
+
or,or
|
48 |
+
Create new customer group,Create new customer group
|
49 |
+
Group name,Group name
|
50 |
+
Add a new e-mail address or select adresses to be removed from list,Add new email addresses or select addresses to be removed from list
|
51 |
+
Change members list: please add one email adress per row,Edit customers list: add one email address per row
|
52 |
+
Save changes,Save changes
|
53 |
+
Set and customize one of the following filters:,Set and customize one of the following filters:
|
54 |
+
Filter customers,Filter customers
|
55 |
+
You can find it on your browser url bar (e.g. g4a0.s03.it),Shown in your browser address field when you use MailUp (e.g. g4a0.s03.it)
|
56 |
+
"If you haven't yet, we suggest you to create a DEM list directly from your mailup console","If you haven't yet, we suggest you to create an 'ecommerce' (or similar) list in your MailUp account"
|
57 |
+
Insert product SKU,Products whose SKU contains...
|
58 |
+
Enable Cron Export,Enable Cron Export
|
59 |
+
Subscription date,Subscription date
|
60 |
+
Save hint,Save filter
|
61 |
+
Delete hint,Delete
|
62 |
+
Set hint,Use this filter
|
63 |
+
Or choose one of those you saved:,Or choose one of those you saved:
|
64 |
+
Do you really want to delete this hint?,Do you really want to delete this filter?
|
65 |
+
"Please, give your new hint a name.",Please provide a name for the filter.
|
66 |
+
Save current filters as hint,Save this filter
|
67 |
+
Opted-in Only,Opted-in Only
|
68 |
+
All customers,All customers
|
69 |
+
Products and categories,Products and categories
|
70 |
+
dd/mm/yyyy,dd/mm/yyyy
|
71 |
+
e.g.,e.g.
|
72 |
+
Opt-in Status,Opt-in Status
|
73 |
+
"Magento fields","Magento fields"
|
74 |
+
"Mailup fields","Mailup fields"
|
75 |
+
"Fields mapping","Map Fields"
|
76 |
+
Filters,"Sync/segment Customers"
|
77 |
+
"By this plugin you can import contacts registered in your eCommerce in the MailUp platform.","Create custom segments using the filters below and easily transfer them to a new or existing Group in your MailUp account."
|
78 |
+
"Web service username is not in the right format","Web service username is not in the right format, it should be the a letter followed by some numbers (eg: a12345)"
|
79 |
+
"Please fill the admin console URL","Please fill the admin console URL"
|
80 |
+
"Admin console URL is not in the right format","Admin console URL is not in the right format, a valid URL example is abc123.s00.it"
|
81 |
+
"Unable to connect to MailUp console","Unable to connect to your MailUp account"
|
82 |
+
"Your subscription is waiting for confirmation","Your subscription to the newsletter is waiting for confirmation, please check your email and click the confirmation link"
|
83 |
+
"MailUp configuration is not complete", "MailUp configuration is not complete, please <a href=''>click here</a> to fill the missing information"
|
84 |
+
"MailUp fields mapping is not complete","MailUp fields mapping is not complete, please <a href=''>click here</a> to fill the missing information"
|
85 |
+
"Filtered customers preview","Filtered customers preview (max 25)"
|
86 |
+
"Members have been sent correctly","Customers segmented successfully. The data export to MailUp will start within 5 minutes. The duration of the export process depends on the total amount of data being transferred."
|
87 |
"A MailUp import process is schedules and will be executed soon.","A MailUp import process is scheduled and will be executed soon."
|
app/locale/it_IT/SevenLike_MailUp.csv
CHANGED
@@ -1,106 +1,106 @@
|
|
1 |
-
"Members have been sent correctly","Segmentazione completata con successo. L'esportazione verso MailUp verra' attivata nei prossimi 5 minuti. La durata totale dell'esportazione dipende dal volume dei dati trasferiti."
|
2 |
-
"Warning: no member has been selected","Attenzione: non hai inviato nessun iscritto"
|
3 |
-
"WARNING: before proceeding you must correctly configure the settings of MailUp access in System->Configuration->Newsletter->MailUp","ATTENZIONE: prima di procedere devi configurare correttamente i parametri per accedere a MailUp in Sistema->Configurazione->Newsletter->MailUp"
|
4 |
-
"Apply filter","Applica filtro"
|
5 |
-
"Get hints","Ottieni suggerimenti"
|
6 |
-
"Sold products","Prodotti venduti"
|
7 |
-
"All customers","Tutti i clienti"
|
8 |
-
"Customers who have purchased","I clienti che hanno acquistato"
|
9 |
-
"Customers who have not purchased","I clienti che non hanno mai acquistato"
|
10 |
-
"Select product","Seleziona un prodotto"
|
11 |
-
"Any","Qualsiasi"
|
12 |
-
"Select category","Seleziona una categoria"
|
13 |
-
"Groups","Tipo di cliente"
|
14 |
-
"Select customer group","Seleziona gruppo di clienti"
|
15 |
-
"Location","Provenienza cliente"
|
16 |
-
"Select country","Seleziona paese"
|
17 |
-
"Zip code","CAP"
|
18 |
-
"From","Data inizio"
|
19 |
-
"To","Data fine"
|
20 |
-
"Total purchased amount","Somma totale ordinata"
|
21 |
-
"Order total","Totale ordinato"
|
22 |
-
"less than","minore di"
|
23 |
-
"same as","uguale a"
|
24 |
-
"more than","maggiore di"
|
25 |
-
"Specify amount","Inserisci il valore"
|
26 |
-
"Date of purchase","Data ordini"
|
27 |
-
"Show customers who","Seleziona utenti che"
|
28 |
-
"Haven't purchased","Non hanno effettuato un ordine"
|
29 |
-
"Have purchased","Hanno effettuato un ordine"
|
30 |
-
"In this period","Nel periodo"
|
31 |
-
"Filter hints","Filtri salvati"
|
32 |
-
"All wholesale customers who haven't purchased yet","Tutti i clienti all'ingrosso che non hanno mai acquistato"
|
33 |
-
"Set filter","imposta filtro"
|
34 |
-
"More than 50 Euros orders","Tutti i clienti che hanno acquistato per oltre 50 Euro"
|
35 |
-
"Members with no purchase in","Tutti i clienti che non hanno acquistato nel"
|
36 |
-
"Reset filters","Reimposta i filtri"
|
37 |
-
"Export to CSV","Esporta in CSV"
|
38 |
-
"Send to MailUp","Invia a MailUp"
|
39 |
-
"Confirm filtered customers and select MailUp group","Conferma i clienti filtrati e scegli gruppo di MailUp"
|
40 |
-
"Were found","Sono stati trovati"
|
41 |
-
"records","clienti corrispondenti ai criteri di ricerca"
|
42 |
-
"Filtered customers","Clienti filtrati"
|
43 |
-
"Selected list","Lista selezionata"
|
44 |
-
"Next step","Prossimo Step"
|
45 |
-
"Select group","Seleziona gruppo"
|
46 |
-
"Select an existing group","Scegli tra i gruppi già presenti su MailUp"
|
47 |
-
"or","oppure"
|
48 |
-
"Create new customer group","Crea nuovo gruppo"
|
49 |
-
"Group name","Inserisci il nome del nuovo gruppo"
|
50 |
-
"Add a new e-mail address or select adresses to be removed from list","Aggiungi o rimuovi manualmente gli indirizzi email dalla lista"
|
51 |
-
"Change members list: please add one email adress per row","Modifica manualmente l'elenco degli iscritti, scrivere un solo indirizzo email per ogni riga"
|
52 |
-
"Save changes","Applica modifiche"
|
53 |
-
"Set and customize one of the following filters:","Imposta e personalizza uno dei seguenti filtri:"
|
54 |
-
"Filter customers","Filtra i clienti"
|
55 |
-
"You can find it on your browser url bar (e.g. g4a0.s03.it)","Si trova nella barra degli indirizzi del tuo browser (es. g4a0.s03.it)"
|
56 |
-
"If you haven't yet, we suggest you to create a DEM list directly from your mailup console","Se non è stato ancora fatto è consigliabile creare una lista dedicata alle DEM direttamente dalla console di MailUp"
|
57 |
-
"Insert product SKU","Inserisci lo SKU del prodotto"
|
58 |
-
"Enable Cron Export","Abilita Export Automatico"
|
59 |
-
"Subscription date","Data di iscrizione"
|
60 |
-
"Save hint","Salva il suggerimento"
|
61 |
-
"Delete hint","Cancella il suggerimento"
|
62 |
-
"Set hint","Applica il suggerimento"
|
63 |
-
"Or choose one of those you saved:","O scegline uno tra quelli che hai salvato:"
|
64 |
-
"Do you really want to delete this hint?","Vuoi davvero cancellare questo suggerimento?"
|
65 |
-
"Please, give your new hint a name.","Per favore, dai un nome al tuo nuovo suggerimento."
|
66 |
-
"Save current filters as hint","Salva i filtri correnti come suggerimento"
|
67 |
-
"Opted-in Only","Clienti iscritti alla newsletter"
|
68 |
-
"All customers","Tutti i clienti"
|
69 |
-
"Products and categories","Prodotti e categorie"
|
70 |
-
"dd/mm/yyyy","gg/mm/aaaa"
|
71 |
-
"e.g.","es."
|
72 |
-
"Opt-in Status","Iscrizione alla newsletter"
|
73 |
-
"Associate all Magento fields with MailUp ones","Associa i campi Magento con quelli MailUp"
|
74 |
-
"Fields mapping","Mappa campi"
|
75 |
-
"Filters","Sincronizza/segmenta clienti"
|
76 |
-
"It's the domain portion of the browser address field when you using the MailUp Admin console (e.g. g4a0.s03.it)","E' il solo nome di dominio, visualizzato nella barra degli indirizzi del browser mentre stai navigando la console di mailup (es: g4a0.s03.it)"
|
77 |
-
"Export Frequency","Frequenza di esportazione"
|
78 |
-
"Enable Automatic Data Export to MailUp","Abilita l'export automatico dei dati verso MailUp"
|
79 |
-
"Admin Console URL","URL della console di amministrazione"
|
80 |
-
"Web Service Username","Username dei web service"
|
81 |
-
"Web Service Password","Password dei web service"
|
82 |
-
"You can set it in your console (Manage->Web Services), then type it here","Puoi impostarla dalla tua console (Gestione->Web service)"
|
83 |
-
"Allow Guest Subscription","Permetti l'iscrizione di utenti ospiti"
|
84 |
-
"Error: unable to save current filter","Errore: impossibile salvare il filtro corrente"
|
85 |
-
"Error: unable to delete the filter","Errore: impossibile eliminare il filtro selezionato"
|
86 |
-
"Magento fields","Campi Magento"
|
87 |
-
"Mailup fields","Campi Mailup"
|
88 |
-
"By this plugin you can import contacts registered in your eCommerce in the MailUp platform.","Crea segmenti personalizzati usando i filtri sottostanti e trasferiscili facilmente in un gruppo esistente (o nuovo) del tuo account MailUp."
|
89 |
-
"Please fill the web service username","Compila il campo Username dei web service"
|
90 |
-
"Web service username is not in the right format","Il campo Username dei web service non è nel formato corretto, dovrebbe essere formato dalla lettera a seguita da alcuni numeri (es: a12345)"
|
91 |
-
"Please fill the admin console URL","Compila il campo URL della console di amministrazione"
|
92 |
-
"Admin console URL is not in the right format","Il campo URL della console di amministrazione non è nel formato corretto, un esempio di URL valida è abc123.s00.it"
|
93 |
-
"Unable to connect to MailUp console","Impossibile connettersi alla console di MailUp"
|
94 |
-
"Your subscription is waiting for confirmation","La tua iscrizione alla newsletter è in attesa di conferma, controlla la tua casella email e clicca sul link inviatoti"
|
95 |
-
"MailUp configuration is not complete", "La configurazione di MailUp non è completa, <a href=''>clicca qui</a> per digitare le informazioni mancanti"
|
96 |
-
"MailUp fields mapping is not complete","La mappatura dei campi MailUp non è completa, <a href=''>clicca qui</a> per digitare le informazioni mancanti"
|
97 |
-
"Connect to MailUp","Connetti a MailUp"
|
98 |
-
"For assistance visit help.mailup.com and search for ""API credentials""","Per assistenza visita help.mailup.com e cerca ""credenziali API"""
|
99 |
-
"View data transfer log","Log di trasferimento dati"
|
100 |
-
"Enable subscription checkbox during checkout","Abilita la checkbox di iscrizione alla newsletter in fase di checkout"
|
101 |
-
"Send opt-in email to new subscribers","Invia richiesta conferma iscrizione a nuovi iscritti"
|
102 |
-
"Next step","Prossimo passo"
|
103 |
-
"Filtered customers preview","Anteprima dei clienti filtrati (max 25)"
|
104 |
-
"A MailUp import process is running.","L'importazione verso MailUp è in esecuzione."
|
105 |
-
"A MailUp import process is schedules and will be executed soon.","L'importazione verso MailUp è schedulata e inizierà a breve."
|
106 |
"Please wait for the next step to load","Attendere il caricamento della prossima schermata"
|
1 |
+
"Members have been sent correctly","Segmentazione completata con successo. L'esportazione verso MailUp verra' attivata nei prossimi 5 minuti. La durata totale dell'esportazione dipende dal volume dei dati trasferiti."
|
2 |
+
"Warning: no member has been selected","Attenzione: non hai inviato nessun iscritto"
|
3 |
+
"WARNING: before proceeding you must correctly configure the settings of MailUp access in System->Configuration->Newsletter->MailUp","ATTENZIONE: prima di procedere devi configurare correttamente i parametri per accedere a MailUp in Sistema->Configurazione->Newsletter->MailUp"
|
4 |
+
"Apply filter","Applica filtro"
|
5 |
+
"Get hints","Ottieni suggerimenti"
|
6 |
+
"Sold products","Prodotti venduti"
|
7 |
+
"All customers","Tutti i clienti"
|
8 |
+
"Customers who have purchased","I clienti che hanno acquistato"
|
9 |
+
"Customers who have not purchased","I clienti che non hanno mai acquistato"
|
10 |
+
"Select product","Seleziona un prodotto"
|
11 |
+
"Any","Qualsiasi"
|
12 |
+
"Select category","Seleziona una categoria"
|
13 |
+
"Groups","Tipo di cliente"
|
14 |
+
"Select customer group","Seleziona gruppo di clienti"
|
15 |
+
"Location","Provenienza cliente"
|
16 |
+
"Select country","Seleziona paese"
|
17 |
+
"Zip code","CAP"
|
18 |
+
"From","Data inizio"
|
19 |
+
"To","Data fine"
|
20 |
+
"Total purchased amount","Somma totale ordinata"
|
21 |
+
"Order total","Totale ordinato"
|
22 |
+
"less than","minore di"
|
23 |
+
"same as","uguale a"
|
24 |
+
"more than","maggiore di"
|
25 |
+
"Specify amount","Inserisci il valore"
|
26 |
+
"Date of purchase","Data ordini"
|
27 |
+
"Show customers who","Seleziona utenti che"
|
28 |
+
"Haven't purchased","Non hanno effettuato un ordine"
|
29 |
+
"Have purchased","Hanno effettuato un ordine"
|
30 |
+
"In this period","Nel periodo"
|
31 |
+
"Filter hints","Filtri salvati"
|
32 |
+
"All wholesale customers who haven't purchased yet","Tutti i clienti all'ingrosso che non hanno mai acquistato"
|
33 |
+
"Set filter","imposta filtro"
|
34 |
+
"More than 50 Euros orders","Tutti i clienti che hanno acquistato per oltre 50 Euro"
|
35 |
+
"Members with no purchase in","Tutti i clienti che non hanno acquistato nel"
|
36 |
+
"Reset filters","Reimposta i filtri"
|
37 |
+
"Export to CSV","Esporta in CSV"
|
38 |
+
"Send to MailUp","Invia a MailUp"
|
39 |
+
"Confirm filtered customers and select MailUp group","Conferma i clienti filtrati e scegli gruppo di MailUp"
|
40 |
+
"Were found","Sono stati trovati"
|
41 |
+
"records","clienti corrispondenti ai criteri di ricerca"
|
42 |
+
"Filtered customers","Clienti filtrati"
|
43 |
+
"Selected list","Lista selezionata"
|
44 |
+
"Next step","Prossimo Step"
|
45 |
+
"Select group","Seleziona gruppo"
|
46 |
+
"Select an existing group","Scegli tra i gruppi già presenti su MailUp"
|
47 |
+
"or","oppure"
|
48 |
+
"Create new customer group","Crea nuovo gruppo"
|
49 |
+
"Group name","Inserisci il nome del nuovo gruppo"
|
50 |
+
"Add a new e-mail address or select adresses to be removed from list","Aggiungi o rimuovi manualmente gli indirizzi email dalla lista"
|
51 |
+
"Change members list: please add one email adress per row","Modifica manualmente l'elenco degli iscritti, scrivere un solo indirizzo email per ogni riga"
|
52 |
+
"Save changes","Applica modifiche"
|
53 |
+
"Set and customize one of the following filters:","Imposta e personalizza uno dei seguenti filtri:"
|
54 |
+
"Filter customers","Filtra i clienti"
|
55 |
+
"You can find it on your browser url bar (e.g. g4a0.s03.it)","Si trova nella barra degli indirizzi del tuo browser (es. g4a0.s03.it)"
|
56 |
+
"If you haven't yet, we suggest you to create a DEM list directly from your mailup console","Se non è stato ancora fatto è consigliabile creare una lista dedicata alle DEM direttamente dalla console di MailUp"
|
57 |
+
"Insert product SKU","Inserisci lo SKU del prodotto"
|
58 |
+
"Enable Cron Export","Abilita Export Automatico"
|
59 |
+
"Subscription date","Data di iscrizione"
|
60 |
+
"Save hint","Salva il suggerimento"
|
61 |
+
"Delete hint","Cancella il suggerimento"
|
62 |
+
"Set hint","Applica il suggerimento"
|
63 |
+
"Or choose one of those you saved:","O scegline uno tra quelli che hai salvato:"
|
64 |
+
"Do you really want to delete this hint?","Vuoi davvero cancellare questo suggerimento?"
|
65 |
+
"Please, give your new hint a name.","Per favore, dai un nome al tuo nuovo suggerimento."
|
66 |
+
"Save current filters as hint","Salva i filtri correnti come suggerimento"
|
67 |
+
"Opted-in Only","Clienti iscritti alla newsletter"
|
68 |
+
"All customers","Tutti i clienti"
|
69 |
+
"Products and categories","Prodotti e categorie"
|
70 |
+
"dd/mm/yyyy","gg/mm/aaaa"
|
71 |
+
"e.g.","es."
|
72 |
+
"Opt-in Status","Iscrizione alla newsletter"
|
73 |
+
"Associate all Magento fields with MailUp ones","Associa i campi Magento con quelli MailUp"
|
74 |
+
"Fields mapping","Mappa campi"
|
75 |
+
"Filters","Sincronizza/segmenta clienti"
|
76 |
+
"It's the domain portion of the browser address field when you using the MailUp Admin console (e.g. g4a0.s03.it)","E' il solo nome di dominio, visualizzato nella barra degli indirizzi del browser mentre stai navigando la console di mailup (es: g4a0.s03.it)"
|
77 |
+
"Export Frequency","Frequenza di esportazione"
|
78 |
+
"Enable Automatic Data Export to MailUp","Abilita l'export automatico dei dati verso MailUp"
|
79 |
+
"Admin Console URL","URL della console di amministrazione"
|
80 |
+
"Web Service Username","Username dei web service"
|
81 |
+
"Web Service Password","Password dei web service"
|
82 |
+
"You can set it in your console (Manage->Web Services), then type it here","Puoi impostarla dalla tua console (Gestione->Web service)"
|
83 |
+
"Allow Guest Subscription","Permetti l'iscrizione di utenti ospiti"
|
84 |
+
"Error: unable to save current filter","Errore: impossibile salvare il filtro corrente"
|
85 |
+
"Error: unable to delete the filter","Errore: impossibile eliminare il filtro selezionato"
|
86 |
+
"Magento fields","Campi Magento"
|
87 |
+
"Mailup fields","Campi Mailup"
|
88 |
+
"By this plugin you can import contacts registered in your eCommerce in the MailUp platform.","Crea segmenti personalizzati usando i filtri sottostanti e trasferiscili facilmente in un gruppo esistente (o nuovo) del tuo account MailUp."
|
89 |
+
"Please fill the web service username","Compila il campo Username dei web service"
|
90 |
+
"Web service username is not in the right format","Il campo Username dei web service non è nel formato corretto, dovrebbe essere formato dalla lettera a seguita da alcuni numeri (es: a12345)"
|
91 |
+
"Please fill the admin console URL","Compila il campo URL della console di amministrazione"
|
92 |
+
"Admin console URL is not in the right format","Il campo URL della console di amministrazione non è nel formato corretto, un esempio di URL valida è abc123.s00.it"
|
93 |
+
"Unable to connect to MailUp console","Impossibile connettersi alla console di MailUp"
|
94 |
+
"Your subscription is waiting for confirmation","La tua iscrizione alla newsletter è in attesa di conferma, controlla la tua casella email e clicca sul link inviatoti"
|
95 |
+
"MailUp configuration is not complete", "La configurazione di MailUp non è completa, <a href=''>clicca qui</a> per digitare le informazioni mancanti"
|
96 |
+
"MailUp fields mapping is not complete","La mappatura dei campi MailUp non è completa, <a href=''>clicca qui</a> per digitare le informazioni mancanti"
|
97 |
+
"Connect to MailUp","Connetti a MailUp"
|
98 |
+
"For assistance visit help.mailup.com and search for ""API credentials""","Per assistenza visita help.mailup.com e cerca ""credenziali API"""
|
99 |
+
"View data transfer log","Log di trasferimento dati"
|
100 |
+
"Enable subscription checkbox during checkout","Abilita la checkbox di iscrizione alla newsletter in fase di checkout"
|
101 |
+
"Send opt-in email to new subscribers","Invia richiesta conferma iscrizione a nuovi iscritti"
|
102 |
+
"Next step","Prossimo passo"
|
103 |
+
"Filtered customers preview","Anteprima dei clienti filtrati (max 25)"
|
104 |
+
"A MailUp import process is running.","L'importazione verso MailUp è in esecuzione."
|
105 |
+
"A MailUp import process is schedules and will be executed soon.","L'importazione verso MailUp è schedulata e inizierà a breve."
|
106 |
"Please wait for the next step to load","Attendere il caricamento della prossima schermata"
|
package.xml
CHANGED
@@ -1,61 +1,60 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>MailUp</name>
|
4 |
-
<version>2.
|
5 |
<stability>stable</stability>
|
6 |
<license uri="http://www.opensource.org/licenses/academic.php">Academic Free License (AFL)</license>
|
7 |
<channel>community</channel>
|
8 |
<extends/>
|
9 |
-
<summary>Filter customers based on profile and sales history, and send them targeted messages.
|
10 |
-
<description>&
|
11 |
-
&
|
12 |
-
&
|
13 |
-
&
|
14 |
-
&
|
15 |
-
&#xD;
|
16 |
-
&lt;p&gt;For more advanced marketing campaigns, leverage MailUp&#x2019;s optional Marketing+ feature. It allows you to create &#x201C;event-based&#x201D; messages that are sent automatically when a certain condition occurs (e.g. automatically send a discount to your customers on their birthday). Features include:&lt;/p&gt;&#xD;
|
17 |
-
&lt;ul&gt;&#xD;
|
18 |
-
&lt;li&gt;create unlimited &#x201C;event-based&#x201D; messages&lt;/li&gt;&#xD;
|
19 |
-
&lt;li&gt;easily turn them on/off&lt;/li&gt;&#xD;
|
20 |
-
&lt;li&gt;specify how often the system will check for the condition to occur (e.g. daily, monthly, annually, one-time)&lt;/li&gt;&#xD;
|
21 |
-
&lt;li&gt;combine multiple filters to define the condition that will trigger the message (e.g. send a second &#x201C;Welcome&#x201D; message N days after the customer subscribed)&lt;/li&gt;&#xD;
|
22 |
-
&lt;li&gt;send a message to a specific group or any subscriber&lt;/li&gt;&#xD;
|
23 |
-
&lt;li&gt;create conditions that are based on customer behavior (e.g. whether a previous message was opened or not)&lt;/li&gt;&#xD;
|
24 |
-
&lt;li&gt;use ecommerce data to as a condition to trigger messages (e.g. total amount purchased; days since last purchase; etc.)&lt;/li&gt;&#xD;
|
25 |
-
&lt;li&gt;use the same feature to send text messages (SMS) too!&lt;/li&gt;&#xD;
|
26 |
-
&lt;/ul&gt;&#xD;
|
27 |
-
&lt;p&gt;For example, store the date of the last order in a MailUp custom field, then send a discount to promote a new purchase 60 days after that last order was placed.&lt;/p&gt;&#xD;
|
28 |
-
&#xD;
|
29 |
-
&lt;p&gt;===========================================================&lt;/p&gt;&#xD;
|
30 |
-
&#xD;
|
31 |
-
&lt;p&gt;MailUp &amp;egrave; un servizio nato nel 2002, totalmente "web based" , che consente l'invio di e-mail, newsletter, sms, fax, lettere cartacee e messaggi vocali pre-registrati.&lt;/p&gt;&#xD;
|
32 |
-
&lt;p&gt;La soluzione &amp;egrave; studiata appositamente per la gestione professionale e l'invio di elevati quantitativi di messaggi, con gestione della banda, invii di test e gestione delle code di uscita.&lt;/p&gt;&#xD;
|
33 |
-
&lt;p&gt;Le e-mail vengono inviate dai server di MailUp, questo garantisce elevati tassi di deliverability, evitando che le mail vengano bloccate dai filtri antispam.&lt;/p&gt;&#xD;
|
34 |
-
&lt;p&gt;Installando questo Plugin per Magento potrete importare nella piattaforma MailUP i nominativi registrati nel vostro eCommerce.&lt;/p&gt;&#xD;
|
35 |
-
&lt;p&gt;Prova gratuitamente MailUp per 30 giorni&lt;/p&gt;&#xD;
|
36 |
-
&#xD;
|
37 |
-
&lt;p&gt;Con la funzione INVII AUTOMATICI contenuta nel pacchetto opzionale Marketing+ &amp;egrave; possibile inviare in automatico email e sms, a seconda del verificarsi di condizioni o eventi. Si potranno inviare alert, auguri di compleanno, reminder, solleciti tramite email e/o sms in base a regole predefinite, per esempio in prossimit&amp;agrave; della scadenza di un contratto o un anniversario.&lt;br /&gt;&lt;br /&gt;Tramite l'opzione INVII AUTOMATICI, &amp;egrave; possibile&lt;/p&gt;&#xD;
|
38 |
-
&lt;ul&gt;&#xD;
|
39 |
-
&lt;li&gt;creare infiniti messaggi email o sms;&lt;/li&gt;&#xD;
|
40 |
-
&lt;li&gt;stabilire il periodo in cui devono essere abilitati o meno;&lt;/li&gt;&#xD;
|
41 |
-
&lt;li&gt;la frequenza di invio (es. giornaliera, mensile o annuale);&lt;/li&gt;&#xD;
|
42 |
-
&lt;li&gt;stabilire le condizioni tramite l'utilizzo dei filtri anagrafica (es. compleanno, campi vuoti) o attivit&amp;agrave; (es. iscrizione oppure se un utente non ha aperto il messaggio si pu&amp;ograve; programmare un invio automatico di un secondo messaggio)&lt;/li&gt;&#xD;
|
43 |
-
&lt;li&gt;stabilire se inviare ad un gruppo specifico di utenti o a tutto il mio database&lt;/li&gt;&#xD;
|
44 |
-
&lt;li&gt;alimentare la banca dati tramite API o web service o procedure batch ftp notturne;&lt;/li&gt;&#xD;
|
45 |
-
&lt;li&gt;gestire e configurare automatismi tramite una intuitiva interfaccia web.&lt;/li&gt;&#xD;
|
46 |
-
&lt;/ul&gt;&#xD;
|
47 |
-
&lt;p&gt;&lt;br /&gt;Ad esempio un sito di ecommerce potrebbe alimentare il DB di MailUp con informazioni sugli acquisti e MailUp potr&amp;agrave; quindi inviare, ad esempio dopo 7 giorni dall'acquisto, un messaggio di costumer satisfaction oppure l'invito ad acquistare un prodotto correlato.&lt;/p&gt;</description>
|
48 |
-
<notes>Added support for multi-store installations
|
49 |

|
50 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
51 |

|
52 |
-
|
53 |

|
54 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
55 |
<authors><author><name>Mailup</name><user>Mailup</user><email>sales@mailup.com</email></author></authors>
|
56 |
-
<date>
|
57 |
-
<time>
|
58 |
-
<contents><target name="magelocal"><dir name="SevenLike"><dir name="MailUp"><dir name="Block"><dir name="Adminhtml"><dir name="Log"><file name="Grid.php" hash="
|
59 |
<compatible/>
|
60 |
-
<dependencies><required><php><min>5.
|
61 |
</package>
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>MailUp</name>
|
4 |
+
<version>2.5.0</version>
|
5 |
<stability>stable</stability>
|
6 |
<license uri="http://www.opensource.org/licenses/academic.php">Academic Free License (AFL)</license>
|
7 |
<channel>community</channel>
|
8 |
<extends/>
|
9 |
+
<summary>Filter customers based on profile and sales history, and send them targeted messages. Supports automatic messages too.</summary>
|
10 |
+
<description><p>MailUp is a multi-channel marketing platform, used by thousands of companies around the world to send targeted email and text messages.</p>
|
11 |
+
<p>Robust and scalable, MailUp can handles large volumes and has long-term relationships with all the major international ISPs, including automatic Feedback Loop management and support for List-Unsubscribe. Over 10 billion messages were sent with MailUp in 2010.</p>
|
12 |
+
<p>Using MailUp with your Magento store ensures a high level of deliverability for your emails.</p>
|
13 |
+
<p>Once you install the MailUp extension, you will be able to run professional email marketing campaigns by easily filtering customers and seemlessly passing the data to MailUp, which will handle the sending and tracking of the messages.</p>
|
14 |
+
<p>The MailUp extension requires a MailUp account. If you are not already a customer, setup a free trial to check it out!</p>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
15 |

|
16 |
+
<p>For more advanced marketing campaigns, leverage MailUp’s optional Marketing+ feature. It allows you to create “event-based” messages that are sent automatically when a certain condition occurs (e.g. automatically send a discount to your customers on their birthday). Features include:</p>
|
17 |
+
<ul>
|
18 |
+
<li>create unlimited “event-based” messages</li>
|
19 |
+
<li>easily turn them on/off</li>
|
20 |
+
<li>specify how often the system will check for the condition to occur (e.g. daily, monthly, annually, one-time)</li>
|
21 |
+
<li>combine multiple filters to define the condition that will trigger the message (e.g. send a second “Welcome” message N days after the customer subscribed)</li>
|
22 |
+
<li>send a message to a specific group or any subscriber</li>
|
23 |
+
<li>create conditions that are based on customer behavior (e.g. whether a previous message was opened or not)</li>
|
24 |
+
<li>use ecommerce data to as a condition to trigger messages (e.g. total amount purchased; days since last purchase; etc.)</li>
|
25 |
+
<li>use the same feature to send text messages (SMS) too!</li>
|
26 |
+
</ul>
|
27 |
+
<p>For example, store the date of the last order in a MailUp custom field, then send a discount to promote a new purchase 60 days after that last order was placed.</p>
|
28 |

|
29 |
+
<p>===========================================================</p>
|
30 |

|
31 |
+
<p>MailUp &egrave; un servizio nato nel 2002, totalmente "web based" , che consente l'invio di e-mail, newsletter, sms, fax, lettere cartacee e messaggi vocali pre-registrati.</p>
|
32 |
+
<p>La soluzione &egrave; studiata appositamente per la gestione professionale e l'invio di elevati quantitativi di messaggi, con gestione della banda, invii di test e gestione delle code di uscita.</p>
|
33 |
+
<p>Le e-mail vengono inviate dai server di MailUp, questo garantisce elevati tassi di deliverability, evitando che le mail vengano bloccate dai filtri antispam.</p>
|
34 |
+
<p>Installando questo Plugin per Magento potrete importare nella piattaforma MailUP i nominativi registrati nel vostro eCommerce.</p>
|
35 |
+
<p>Prova gratuitamente MailUp per 30 giorni</p>
|
36 |
+

|
37 |
+
<p>Con la funzione INVII AUTOMATICI contenuta nel pacchetto opzionale Marketing+ &egrave; possibile inviare in automatico email e sms, a seconda del verificarsi di condizioni o eventi. Si potranno inviare alert, auguri di compleanno, reminder, solleciti tramite email e/o sms in base a regole predefinite, per esempio in prossimit&agrave; della scadenza di un contratto o un anniversario.<br /><br />Tramite l'opzione INVII AUTOMATICI, &egrave; possibile</p>
|
38 |
+
<ul>
|
39 |
+
<li>creare infiniti messaggi email o sms;</li>
|
40 |
+
<li>stabilire il periodo in cui devono essere abilitati o meno;</li>
|
41 |
+
<li>la frequenza di invio (es. giornaliera, mensile o annuale);</li>
|
42 |
+
<li>stabilire le condizioni tramite l'utilizzo dei filtri anagrafica (es. compleanno, campi vuoti) o attivit&agrave; (es. iscrizione oppure se un utente non ha aperto il messaggio si pu&ograve; programmare un invio automatico di un secondo messaggio)</li>
|
43 |
+
<li>stabilire se inviare ad un gruppo specifico di utenti o a tutto il mio database</li>
|
44 |
+
<li>alimentare la banca dati tramite API o web service o procedure batch ftp notturne;</li>
|
45 |
+
<li>gestire e configurare automatismi tramite una intuitiva interfaccia web.</li>
|
46 |
+
</ul>
|
47 |
+
<p><br />Ad esempio un sito di ecommerce potrebbe alimentare il DB di MailUp con informazioni sugli acquisti e MailUp potr&agrave; quindi inviare, ad esempio dopo 7 giorni dall'acquisto, un messaggio di costumer satisfaction oppure l'invito ad acquistare un prodotto correlato.</p></description>
|
48 |
+
<notes><ul>
|
49 |
+
<li>Allows Single Opt In as an optional setting</li>
|
50 |
+
<li>Make "send opt-in email..." unchecked by default</li>
|
51 |
+
<li>Bug Fix: Cannot overwrite with blank email address</li>
|
52 |
+
<li>Bug Fix: If incorrect URL or login details entered, checkout could be disrupted</li>
|
53 |
+
</ul></notes>
|
54 |
<authors><author><name>Mailup</name><user>Mailup</user><email>sales@mailup.com</email></author></authors>
|
55 |
+
<date>2014-04-08</date>
|
56 |
+
<time>09:43:12</time>
|
57 |
+
<contents><target name="magelocal"><dir name="SevenLike"><dir name="MailUp"><dir name="Block"><dir name="Adminhtml"><dir name="Log"><file name="Grid.php" hash="6af78ed4eaf0e5e4589080af6e287f1b"/></dir><file name="Log.php" hash="b81d437533b23160e0b9f85844cd45e3"/><dir name="Mailup"><file name="Grid.php" hash="94dccf2de2027ea2d7ba470482c6e56e"/></dir><file name="Mailupbackend.php" hash="142d7d788b131fc32dbf395dd51d1b7f"/><dir name="Sync"><file name="Grid.php" hash="ca011e2cd4012bc6dc27886d07507cf0"/></dir><file name="Sync.php" hash="0c44aecfe6ddbd227e442fd124bd33b2"/></dir><dir name="Checkout"><file name="Subscribe.php" hash="9cd1c87df8a23f93d8bf0995e13652f2"/></dir><file name="Filters.php" hash="f881a202a8d2e3c34b3f1b4094852b2c"/><file name="Index.php" hash="7d5c46e16c94b50f6236d8d0027066d0"/></dir><dir name="Helper"><file name="Data.php" hash="fb22c1ab446b3903662d8239572278e6"/></dir><dir name="Model"><dir name="Adminhtml"><dir name="System"><dir name="Source"><dir name="Cron"><file name="Frequency.php" hash="2f874a2d82957748f2f249658c7e96f1"/><file name="Hours.php" hash="99b0428a6e88248bf15007396f48b0fc"/></dir><file name="Fields.php" hash="8f1e07f911366478c26b32cd7cef19ad"/></dir></dir></dir><file name="Config.php" hash="34d1eb31205b26e65c929abcbda4494d"/><file name="Consoleurlvalidator.php" hash="2cd27b9d21570e39ef6a5a0bbf3f97c5"/><file name="Cron.php" hash="db67d877c077536d660051535cc66060"/><file name="Job.php" hash="6739a5df8b10248d91d3f2e3dd1ca894"/><file name="Lists.php" hash="3674105d19de12dba1c9f27be65dbeaa"/><file name="Log.php" hash="9e15739c03264cf839a1460ac29f6def"/><file name="MailUp.php" hash="1b552b40a7bf6f4c915667adbe164140"/><file name="MailUpWsImport.php" hash="db5807ba779260b19177287668542df3"/><dir name="Mysql14"><dir name="MailUp"><file name="Collection.php" hash="256485c1ba69eff42ae109d3218c89ff"/></dir><file name="MailUp.php" hash="d06606483ac4c35e42f9cb449a36c1c5"/></dir><dir name="Mysql4"><dir name="Job"><file name="Collection.php" hash="9cdb99926ae73a9c6d5bafee0f2d6042"/></dir><file name="Job.php" hash="244a509b404abb9fc47755aaff8463d9"/><dir name="Log"><file name="Collection.php" hash="4589959dac703289c9a6fdf58a0436a6"/></dir><file name="Log.php" hash="e96fdf661e3060499fa6c6d6f8a69177"/><dir name="Sync"><file name="Collection.php" hash="e05d869a6b953a0a45fec482e4e74562"/></dir><file name="Sync.php" hash="971e196c7c19f215955aac740218be22"/></dir><file name="Observer.php" hash="becad8232256ed26b3832455b83850ec"/><dir name="Source"><file name="Store.php" hash="de1b07b5bd94ae4292377dff5a153340"/></dir><file name="Subscriber.php" hash="877fe0e81d86e8b9b0d9c23ccd5378f2"/><file name="Sync.php" hash="7736a7e1fb38aad61c4e6a5aa89294a2"/><file name="Webserviceusernamevalidator.php" hash="9650aed034726d621968f18371d554bc"/><file name="Ws.php" hash="21ef21afcf35867d0ec8ff345babeab6"/><file name="Wssend.php" hash="759922bc344c79e9a1ab01a1a5fc42b9"/></dir><dir name="controllers"><dir name="Adminhtml"><file name="ConfigurationController.php" hash="240d526f2c944b93b78d00d85d4b6c47"/><file name="FieldsmappingController.php" hash="66f0598c537f9518433b99cb7aa9acfe"/><file name="FilterController.php" hash="18812ae48db6286c9a6e0a71e791dc11"/><file name="LogController.php" hash="1300abf084a62b9ed2b00e7f2a632c29"/><file name="MailupbackendController.php" hash="963646cb267f4f4e05efd09be387b834"/><file name="SyncController.php" hash="94e0f9d8f42b609e9b08822d1766f9f8"/><file name="ViewdatatransferlogController.php" hash="eec948994f2d1491ead736578deabf92"/></dir><file name="IndexController.php" hash="d7dfe7ee526df542d7810936a496a1fc"/><file name="TestController.php" hash="bfe840edde428a33526724d812a29661"/><file name="WebhookController.php" hash="ef72fa5602b3f9fec0eae41eb34638a1"/></dir><dir name="etc"><file name="config.xml" hash="a84af1b67fb5b2a475829be94e6f3440"/><file name="system.xml" hash="6413a9eb81975ab3091170436a220d1b"/></dir><dir name="sql"><dir name="mailup_setup"><file name="mysql4-install-0.1.0.php" hash="8e52462c1d0d28f39c1c3f67c3748d26"/><file name="mysql4-install-2.3.0.php" hash="9532dac8b7bbc85f4e13d44816213076"/><file name="mysql4-install-2.4.0.php" hash="df3247d77cf4dff79c7dbf305e5ad9b8"/><file name="mysql4-upgrade-0.1.0-1.0.0.php" hash="8e52462c1d0d28f39c1c3f67c3748d26"/><file name="mysql4-upgrade-0.3.0-1.0.0.php" hash="97e4f8e3ba9e2ab4d5c5757efb3a47de"/><file name="mysql4-upgrade-1.0.0-1.5.2.php" hash="4fda0e9178a6cba85631f4f24faaf71b"/><file name="mysql4-upgrade-2.1.3-2.2.0.php" hash="9d4c89357d75bc526c0a38c8b7108611"/><file name="mysql4-upgrade-2.2.0-2.3.0.php" hash="6b838a9491a8a3d8cd66ec8399667fe3"/><file name="mysql4-upgrade-2.2.1-2.3.0.php" hash="6b838a9491a8a3d8cd66ec8399667fe3"/><file name="mysql4-upgrade-2.3.0-2.3.1.php" hash="d7b7aac558c7bbfcd9f5657342bb8d5d"/><file name="mysql4-upgrade-2.3.1-2.3.2.php" hash="841257c7988bd63828d2fdeaa087eaca"/><file name="mysql4-upgrade-2.3.2-2.4.0.php" hash="df3247d77cf4dff79c7dbf305e5ad9b8"/><file name="mysql4-upgrade-2.4.0-2.4.1.php" hash="812b65d636b1e15d3804c21d134de572"/></dir></dir></dir></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="mailup.xml" hash="1e83a4178884228b5346571152dede1d"/></dir><dir name="template"><dir name="sevenlike"><dir name="mailup"><file name="confirm.phtml" hash="ba22d8b8f370ed7ea5e48e599f8bed5d"/><file name="fieldsmapping.phtml" hash="b0b22c19bc6f9c97b22754dc7a0103ba"/><file name="filter.phtml" hash="9938d917ad94034d581069b08d93c3ca"/><file name="viewdatatransferlog.phtml" hash="fcc13d34146e22630d1a170888b2cc73"/></dir></dir></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="mailup.xml" hash="8fb6592222c1deacc7120ab474e39cab"/></dir><dir name="template"><dir name="mailup"><file name="index.phtml" hash="d41d8cd98f00b204e9800998ecf8427e"/><file name="subscribe.phtml" hash="3316f1a2e166179d2631a4a568059d66"/></dir></dir></dir></dir><dir name="enterprise"><dir name="default"><dir name="layout"><file name="mailup.xml" hash="dfb8fa89ec00b1b07264d9e2153e097d"/></dir><dir name="template"><dir name="mailup"><file name="subscribe.phtml" hash="a102e2e0dc4c836bc78eb044bf13e172"/></dir></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="SevenLike_MailUp.xml" hash="28e0d7aac3e7e87c416a779c40b48c3f"/></dir></target><target name="magelocale"><dir name="en_US"><file name="SevenLike_MailUp.csv" hash="ed0b8d49915f1b1d6c40541fe65c45d4"/></dir><dir name="it_IT"><file name="SevenLike_MailUp.csv" hash="746c5012c1659dc21dbeb9e50cb4deb7"/></dir></target><target name="mageskin"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="sevenlike"><dir name="mailup"><dir name="images"><file name="MailUp_300_200_transparent_small.png" hash="fcaf7d0876af346b01e40f3c1eeaa721"/><file name="titoli.png" hash="95a7996cd77d3413fd048018095aec6e"/></dir><file name="mailup.css" hash="cd3e7f45f619c6172de923d688d21dc3"/></dir></dir><dir name="images"><file name="MailUp_300_200_transparent_small.png" hash="fcaf7d0876af346b01e40f3c1eeaa721"/></dir></dir></dir></dir></target></contents>
|
58 |
<compatible/>
|
59 |
+
<dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php></required></dependencies>
|
60 |
</package>
|
skin/adminhtml/default/default/images/MailUp_300_200_transparent_small.png
ADDED
Binary file
|
skin/adminhtml/default/default/sevenlike/mailup/mailup.css
CHANGED
@@ -1 +1 @@
|
|
1 |
-
h4 { font-size: 1.05em; margin-bottom: 0.6em; overflow: hidden; }
|
2 |
background: url(./images/MailUp_300_200_transparent_small.png) 10px 0 no-repeat;
|
3 |
text-indent: -9999px;
|
4 |
overflow: hidden;
|
1 |
+
h4 { font-size: 1.05em; margin-bottom: 0.6em; overflow: hidden; }
|
2 |
background: url(./images/MailUp_300_200_transparent_small.png) 10px 0 no-repeat;
|
3 |
text-indent: -9999px;
|
4 |
overflow: hidden;
|