Your IP : 216.73.217.80


Current Path : /home/jlgagfroyt/www/administrator/components/com_acymailing/controllers/
Upload File :
Current File : /home/jlgagfroyt/www/administrator/components/com_acymailing/controllers/followup.php

<?php
/**
 * @package	AcyMailing for Joomla!
 * @version	5.11.3
 * @author	acyba.com
 * @copyright	(C) 2009-2022 ACYBA S.A.R.L. All rights reserved.
 * @license	GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
 */

defined('_JEXEC') or die('Restricted access');
?><?php

acymailing_get('controller.newsletter');
class FollowupController extends NewsletterController{
	var $aclCat = 'campaign';
	var $copySendDate = true;

	function listing(){
		acymailing_redirect(acymailing_completeLink('campaign',false,true));
	}

	 function copy(){
		$followupid = array();
		$followupid[] = acymailing_getVar('none', 'followupid');
		if(empty($followupid)) return $this->listing();

		$this->copySendDate = true;
	 	acymailing_setVar('cid', $followupid);
		parent::copy();

		return $this->listing();

	 }
}