try to get it compile

This commit is contained in:
2023-10-05 11:45:29 +02:00
parent 5f1db1b0f5
commit f85556f466
4 changed files with 27 additions and 6 deletions

View File

@ -17,4 +17,14 @@ use Joomla\CMS\MVC\Controller\BaseController;
class DisplayController extends BaseController
{
protected $default_view = 'parts';
public function display($cachable = false, $urlparams = [])
{
$view = $this->input->get('view', $this->default_view);
$layout = $this->input->get('layout', 'default');
$id = $this->input->getInt('id');
return parent::display();
}
}