* @link http://www.tassos.gr * @copyright Copyright © 2023 Tassos Marinos All Rights Reserved * @license GNU GPLv3 or later */ defined('_JEXEC') or die; use Joomla\CMS\Factory; use Joomla\CMS\Router\Route; use Joomla\CMS\HTML\HTMLHelper; if (defined('nrJ4')) { $wa = Factory::getApplication()->getDocument()->getWebAssetManager(); $wa->registerAndUseStyle('acf_articles_style', 'plg_fields_acfarticles/style.css'); } else { HTMLHelper::stylesheet('plg_fields_acfarticles/style.css', ['relative' => true, 'version' => 'auto']); } foreach ($articles as $article) { $image = ''; if (isset($article['images']) && $image = json_decode($article['images'])) { $image = $image->image_intro ?: $image->image_fulltext; } $html .= '
'; if ($image) { $html .= '' . $article['title'] . ''; } $html .= '
'; $html .= '' . $article['title'] . ''; // Get the article excerpt if ($excerpt = substr(strip_tags($article['introtext']), 0, 200)) { // Add the excerpt $html .= '
' . $excerpt . '...
'; } $html .= '
'; }