66 lines
1.4 KiB
PHP
66 lines
1.4 KiB
PHP
<?php
|
|
/**
|
|
* @version CVS: 1.0.0
|
|
* @package Com_Circolari
|
|
* @author Tommaso Cippitelli <tommaso.cippitelli@protocollicreativi.it>
|
|
* @copyright 2025 Tommaso Cippitelli
|
|
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
|
*/
|
|
|
|
namespace Pcrt\Component\Circolari\Site\Field;
|
|
|
|
defined('JPATH_BASE') or die;
|
|
|
|
use \Joomla\CMS\Factory;
|
|
use \Joomla\CMS\Language\Text;
|
|
use \Joomla\CMS\Form\FormField;
|
|
use \Joomla\CMS\Date\Date;
|
|
use Joomla\CMS\HTML\HTMLHelper;
|
|
|
|
/**
|
|
* Supports an HTML select list of categories
|
|
*
|
|
* @since 1.0.0
|
|
*/
|
|
class TimecreatedField extends FormField
|
|
{
|
|
/**
|
|
* The form field type.
|
|
*
|
|
* @var string
|
|
* @since 1.0.0
|
|
*/
|
|
protected $type = 'timecreated';
|
|
|
|
/**
|
|
* Method to get the field input markup.
|
|
*
|
|
* @return string The field input markup.
|
|
*
|
|
* @since 1.0.0
|
|
*/
|
|
protected function getInput()
|
|
{
|
|
// Initialize variables.
|
|
$html = array();
|
|
|
|
$time_created = $this->value;
|
|
|
|
if (!strtotime($time_created))
|
|
{
|
|
$time_created = Factory::getDate()->toSql();
|
|
$html[] = '<input type="hidden" name="' . $this->name . '" value="' . $time_created . '" />';
|
|
}
|
|
|
|
$hidden = (boolean) $this->element['hidden'];
|
|
|
|
if ($hidden == null || !$hidden)
|
|
{
|
|
$pretty_date = HTMLHelper::_('date', $time_created, Text::_('DATE_FORMAT_LC2'), true);
|
|
$html[] = "<div>" . $pretty_date . "</div>";
|
|
}
|
|
|
|
return implode($html);
|
|
}
|
|
}
|