| Current Path : /home/purehotels/www/administrator/components/com_acymailing/types/ |
| Current File : /home/purehotels/www/administrator/components/com_acymailing/types/welcome.php |
<?php
/**
* @package AcyMailing for Joomla!
* @version 5.2.0
* @author acyba.com
* @copyright (C) 2009-2016 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
class welcomeType{
function __construct(){
$query = 'SELECT `subject`, `mailid` FROM '.acymailing_table('mail').' WHERE `type`= \'welcome\'';
$db = JFactory::getDBO();
$db->setQuery($query);
$messages = $db->loadObjectList();
$this->values = array();
$this->values[] = JHTML::_('select.option', '0', JText::_('NO_WELCOME_MESSAGE') );
$this->values[] = JHTML::_('select.option', '-1', JText::_('LATEST_NEWSLETTER') );
foreach($messages as $oneMessage){
$this->values[] = JHTML::_('select.option', $oneMessage->mailid, '['.JText::_('ACY_ID').' '.$oneMessage->mailid.'] '.$oneMessage->subject);
}
}
function display($value){
JHTML::_('behavior.modal','a.modal');
$linkEdit = 'index.php?option=com_acymailing&tmpl=component&ctrl=email&task=edit&type=welcome&mailid='.$value;
$linkAdd = 'index.php?option=com_acymailing&tmpl=component&ctrl=email&task=add&type=welcome';
$style = empty($value) ? 'style="display:none"' : '';
$text = ' <a '.$style.' class="modal" id="welcome_edit" title="'.JText::_('EDIT_EMAIL',true).'" href="'.$linkEdit.'" rel="{handler: \'iframe\', size:{x:800, y:500}}"><img class="icon16" src="'.ACYMAILING_IMAGES.'icons/icon-16-edit.png" alt="'.JText::_('ACY_EDIT',true).'"/></a>';
$text .= ' <a class="modal" id="welcome_add" title="'.JText::_('CREATE_EMAIL',true).'" href="'.$linkAdd.'" rel="{handler: \'iframe\', size:{x:800, y:500}}"><img class="icon16" src="'.ACYMAILING_IMAGES.'icons/icon-16-add.png" alt="'.JText::_('CREATE_EMAIL',true).'"/></a>';
return JHTML::_('select.genericlist', $this->values, 'data[list][welmailid]', 'size="1" onchange="changeMessage(\'welcome\',this.value);"', 'value', 'text', (int) $value ).$text;
}
}