Magento 1 module that synchronizes Magento Newsletter Subscribers with Experian Marketing Services (EMS) CheetahMail database (Press release).
1rst step: Rewrite Customer adpater model
app\code\local\Namespace\Ems\etc\config.xml:
<global>
<models>
<baobaz_ems>
<rewrite>
<adapter_customer>Namespace_Ems_Model_Adapter_Customer</adapter_customer>
</rewrite>
</baobaz_ems>
</models>
</global>
2nd step: Define your custom attributes
app\code\local\Namespace\Ems\Model\Adapter\Customer.php:
<?php
class Namespace_Ems_Model_Adapter_Customer extends Baobaz_Ems_Model_Adapter_Customer
{
/**
* Get 2 new custom attributes
*/
public function _getAttributes()
{
$attributes = parent::_getAttributes();
$attributes['attribute_1_code'] = 'attribute_1_name';
$attributes['attribute_2_code'] = 'attribute_2_name';
return $attributes;
}
}
1rst step: Rewrite Customer adpater model
app\code\local\Namespace\Ems\etc\config.xml:
<global>
<models>
<baobaz_ems>
<rewrite>
<adapter_customer>Namespace_Ems_Model_Adapter_Customer</adapter_customer>
</rewrite>
</baobaz_ems>
</models>
</global>
2nd step: Override Magento Customer method
app\code\local\Namespace\Ems\Model\Adapter\Customer.php:
<?php
class Namespace_Ems_Model_Adapter_Customer extends Baobaz_Ems_Model_Adapter_Customer
{
/**
* Mapper for Civility / Prefix field
*/
public function getPrefix()
{
$prefix = $this->getCustomer()->getPrefix();
switch ($prefix) {
case 'MR':
$value = 'Monsieur';
break;
case 'MME':
$value = 'Madame';
break;
case 'MLE':
$value = 'Mademoiselle';
break;
default:
$value = '';
}
return $value;
}
}
Released under the terms of the Open Software License 3.0.
THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.