| Current Path : /home/purehotels/www/administrator/components/com_acymailing/types/ |
| Current File : /home/purehotels/www/administrator/components/com_acymailing/types/titlelink.php |
<?php
/**
* @package AcyMailing for Joomla!
* @version 5.8.1
* @author acyba.com
* @copyright (C) 2009-2017 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 titlelinkType{
var $onclick="updateTag();";
function __construct(){
$this->values = array();
$this->values[] = acymailing_selectOption("|link", acymailing_translation('JOOMEXT_YES'));
$this->values[] = acymailing_selectOption("", acymailing_translation('JOOMEXT_NO'));
}
function display($map,$value){
if(empty($value)) $value = '';
return acymailing_radio($this->values, $map , 'size="1" onclick="'.$this->onclick.'"', 'value', 'text', $value);
}
}