Your IP : 216.73.216.240
<?php
/**
* @package Acymailing for Joomla!
* @version 4.0.1
* @author acyba.com
* @copyright (C) 2009-2012 ACYBA S.A.RL. All rights reserved.
* @license GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
*/
defined('_JEXEC') or die('Restricted access');
?><div id="acy_content">
<div id="acymailing_edit" class="acytagpopup">
<table width="100%">
<tr>
<td width="660" class="familymenu" valign="top">
<?php
if(empty($this->tagsfamilies)) acymailing_display(JText::sprintf('ERROR_PLUGINS','href="index.php?option=com_acymailing&ctrl=update&task=install"'),'warning');
foreach ($this->tagsfamilies as $id => $oneFamily){
if(empty($oneFamily)) continue;
if($oneFamily->function == $this->fctplug){
$help = empty($oneFamily->help) ? '' : $oneFamily->help;
$class = ' class="selected" ';
}
else $class = '';
echo '<a'.$class.' href="'.acymailing_completeLink($this->ctrl.'&task=tag&type='.$this->type.'&fctplug='.$oneFamily->function,true).'" >'.$oneFamily->name.'</a>';
}
?>
</td>
<?php if(!empty($help) AND $this->app->isAdmin()){?>
<td valign="top">
<div style="float:right;padding-right:5px;" class="toolbar">
<?php include_once(ACYMAILING_BUTTON.DS.'pophelp.php');
$helpButton = new JButtonPophelp();
echo $helpButton->fetchButton('Pophelp',$help);
?>
</div>
</td>
<?php } ?>
</tr>
</table>
<div id="iframedoc" style="clear:both;position:relative;"></div>
<div id="inserttagdiv">
<input type="text" class="inputbox" style="width:300px;" id="tagstring" name="tagstring" value="" onclick="this.select();"> <button class="btn btn-primary" id="insertButton" onclick="insertTag();"><?php echo JText::_('INSERT_TAG')?></button>
</div>
<form action="<?php echo JRoute::_('index.php?option=com_acymailing&tmpl=component'); ?>" method="post" name="adminForm" id="adminForm" autocomplete="off">
<div id="plugarea">
<?php echo $this->defaultContent;?>
</div>
<div class="clr"></div>
<input type="hidden" name="option" value="<?php echo ACYMAILING_COMPONENT; ?>" />
<input type="hidden" name="task" value="tag" />
<input type="hidden" id="fctplug" name="fctplug" value="<?php echo $this->fctplug; ?>"/>
<input type="hidden" name="type" value="<?php echo $this->type; ?>" />
<input type="hidden" name="ctrl" value="<?php echo $this->ctrl; ?>" />
<?php echo JHTML::_( 'form.token' ); ?>
</form>
</div>
</div>