File: /home/confeduphaar/backip-old-files/libraries/astroid/framework/fields/astroidgroup.php
<?php
/**
* @package Astroid Framework
* @author JoomDev https://www.joomdev.com
* @copyright Copyright (C) 2009 - 2020 JoomDev.
* @license https://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 or Later
*/
defined('JPATH_PLATFORM') or die;
jimport('joomla.form.formfield');
/**
* Form Field class for the Joomla Platform.
*
* Provides a pop up date picker linked to a button.
* Optionally may be filtered to use user's or server's time zone.
*
* @since 11.1
*/
class JFormFieldAstroidGroup extends JFormField {
/**
* The form field type.
*
* @var string
* @since 11.1
*/
protected $type = 'astroidgroup';
protected function getLabel() {
return FALSE;
}
/**
* Method to get the field input markup.
*
* @return string The field input markup.
*
* @since 11.1
*/
protected function getInput() {
return '';
}
}