Predisposizione lista circolari

This commit is contained in:
2025-08-29 11:24:11 +02:00
parent 16ac92a59e
commit 22fb3c0871
9 changed files with 218 additions and 90 deletions

View File

@ -0,0 +1,21 @@
<?php
namespace Pcrt\Component\Circolari\Site\View\Circolari;
\defined('_JEXEC') or die;
use Joomla\CMS\MVC\View\HtmlView as BaseHtmlView;
class HtmlView extends BaseHtmlView
{
public $items;
public $pagination;
public $state;
public function display($tpl = null)
{
$this->state = $this->get('State');
$this->items = $this->get('Items');
$this->pagination = $this->get('Pagination');
return parent::display($tpl);
}
}