Your IP : 216.73.216.240


Current Path : /home/juvelize/saulnois/tmp/install_695d2cf0b4957/html/backform/
Upload File :
Current File : /home/juvelize/saulnois/tmp/install_695d2cf0b4957/html/backform/edit_logs.php

<?php
/*
* @package		Tech Fry Library
* @license		https://www.gnu.org/licenses/gpl-3.0.en.html
*/

defined('_JEXEC') or die;

use Joomla\CMS\Language\Text;
use TechFry\Library\TDate;

$logs = [];
if ($this->item->logs)
{
    $logs = json_decode($this->item->logs, true);
}

$theads = array('COM_TF_NUM', 'JDATE', 'COM_TF_MESSAGE');
$trows = [];

foreach ($logs as $i => $log)
{
    $class = isset($log[0]) && $log[0] ? $log[0] : 'info';

    $message = '<span class="text-' . $class . '">' . $log[2] . '</span>';
    
    $log_date = new TDate($log[1]);
    $trows[] = array($i + 1, $log_date->format('d M Y, H:i'), $message);
}

$this->get_table($theads, $trows);
?>