Skip to content

Commit

Permalink
New feature: Added "Newsletter Subscription Form" widget (OpenMage#4095)
Browse files Browse the repository at this point in the history
* add newsletter subscribe form widget

* add translation

* fix php cs

* update copyright

* newline at the end

* Update app/code/core/Mage/Newsletter/Block/Widget/Subscribe.php

Co-authored-by: Fabrizio Balliano <fabrizio.balliano@gmail.com>

* update labels

* update translation

* add translation default template

---------

Co-authored-by: Fabrizio Balliano <fabrizio.balliano@gmail.com>
Co-authored-by: Ng Kiat Siong <kiatsiong.ng@gmail.com>
  • Loading branch information
3 people committed Jul 31, 2024
1 parent 87a08d2 commit 46bf3ba
Show file tree
Hide file tree
Showing 3 changed files with 67 additions and 0 deletions.
27 changes: 27 additions & 0 deletions app/code/core/Mage/Newsletter/Block/Widget/Subscribe.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
<?php
/**
* OpenMage
*
* This source file is subject to the Open Software License (OSL 3.0)
* that is bundled with this package in the file LICENSE.txt.
* It is also available at https://opensource.org/license/osl-3-0-php
*
* @category Mage
* @package Mage_Newsletter
* @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com)
* @copyright Copyright (c) 2024 The OpenMage Contributors (https://www.openmage.org)
* @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
*/

/**
* Newsletter subscribe form Widget
*
* @category Mage
* @package Mage_Newsletter
* @method string getSuccessMessage()
* @method string getErrorMessage()
* @method string getFormActionUrl()
*/
class Mage_Newsletter_Block_Widget_Subscribe extends Mage_Newsletter_Block_Subscribe implements Mage_Widget_Block_Interface
{
}
38 changes: 38 additions & 0 deletions app/code/core/Mage/Newsletter/etc/widget.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
<?xml version="1.0"?>
<!--
/**
* OpenMage
*
* This source file is subject to the Academic Free License (AFL 3.0)
* that is bundled with this package in the file LICENSE_AFL.txt.
* It is also available at https://opensource.org/license/afl-3-0-php
*
* @category Mage
* @package Mage_Newsletter
* @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com)
* @copyright Copyright (c) 2024 The OpenMage Contributors (https://www.openmage.org)
* @license https://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
*/
-->
<widgets>
<newsletter_subscribe type="newsletter/widget_subscribe" translate="name description" module="newsletter">
<name>Newsletter Subscription Form</name>
<description>Newsletter Subscribe Form</description>
<is_email_compatible>0</is_email_compatible>
<parameters>
<template translate="label">
<label>Template</label>
<visible>1</visible>
<type>select</type>
<value>newsletter/subscribe.phtml</value>
<values>
<default translate="label">
<value>newsletter/subscribe.phtml</value>
<label>Default Template</label>
</default>
</values>
<sort_order>10</sort_order>
</template>
</parameters>
</newsletter_subscribe>
</widgets>
2 changes: 2 additions & 0 deletions app/locale/en_US/Mage_Newsletter.csv
Original file line number Diff line number Diff line change
Expand Up @@ -140,3 +140,5 @@
"You have been unsubscribed.","You have been unsubscribed."
"Your subscription has been confirmed.","Your subscription has been confirmed."
"This email address is already confirmed.","This email address is already confirmed."
"Newsletter Subscription Form","Newsletter Subscription Form"
"Default Template","Default Template"

0 comments on commit 46bf3ba

Please sign in to comment.