1
0
mirror of https://github.com/e107inc/e107.git synced 2025-01-29 10:38:08 +01:00

Simple newsletter menu added.

This commit is contained in:
Cameron 2016-06-27 17:47:43 -07:00
parent 246116c1e2
commit b84c3201fa
2 changed files with 44 additions and 1 deletions

View File

@ -26,4 +26,4 @@ define("NLLAN_70", "Selected newsletter does not exist");
//define("NLLAN_71", "Back");
define("NLLAN_72", "View archive");
?>
define("NLLAN_73", "Enter your Email");

View File

@ -0,0 +1,43 @@
<?php
/**
* e107 website system
*
* Copyright (C) 2008-2016 e107 Inc (e107.org)
* Released under the terms and conditions of the
* GNU General Public License (http://www.gnu.org/licenses/gpl.txt)
*
*/
if (!defined('e107_INIT')) { exit; }
if (!e107::isInstalled('newsletter') || (USER && !ADMIN))
{
return;
}
$pref = e107::pref('core');
if(!empty($pref['signup_option_class']))
{
//e107::lan('newsletter');
$frm = e107::getForm();
$text = $frm->open('newsletter','post', e_SIGNUP, array('class'=>'form-inline'));
$text .= "<div class='input-group'>";
$text .= $frm->text('email','', null, array('placeholder'=> NLLAN_73));
$text .= "<span class='input-group-btn'>";
$text .= $frm->button('subscribe', 1, 'submit', NLLAN_52, array('class'=>'btn-default'));
$text .= "</span>";
$text .= "</div>";
$text .= $frm->close();
$ns->tablerender(LAN_PLUGIN_NEWSLETTER_NAME, $text);
}
elseif(ADMIN)
{
// This is temporary.
$message = "Please check your Signup Page preferences, making sure that 'Subscribe to content/mailouts' is set to 'Display' or 'Required'. You should also have one or more 'Newsletter' userclasses set to managed by 'Everyone'.";
$ns->tablerender(LAN_PLUGIN_NEWSLETTER_NAME, "<div class='alert alert-danger' style='margin:0'>".$message."</div>" );
}