<?php
/**
* @version $Id: coolfeed.php 100 2012-04-14 17:42:51Z hide@address.com $
* @copyright JoomAvatar.com
* @author Nguyen Quang Trung
* @link http://joomavatar.com
* @license License GNU General Public License version 2 or later
* @package Avatar Dream Framework Template
* @facebook http://www.facebook.com/pages/JoomAvatar/120705031368683
* @twitter https://twitter.com/#!/JoomAvatar
* @support http://joomavatar.com/forum/
*/
// No direct access
defined('_JEXEC') or die;
defined('JPATH_PLATFORM') or die;
jimport('joomla.form.formfield');
/**
* Form Field class for the Joomla Framework.
*
* @package Joomla.Platform
* @subpackage Form
* @since 11.1
*/
class JFormFieldAvatarToolSeoparams extends JFormField
{
protected $type = 'AvatarToolSeoparams';
/**
* Method to get the field input markup.
*
* @return string The field input markup.
* @since 11.1
*/
protected function getLabel()
{
return '';
}
/**
* Method to get the field label markup.
*
* @return string The field label markup.
* @since 11.1
*/
protected function getInput()
{
require_once ( dirname(dirname(__FILE__)) . DS . 'params.php');
$params = PlgAvatarParams::getParams();
$seoParams = $params->seoParams;
return '<textarea style="display: none;" name="jform[params][seoParams]" >'. json_encode($seoParams) .'</textarea>';
}
/**
* Method to get the field title.
*
* @return string The field title.
* @since 11.1
*/
protected function getTitle()
{
return $this->getLabel();
}
}