<?php
/**
* @copyright Copyright (C) 2009-2011 ACYBA SARL - All rights reserved.
* @license http://www.gnu.org/licenses/gpl-3.0.html GNU/GPL
*/
defined('_JEXEC') or die('Restricted access');
?>
<?php
class dataViewdata extends JView
{
function display($tpl = null)
{
$function = $this->getLayout();
if(method_exists($this,$function)) $this->$function();
parent::display($tpl);
}
function import(){
$listClass = acymailing::get('class.list');
acymailing::setTitle(JText::_('IMPORT'),'import','data&task=import');
$bar = & JToolBar::getInstance('toolbar');
JToolBarHelper::custom('doimport', 'import', '',JText::_('IMPORT'), false);
$bar->appendButton( 'Link', 'cancel', JText::_('ACY_CANCEL'), acymailing::completeLink('subscriber') );
JToolBarHelper::divider();
$bar->appendButton( 'Pophelp','data-import');
$db = JFactory::getDBO();
$importData = array();
$importData['file'] = JText::_('ACY_FILE');
$importData['textarea'] = JText::_('IMPORT_TEXTAREA');
$importData['joomla'] = JText::_('IMPORT_JOOMLA');
$importData['contact'] = 'com_contact';
$importData['database'] = JText::_('DATABASE');
$possibleImport = array();
$possibleImport[$db->getPrefix().'acajoom_subscribers'] = array('acajoom','Acajoom');
$possibleImport[$db->getPrefix().'ccnewsletter_subscribers'] = array('ccnewsletter','ccNewsletter');
$possibleImport[$db->getPrefix().'letterman_subscribers'] = array('letterman','Letterman');
$possibleImport[$db->getPrefix().'communicator_subscribers'] = array('communicator','Communicator');
$possibleImport[$db->getPrefix().'yanc_subscribers'] = array('yanc','Yanc');
$possibleImport[$db->getPrefix().'vemod_news_mailer_users'] = array('vemod','Vemod News Mailer');
$possibleImport[$db->getPrefix().'jnews_subscribers'] = array('jnews','jNewsletter');
$tables = $db->getTableList();
foreach($tables as $mytable){
if(isset($possibleImport[$mytable])){
$importData[$possibleImport[$mytable][0]] = $possibleImport[$mytable][1];
}
}
$importvalues = array();
foreach($importData as $div => $name){
$importvalues[] = JHTML::_('select.option', $div,$name);
}
$js = 'var currentoption = \'file\';
function updateImport(newoption){document.getElementById(currentoption).style.display = "none";document.getElementById(newoption).style.display = \'block\';currentoption = newoption;}';
$doc =& JFactory::getDocument();
$doc->addScriptDeclaration( $js );
$this->assignRef('importvalues',$importvalues);
$this->assignRef('importdata',$importData);
$this->assignRef('lists',$listClass->getLists());
$this->assignRef('config',acymailing::config());
}
function export(){
$listClass = acymailing::get('class.list');
$db =& JFactory::getDBO();
$fields = reset($db->getTableFields(acymailing::table('subscriber')));
acymailing::setTitle(JText::_('ACY_EXPORT'),'acyexport','data&task=export');
$bar = & JToolBar::getInstance('toolbar');
JToolBarHelper::custom('doexport', 'acyexport', '',JText::_('ACY_EXPORT'), false);
$bar->appendButton( 'Link', 'cancel', JText::_('ACY_CANCEL'), acymailing::completeLink('subscriber') );
JToolBarHelper::divider();
$bar->appendButton( 'Pophelp','data-export');
$this->assignRef('charset',$charsetType = acymailing::get('type.charset'));
$this->assignRef('lists',$listClass->getLists());
$this->assignRef('fields',$fields);
if(JRequest::getInt('sessionvalues') AND !empty($_SESSION['acymailing']['exportusers'])){
$i = 1;
$subids = array();
foreach($_SESSION['acymailing']['exportusers'] as $subid){
$subids[] = (int) $subid;
$i++;
if($i>10) break;
}
$db->setQuery('SELECT `name`,`email` FROM `#__acymailing_subscriber` WHERE `subid` IN ('.implode(',',$subids).')');
$users = $db->loadObjectList();
$this->assignRef('users',$users);
}
}
}