* @link http://www.tassos.gr * @copyright Copyright © 2024 Tassos Marinos All Rights Reserved * @license GNU GPLv3 or later */ // No direct access to this file defined('_JEXEC') or die; use Joomla\CMS\Form\FormField; use Joomla\CMS\Factory; use Joomla\Filesystem\File; class JFormFieldTG_LastUpdated extends FormField { /** * Method to render the input field * * @return string */ public function getInput() { $file = JPATH_PLUGINS . '/system/tgeoip/db/GeoLite2-City.mmdb'; if (!file_exists($file)) { return ''; } return Factory::getDate(@filemtime($file))->format('d M Y H:m'); } }