?
Path : /home/admin/public_html/old/happy2/plugins/system/jat3/jat3/core/element/ |
Current File : /home/admin/public_html/old/happy2/plugins/system/jat3/jat3/core/element/jalayoutsettings.php |
<?php /** * ------------------------------------------------------------------------ * JA T3v2 System Plugin for J25 & J31 * ------------------------------------------------------------------------ * Copyright (C) 2004-2011 J.O.O.M Solutions Co., Ltd. All Rights Reserved. * @license - GNU/GPL, http://www.gnu.org/licenses/gpl.html * Author: J.O.O.M Solutions Co., Ltd * Websites: http://www.joomlart.com - http://www.joomlancers.com * ------------------------------------------------------------------------ */ // No direct access defined('_JEXEC') or die(); /** * Radio List Element * * @package JAT3.Core.Element */ class JFormFieldJalayoutsettings extends JFormField { /** * The form field type. * * @var string * @since 1.6 */ protected $type = 'Jalayoutsettings'; /** * Method to get the field input markup. * * @return string The field input markup. */ function getInput() { t3import('core.admin.util'); $objutil = new JAT3_AdminUtil(); $template = $objutil->template; $layouts = $objutil->buildHTML_Layout($this->value, $this->name); return $layouts; } }