/
home
/
assocoweys
/
sompe
/
plugins
/
system
/
tgeoip
/
field
/
Upload File
HOME
<?php /** * @package Convert Forms * @version 5.0.2 Pro * * @author Tassos Marinos <info@tassos.gr> * @link http://www.tassos.gr * @copyright Copyright © 2024 Tassos Marinos All Rights Reserved * @license GNU GPLv3 <http://www.gnu.org/licenses/gpl.html> 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'); } }