| Current Path : /home/p/o/n/poneycluc/www/plugins/system/t4/admin/field/ |
| Current File : /home/p/o/n/poneycluc/www/plugins/system/t4/admin/field/t4section.php |
<?php
/**
* @package Joomla.Libraries
* @subpackage Form
*
* @copyright Copyright (C) 2005 - 2009 Open Source Matters, Inc. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
use Joomla\CMS\Form\FormField;
use Joomla\CMS\Form\FormHelper;
defined('JPATH_PLATFORM') or die;
FormHelper::loadFieldClass('list');
/**
* Form Field class for the Joomla Framework.
*
* @since 2.5
*/
class JFormFieldT4Section extends FormField
{
/**
* The field type.
*
* @var string
*/
protected $type = 'T4Section';
protected function getInput()
{
$output = '<div class="section-group clearfix">';
$output .= '<div class="config-section t4-row-container"></div>';
$output .= '<input class="t4-layout t4-input-'.$this->element['name'].'" data-attrname="'.$this->element['name'].'" type="hidden">';
$output .= '</div>';
return $output;
}
}